Home
last modified time | relevance | path

Searched refs:method (Results 1 – 10 of 10) sorted by relevance

/remotecallback/remotecallback/api/
Dcurrent.txt6 method @Deprecated public T createRemoteCallback(android.content.Context);
11 method @Deprecated public T createRemoteCallback(android.content.Context);
12 method @Deprecated public void onReceive(android.content.Context!, android.content.Intent!);
18method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback…
19method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback…
20method @Deprecated public static <T extends androidx.remotecallback.CallbackReceiver> void registe…
21method @Deprecated public static androidx.remotecallback.RemoteCallback? stubToRemoteCallback(andr…
25 method @Deprecated public void executeCallback(android.content.Context, T!, android.os.Bundle);
29 method @Deprecated public T createRemoteCallback(android.content.Context);
34 method @Deprecated public T createRemoteCallback(android.content.Context);
[all …]
Dapi_lint.ignore3 Callback method names must follow the on<Something> style: getArgumentBundle
5 Callback method names must follow the on<Something> style: getMethodName
7 Callback method names must follow the on<Something> style: getReceiverClass
9 Callback method names must follow the on<Something> style: getType
11 Callback method names must follow the on<Something> style: toPendingIntent
15 Context is distinct, so it must be the first argument (method `create`)
27 Missing nullability on parameter `context` in method `onReceive`
29 Missing nullability on parameter `intent` in method `onReceive`
31 Missing nullability on parameter `context` in method `onReceive`
33 Missing nullability on parameter `intent` in method `onReceive`
[all …]
Drestricted_current.txt6 method @Deprecated public T createRemoteCallback(android.content.Context);
7method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public a…
12 method @Deprecated public T createRemoteCallback(android.content.Context);
13 method @Deprecated public void onReceive(android.content.Context!, android.content.Intent!);
14method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public a…
19method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public a…
24method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public <…
25method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback…
26method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback…
27method @Deprecated public static <T extends androidx.remotecallback.CallbackReceiver> void registe…
[all …]
/remotecallback/remotecallback/src/main/java/androidx/remotecallback/
DContentProviderWithCallbacks.java62 public @Nullable Bundle call(@NonNull String method, @Nullable String arg, in call() argument
64 if (ProviderRelayReceiver.METHOD_PROVIDER_CALLBACK.equals(method)) { in call()
68 return super.call(method, arg, extras); in call()
82 @NonNull Bundle args, @NonNull String method) { in toRemoteCallback() argument
87 args.putString(EXTRA_METHOD, method); in toRemoteCallback()
DCallbackHandlerRegistry.java128 String method = bundle.getString(EXTRA_METHOD); in invokeCallback() local
130 CallbackHandler<T> callbackHandler = (CallbackHandler<T>) map.mHandlers.get(method); in invokeCallback()
132 Log.e(TAG, "No handler found for " + method + " on " + receiverClass.getName()); in invokeCallback()
173 private <T extends CallbackReceiver> void registerHandler(Class<T> cls, String method, in registerHandler() argument
179 map.mHandlers.put(method, handler); in registerHandler()
197 @NonNull String method, @Nullable CallbackHandler<T> handler) { in registerCallbackHandler() argument
198 sInstance.registerHandler(cls, method, handler); in registerCallbackHandler()
210 @Nullable String method) { in stubToRemoteCallback() argument
221 return ((CallbackBase) receiver).toRemoteCallback(cls, context, authority, args, method); in stubToRemoteCallback()
DBroadcastReceiverWithCallbacks.java74 @NonNull Bundle args, @NonNull String method) { in toRemoteCallback() argument
77 args.putString(EXTRA_METHOD, method); in toRemoteCallback()
DAppWidgetProviderWithCallbacks.java68 @NonNull Bundle args, @NonNull String method) { in toRemoteCallback() argument
71 args.putString(EXTRA_METHOD, method); in toRemoteCallback()
DCallbackBase.java48 @NonNull String method); in toRemoteCallback() argument
/remotecallback/remotecallback-processor/src/main/java/androidx/remotecallback/compiler/
DCallbackReceiver.java66 for (CallableMethod method: mMethods) { in addMethod()
67 if (method.getName().equals(element.getSimpleName().toString())) { in addMethod()
95 for (CallableMethod method: mMethods) { in finish()
96 method.addMethods(genClass, runBuilder, env, messager); in finish()
/remotecallback/remotecallback/
DIMPL.md48 call the actual implementation of the method.
60 is an annotation that can take a parameter on RemoteCallable method.