Home
last modified time | relevance | path

Searched refs:methodId (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Connectivity/tests/unit/java/android/net/
DNetworkCallbackFlagsTest.kt68 val methodId: Int, in <lambda>() constant in android.net.NetworkCallbackFlagsTest.NetworkCallbackMethodBuilder
99 cb.methodId, in <lambda>()
111 if (caller.mayCall?.contains(callee.methodId) == true) { in <lambda>()
140 annotations.groupingBy { it.methodId }.eachCount().forEach { (methodId, cnt) -> in <lambda>() method
141 assertEquals(1, cnt, "Method ID $methodId is used more than once in @FilteredCallback") in <lambda>()
194 inv.method.getAnnotation(NetworkCallback.FilteredCallback::class.java)?.methodId in <lambda>()
/packages/modules/Bluetooth/framework/java/android/bluetooth/le/
DDistanceMeasurementParams.java86 int methodId, in DistanceMeasurementParams() argument
91 mMethodId = methodId; in DistanceMeasurementParams()
292 public @NonNull Builder setMethodId(@DistanceMeasurementMethodId int methodId) { in setMethodId() argument
293 switch (methodId) { in setMethodId()
297 mMethodId = methodId; in setMethodId()
300 throw new IllegalArgumentException("unknown method id " + methodId); in setMethodId()
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp1545 jmethodID methodId = 0; in gattClientScanFilterParamAddNative() local
1548 methodId = env->GetMethodID(filtparam.get(), "clientInterface", "()I"); in gattClientScanFilterParamAddNative()
1549 uint8_t client_if = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1551 methodId = env->GetMethodID(filtparam.get(), "filterIndex", "()I"); in gattClientScanFilterParamAddNative()
1552 uint8_t filt_index = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1554 methodId = env->GetMethodID(filtparam.get(), "featureSelection", "()I"); in gattClientScanFilterParamAddNative()
1555 filt_params->feat_seln = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1557 methodId = env->GetMethodID(filtparam.get(), "listLogicType", "()I"); in gattClientScanFilterParamAddNative()
1558 filt_params->list_logic_type = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1560 methodId = env->GetMethodID(filtparam.get(), "filterLogicType", "()I"); in gattClientScanFilterParamAddNative()
[all …]
/packages/modules/Bluetooth/android/ChannelSoundingTestApp/app/src/main/java/com/android/bluetooth/channelsoundingtestapp/
DDistanceMeasurementInitiator.java109 private String getDistanceMeasurementMethodName(int methodId) { in getDistanceMeasurementMethodName() argument
111 if (methodMapping.first == methodId) { in getDistanceMeasurementMethodName()
115 throw new IllegalArgumentException("unknown distance measurement method id" + methodId); in getDistanceMeasurementMethodName()
/packages/apps/Dialer/java/com/android/voicemail/impl/
DVoicemailTranscriptionServiceGrpc.java407 private final int methodId; field in VoicemailTranscriptionServiceGrpc.MethodHandlers
409 public MethodHandlers(VoicemailTranscriptionServiceImplBase serviceImpl, int methodId) { in MethodHandlers() argument
411 this.methodId = methodId; in MethodHandlers()
417 switch (methodId) { in invoke()
443 switch (methodId) { in invoke()
/packages/services/BuiltInPrintService/jni/plugins/
Dpdf_render.c161 jmethodID methodId = (*self->env)->GetStaticMethodID(self->env, gPdfRenderClass, "getInstance", in create_pdf_render_ifc() local
163 jobject instance = (*self->env)->CallStaticObjectMethod(self->env, gPdfRenderClass, methodId, in create_pdf_render_ifc()
/packages/modules/Connectivity/framework/src/android/net/
DConnectivityManager.java4050 int methodId(); in methodId() method
4150 @FilteredCallback(methodId = METHOD_ONPRECHECK, calledByCallbackId = CALLBACK_PRECHECK)
4167 @FilteredCallback(methodId = METHOD_ONAVAILABLE_5ARGS,
4199 @FilteredCallback(methodId = METHOD_ONAVAILABLE_4ARGS,
4252 @FilteredCallback(methodId = METHOD_ONAVAILABLE_1ARG,
4274 @FilteredCallback(methodId = METHOD_ONLOSING, calledByCallbackId = CALLBACK_LOSING)
4297 @FilteredCallback(methodId = METHOD_ONLOST, calledByCallbackId = CALLBACK_LOST)
4315 @FilteredCallback(methodId = METHOD_ONUNAVAILABLE, calledByCallbackId = CALLBACK_UNAVAIL)
4334 @FilteredCallback(methodId = METHOD_ONCAPABILITIESCHANGED,
4353 @FilteredCallback(methodId = METHOD_ONLINKPROPERTIESCHANGED,
[all …]
/packages/modules/Uwb/ranging/service/java/com/android/server/ranging/cs/
DCsAdapter.java173 int methodId = DistanceMeasurementMethod.DISTANCE_MEASUREMENT_METHOD_CHANNEL_SOUNDING; in start() local
184 .setMethodId(methodId) in start()