Searched refs:methodId (Results 1 – 5 of 5) sorted by relevance
/frameworks/support/media/version-compat-tests/lib/src/main/java/android/support/mediacompat/testlib/util/ |
D | IntentUtil.java | 57 public static void callMediaBrowserServiceMethod(int methodId, Object arg, Context context) { in callMediaBrowserServiceMethod() argument 58 Intent intent = createIntent(SERVICE_RECEIVER_COMPONENT_NAME, methodId, arg); in callMediaBrowserServiceMethod() 69 public static void callMediaSessionMethod(int methodId, Object arg, Context context) { in callMediaSessionMethod() argument 70 Intent intent = createIntent(SERVICE_RECEIVER_COMPONENT_NAME, methodId, arg); in callMediaSessionMethod() 82 int methodId, Object arg, Context context, Parcelable token) { in callMediaControllerMethod() argument 83 Intent intent = createIntent(CLIENT_RECEIVER_COMPONENT_NAME, methodId, arg); in callMediaControllerMethod() 96 int methodId, Object arg, Context context, Parcelable token) { in callTransportControlsMethod() argument 97 Intent intent = createIntent(CLIENT_RECEIVER_COMPONENT_NAME, methodId, arg); in callTransportControlsMethod() 106 private static Intent createIntent(ComponentName componentName, int methodId, Object arg) { in createIntent() argument 109 intent.putExtra(KEY_METHOD_ID, methodId); in createIntent()
|
/frameworks/layoutlib/bridge/src/android/animation/ |
D | PropertyValuesHolder_Delegate.java | 70 Long methodId = METHOD_NAME_TO_ID.get(methodIndexName); in registerMethod() local 72 if (methodId != null) { in registerMethod() 74 return methodId; in registerMethod() 90 methodId = sNextId++; in registerMethod() 91 ID_TO_METHOD.put(methodId, method); in registerMethod() 92 METHOD_NAME_TO_ID.put(methodIndexName, methodId); in registerMethod() 94 return methodId; in registerMethod()
|
/frameworks/base/core/jni/ |
D | AndroidRuntime.cpp | 315 jmethodID methodId; in callMain() local 324 methodId = env->GetStaticMethodID(clazz, "main", "([Ljava/lang/String;)V"); in callMain() 325 if (methodId == NULL) { in callMain() 346 env->CallStaticVoidMethod(clazz, methodId, strArray); in callMain()
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerDriver.cpp | 715 int32_t methodId; in invoke() local 716 status_t ret = request.readInt32(&methodId); in invoke() 722 switch (methodId) { in invoke()
|
/frameworks/av/media/libmediaplayer2/nuplayer2/ |
D | NuPlayer2Driver.cpp | 642 int32_t methodId; in invoke() local 643 status_t ret = request.readInt32(&methodId); in invoke() 649 switch (methodId) { in invoke()
|