Home
last modified time | relevance | path

Searched refs:method_name (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dasync_helper.rs12 method_name: String, field
24 pub(crate) fn new(method_name: &str) -> Self { in new()
26 method_name: String::from(method_name), in new()
76 let method_name = self.method_name.clone(); in get_callback_sender() localVariable
81 log::warn!("AsyncHelper {}: Sender no longer exists.", method_name); in get_callback_sender()
/packages/services/DeviceAsWebcam/jni/
DDeviceAsWebcamNative.cpp54 static inline jmethodID GetMethodIdOrDie(JNIEnv* env, jclass clazz, const char* method_name, in GetMethodIdOrDie() argument
56 jmethodID res = env->GetMethodID(clazz, method_name, method_signature); in GetMethodIdOrDie()
57 LOG_ALWAYS_FATAL_IF(res == nullptr, "Unable to find method %s with signature %s", method_name, in GetMethodIdOrDie()
/packages/modules/AdServices/sdksandbox/service/proto/
DVerifier.proto34 // method_name : "getFlags"
53 string method_name = 3; field
/packages/modules/Bluetooth/system/blueberry/utils/ui_pages/
Dui_core.py83 def regr_page_call(self, page_class: Type[UIPage], method_name: str) -> None:
94 self.regr_page_calls[page_class] = method_name
110 for page_class, method_name in self.regr_page_calls.items():
112 return method_name
/packages/providers/MediaProvider/jni/
DMediaProviderWrapper.cpp518 jmethodID MediaProviderWrapper::CacheMethod(JNIEnv* env, const char method_name[], in CacheMethod() argument
521 string actual_method_name(method_name); in CacheMethod()
526 LOG(FATAL) << "Error caching method: " << method_name << signature; in CacheMethod()
DMediaProviderWrapper.h293 jmethodID CacheMethod(JNIEnv* env, const char method_name[], const char signature[]);
/packages/services/Telephony/testapps/TelephonyManagerTestApp/src/com/android/phone/testapps/telephonymanagertestapp/
DCallingMethodActivity.java70 ((TextView) findViewById(R.id.method_name)).setText(mMethod.getName()); in onCreate()
DTelephonyManagerTestApp.java116 ((TextView) convertView.findViewById(R.id.method_name)).setText(methodName); in getView()
/packages/modules/Bluetooth/system/gd/rust/linux/dbus_projection/dbus_macros/src/
Dlib.rs153 let method_name = method.sig.ident; in generate_dbus_exporter() localVariable
242 let ret = obj.#name.lock().unwrap().#method_name(#method_args); in generate_dbus_exporter()
247 let ret = obj.lock().unwrap().#method_name(#method_args); in generate_dbus_exporter()