Home
last modified time | relevance | path

Searched +defs:get +defs:callback (Results 1 – 25 of 1562) sorted by relevance

12345678910>>...63

/aosp_15_r20/frameworks/base/core/java/android/view/textclassifier/
H A DSystemTextClassifier.java91 final BlockingCallback<TextSelection> callback = in suggestSelection() local
114 final BlockingCallback<TextClassification> callback = in classifyText() local
144 final BlockingCallback<TextLinks> callback = in generateLinks() local
195 final BlockingCallback<TextLanguage> callback = in detectLanguage() local
215 final BlockingCallback<ConversationActions> callback = in suggestConversationActions() local
296 public T get() { in get() method in SystemTextClassifier.BlockingCallback
325 public T get() { in get() method in SystemTextClassifier.ResponseReceiver
/aosp_15_r20/packages/modules/AdServices/adservices/framework/java/android/adservices/measurement/
DMeasurementCompatibleManager.java80 public static MeasurementCompatibleManager get(@NonNull Context context) { in get() method in MeasurementCompatibleManager
90 public static MeasurementCompatibleManager get(Context context, AdIdManager adIdManager) { in get() method in MeasurementCompatibleManager
140 @Nullable OutcomeReceiver<Object, Exception> callback) { in register()
197 @Nullable OutcomeReceiver<Object, Exception> callback) { in registerSource()
227 callback)); in registerSource() local
244 @Nullable OutcomeReceiver<Object, Exception> callback) { in registerSource()
319 @Nullable OutcomeReceiver<Object, Exception> callback) { in registerWebSource()
368 callback)); in registerWebSource() local
378 @Nullable OutcomeReceiver<Object, Exception> callback) { in registerWebSourceWrapper()
408 @Nullable OutcomeReceiver<Object, Exception> callback) { in registerWebTrigger()
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DExtensionControllerImpl.java78 T get(); in get() method
133 Consumer<T> callback) { in withCallback()
153 public void addCallback(Consumer<T> callback) { in addCallback()
158 public T get() { in get() method in ExtensionControllerImpl.ExtensionImpl
253 public T get() { in get() method in ExtensionControllerImpl.ExtensionImpl.PluginItem
279 public T get() { in get() method in ExtensionControllerImpl.ExtensionImpl.TunerItem
327 public T get() { in get() method in ExtensionControllerImpl.ExtensionImpl.UiModeItem
352 public T get() { in get() method in ExtensionControllerImpl.ExtensionImpl.FeatureItem
376 public T get() { in get() method in ExtensionControllerImpl.ExtensionImpl.Default
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
H A DHTMLImports.js27 get: function(key) { method in WeakMap
113 function forEachAncestorAndObserverEnqueueRecord(target, callback) { argument
128 function JsMutationObserver(callback) { argument
365 return nativeRaf ? function(callback) { argument
369 } : function(callback) { argument
395 get: function() { method
437 get: function() { method
446 function whenReady(callback, doc) { argument
457 function whenDocumentReady(callback, doc) { argument
473 function watchImportsLoad(callback, doc) { argument
[all …]
/aosp_15_r20/external/volley/core/src/main/java/com/android/volley/toolbox/
H A DNoAsyncCache.java14 public void get(String key, OnGetCompleteCallback callback) { in get() method in NoAsyncCache
19 public void put(String key, Cache.Entry entry, OnWriteCompleteCallback callback) { in put()
24 public void clear(OnWriteCompleteCallback callback) { in clear()
29 public void initialize(OnWriteCompleteCallback callback) { in initialize()
34 public void invalidate(String key, boolean fullExpire, OnWriteCompleteCallback callback) { in invalidate()
39 public void remove(String key, OnWriteCompleteCallback callback) { in remove()
/aosp_15_r20/frameworks/base/core/java/android/os/
H A DSystemProperties.java149 public static String get(@NonNull String key) { in get() method in SystemProperties
165 public static String get(@NonNull String key, @Nullable String def) { in get() method in SystemProperties
248 public static void addChangeCallback(@NonNull Runnable callback) { in addChangeCallback()
264 public static void removeChangeCallback(@NonNull Runnable callback) { in removeChangeCallback()
368 @NonNull public String get() { in get() method in SystemProperties.Handle
/aosp_15_r20/external/volley/core/src/main/java/com/android/volley/
H A DAsyncCache.java46 public abstract void get(String key, OnGetCompleteCallback callback); in get() method in AsyncCache
61 public abstract void put(String key, Cache.Entry entry, OnWriteCompleteCallback callback); in put()
67 public abstract void clear(OnWriteCompleteCallback callback); in clear()
73 public abstract void initialize(OnWriteCompleteCallback callback); in initialize()
84 String key, boolean fullExpire, OnWriteCompleteCallback callback); in invalidate()
93 public abstract void remove(String key, OnWriteCompleteCallback callback); in remove()
/aosp_15_r20/packages/modules/AppSearch/testing/mockingservicestests/src/com/android/server/appsearch/
DAppSearchManagerServiceTest.java293 TestResultCallback callback = new TestResultCallback(); in testCallingPackageDoesntExistsInTargetUser() local
311 TestResultCallback callback = new TestResultCallback(); in testSetSchemaStatsLogging() local
337 TestResultCallback callback = new TestResultCallback(); in testLocalGetSchemaStatsLogging() local
352 TestResultCallback callback = new TestResultCallback(); in testGlobalGetSchemaStatsLogging() local
367 TestResultCallback callback = new TestResultCallback(); in testGetNamespacesStatsLogging() local
381 TestBatchResultErrorCallback callback = new TestBatchResultErrorCallback(); in testPutDocumentsStatsLogging() local
495 TestBatchResultErrorCallback callback = new TestBatchResultErrorCallback(); in testPutDocumentsStatsLogging_takenActions() local
548 TestBatchResultErrorCallback callback = new TestBatchResultErrorCallback(); in testLocalGetDocumentsStatsLogging() local
567 TestBatchResultErrorCallback callback = new TestBatchResultErrorCallback(); in testGlobalGetDocumentsStatsLogging() local
585 TestResultCallback callback = new TestResultCallback(); in testSearchStatsLogging() local
[all …]
/aosp_15_r20/art/libartservice/service/java/com/android/server/art/model/
H A DConfig.java75 @NonNull Executor executor, @NonNull BatchDexoptStartCallback callback) { in setBatchDexoptStartCallback()
89 @NonNull Executor executor, @NonNull ScheduleBackgroundDexoptJobCallback callback) { in setScheduleBackgroundDexoptJobCallback()
104 @NonNull Executor executor, @NonNull DexoptDoneCallback callback) { in addDexoptDoneCallback()
112 public synchronized void removeDexoptDoneCallback(@NonNull DexoptDoneCallback callback) { in removeDexoptDoneCallback()
122 @NonNull Executor executor, @NonNull AdjustCompilerFilterCallback callback) { in setAdjustCompilerFilterCallback()
138 public abstract @NonNull CallbackType get(); in get() method in Config.Callback
141 static <CallbackType, ExtraType> @NonNull Callback<CallbackType, ExtraType> create( in create()
147 static <CallbackType> @NonNull Callback<CallbackType, Void> create( in create()
/aosp_15_r20/prebuilts/vndk/v30/arm64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v32/arm/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v34/x86/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/out/soong/.intermediates/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v33/arm/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v33/arm64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]
/aosp_15_r20/prebuilts/vndk/v34/arm/include/generated-headers/system/libhidl/transport/memory/token/1.0/[email protected]_genc++_headers/gen/android/hidl/memory/token/1.0/
DBsMemoryToken.h28 ::android::hardware::Return<void> get(get_cb _hidl_cb) override { in get() function
33 for (const auto &callback: mInstrumentationCallbacks) { in get() local
65 for (const auto &callback: mInstrumentationCallbacks) { in interfaceChain() local
97 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
110 for (const auto &callback: mInstrumentationCallbacks) { in debug() local
124 for (const auto &callback: mInstrumentationCallbacks) { in interfaceDescriptor() local
154 for (const auto &callback: mInstrumentationCallbacks) { in getHashChain() local
191 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
207 for (const auto &callback: mInstrumentationCallbacks) { in linkToDeath() local
221 for (const auto &callback: mInstrumentationCallbacks) { in ping() local
[all …]

12345678910>>...63