1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!! __jni_bindgen! { /// public final class [CookieSyncManager](https://developer.android.com/reference/android/webkit/CookieSyncManager.html) /// /// Required feature: android-webkit-CookieSyncManager #[cfg(any(feature = "all", feature = "android-webkit-CookieSyncManager"))] #[deprecated] public final class CookieSyncManager extends crate::java::lang::Object, implements crate::java::lang::Runnable { // // Not emitting: Non-public method // /// <init> // fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::android::webkit::CookieSyncManager>> { // // class.path == "android/webkit/CookieSyncManager", java.flags == (empty), .name == "<init>", .descriptor == "()V" // unsafe { // let __jni_args = []; // let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "<init>\0", "()V\0"); // __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr()) // } // } /// [getInstance](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#getInstance()) /// /// Required features: "android-webkit-CookieSyncManager" #[cfg(any(feature = "all", all(feature = "android-webkit-CookieSyncManager")))] pub fn get_instance<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::webkit::CookieSyncManager>>> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC | STATIC, .name == "getInstance", .descriptor == "()Landroid/webkit/CookieSyncManager;" unsafe { let __jni_args = []; let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/webkit/CookieSyncManager\0", "getInstance\0", "()Landroid/webkit/CookieSyncManager;\0"); __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr()) } } /// [createInstance](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#createInstance(android,%2520content,%2520Context)) /// /// Required features: "android-content-Context", "android-webkit-CookieSyncManager" #[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "android-webkit-CookieSyncManager")))] pub fn create_instance<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::webkit::CookieSyncManager>>> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC | STATIC, .name == "createInstance", .descriptor == "(Landroid/content/Context;)Landroid/webkit/CookieSyncManager;" unsafe { let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())]; let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/webkit/CookieSyncManager\0", "createInstance\0", "(Landroid/content/Context;)Landroid/webkit/CookieSyncManager;\0"); __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr()) } } /// [sync](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#sync()) #[deprecated] pub fn sync<'env>(&'env self) -> __jni_bindgen::Result<()> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC, .name == "sync", .descriptor == "()V" unsafe { let __jni_args = []; let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "sync\0", "()V\0"); __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) } } // // Not emitting: Non-public method // /// [syncFromRamToFlash](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#syncFromRamToFlash()) // #[deprecated] fn sync_from_ram_to_flash<'env>(&'env self) -> __jni_bindgen::Result<()> { // // class.path == "android/webkit/CookieSyncManager", java.flags == PROTECTED, .name == "syncFromRamToFlash", .descriptor == "()V" // unsafe { // let __jni_args = []; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "syncFromRamToFlash\0", "()V\0"); // __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } /// [resetSync](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#resetSync()) #[deprecated] pub fn reset_sync<'env>(&'env self) -> __jni_bindgen::Result<()> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC, .name == "resetSync", .descriptor == "()V" unsafe { let __jni_args = []; let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "resetSync\0", "()V\0"); __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) } } /// [startSync](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#startSync()) #[deprecated] pub fn start_sync<'env>(&'env self) -> __jni_bindgen::Result<()> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC, .name == "startSync", .descriptor == "()V" unsafe { let __jni_args = []; let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "startSync\0", "()V\0"); __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) } } /// [stopSync](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#stopSync()) #[deprecated] pub fn stop_sync<'env>(&'env self) -> __jni_bindgen::Result<()> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC, .name == "stopSync", .descriptor == "()V" unsafe { let __jni_args = []; let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "stopSync\0", "()V\0"); __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) } } // // Not emitting: Non-public method // /// [onSyncInit](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#onSyncInit()) // fn on_sync_init<'env>(&'env self) -> __jni_bindgen::Result<()> { // // class.path == "android/webkit/CookieSyncManager", java.flags == PROTECTED, .name == "onSyncInit", .descriptor == "()V" // unsafe { // let __jni_args = []; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "onSyncInit\0", "()V\0"); // __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } // // Not emitting: Non-public method // /// [clone](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#clone()) // /// // /// Required features: "java-lang-Object" // #[cfg(any(feature = "all", all(feature = "java-lang-Object")))] // fn clone<'env>(&'env self) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::Object>>> { // // class.path == "android/webkit/CookieSyncManager", java.flags == PROTECTED, .name == "clone", .descriptor == "()Ljava/lang/Object;" // unsafe { // let __jni_args = []; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "clone\0", "()Ljava/lang/Object;\0"); // __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } /// [run](https://developer.android.com/reference/android/webkit/CookieSyncManager.html#run()) pub fn run<'env>(&'env self) -> __jni_bindgen::Result<()> { // class.path == "android/webkit/CookieSyncManager", java.flags == PUBLIC, .name == "run", .descriptor == "()V" unsafe { let __jni_args = []; let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); let (__jni_class, __jni_method) = __jni_env.require_class_method("android/webkit/CookieSyncManager\0", "run\0", "()V\0"); __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) } } } }