LEFT | RIGHT |
(no file at all) | |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 } | 482 } |
483 CATCH_THROW_AND_RETURN(env, 0) | 483 CATCH_THROW_AND_RETURN(env, 0) |
484 } | 484 } |
485 | 485 |
486 static void JNICALL JniSetAcceptableAdsEnabled(JNIEnv* env, jclass clazz, jlong
ptr, jboolean jvalue) | 486 static void JNICALL JniSetAcceptableAdsEnabled(JNIEnv* env, jclass clazz, jlong
ptr, jboolean jvalue) |
487 { | 487 { |
488 AdblockPlus::FilterEnginePtr& engine = *JniLongToTypePtr<AdblockPlus::FilterEn
ginePtr>(ptr); | 488 AdblockPlus::FilterEnginePtr& engine = *JniLongToTypePtr<AdblockPlus::FilterEn
ginePtr>(ptr); |
489 | 489 |
490 try | 490 try |
491 { | 491 { |
492 engine->SetAAEnabled((bool)(jvalue == JNI_TRUE)); | 492 engine->SetAAEnabled(jvalue == JNI_TRUE); |
493 } | 493 } |
494 CATCH_AND_THROW(env) | 494 CATCH_AND_THROW(env) |
495 } | 495 } |
496 | 496 |
497 static jboolean JNICALL JniIsAcceptableAdsEnabled(JNIEnv* env, jclass clazz, jlo
ng ptr) | 497 static jboolean JNICALL JniIsAcceptableAdsEnabled(JNIEnv* env, jclass clazz, jlo
ng ptr) |
498 { | 498 { |
499 try | 499 try |
500 { | 500 { |
501 AdblockPlus::FilterEnginePtr& engine = *JniLongToTypePtr<AdblockPlus::Filter
EnginePtr>(ptr); | 501 AdblockPlus::FilterEnginePtr& engine = *JniLongToTypePtr<AdblockPlus::Filter
EnginePtr>(ptr); |
502 return engine->IsAAEnabled() ? JNI_TRUE : JNI_FALSE; | 502 return engine->IsAAEnabled() ? JNI_TRUE : JNI_FALSE; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 { (char*)"setAcceptableAdsEnabled", (char*)"(JZ)V", (void*)JniSetAcceptableAds
Enabled }, | 545 { (char*)"setAcceptableAdsEnabled", (char*)"(JZ)V", (void*)JniSetAcceptableAds
Enabled }, |
546 { (char*)"isAcceptableAdsEnabled", (char*)"(J)Z", (void*)JniIsAcceptableAdsEna
bled }, | 546 { (char*)"isAcceptableAdsEnabled", (char*)"(J)Z", (void*)JniIsAcceptableAdsEna
bled }, |
547 { (char*)"getAcceptableAdsSubscriptionURL", (char*)"(J)Ljava/lang/String;", (v
oid*)JniGetAcceptableAdsSubscriptionURL }, | 547 { (char*)"getAcceptableAdsSubscriptionURL", (char*)"(J)Ljava/lang/String;", (v
oid*)JniGetAcceptableAdsSubscriptionURL }, |
548 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor } | 548 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor } |
549 }; | 549 }; |
550 | 550 |
551 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_libadblockplus_FilterEngi
ne_registerNatives(JNIEnv *env, jclass clazz) | 551 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_libadblockplus_FilterEngi
ne_registerNatives(JNIEnv *env, jclass clazz) |
552 { | 552 { |
553 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); | 553 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); |
554 } | 554 } |
LEFT | RIGHT |