/aosp12/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/ |
H A D | BroadcastInterceptingContext.java | 128 final BroadcastInterceptor interceptor = new BroadcastInterceptor(null, filter, null); in nextBroadcastIntent() local 130 mInterceptors.add(interceptor); in nextBroadcastIntent() 132 return interceptor; in nextBroadcastIntent() 167 final BroadcastInterceptor interceptor = i.next(); in unregisterReceiver() local 168 if (receiver.equals(interceptor.mReceiver)) { in unregisterReceiver() 180 final BroadcastInterceptor interceptor = i.next(); in sendBroadcast() local 181 if (interceptor.dispatchBroadcast(intent)) { in sendBroadcast()
|
/aosp12/frameworks/native/libs/nativewindow/include/apex/ |
H A D | window.h | 138 ANativeWindow_cancelBufferInterceptor interceptor, 154 ANativeWindow_dequeueBufferInterceptor interceptor, 169 ANativeWindow_performInterceptor interceptor, void* data); 183 ANativeWindow_queueBufferInterceptor interceptor,
|
/aosp12/frameworks/native/libs/nativewindow/ |
H A D | ANativeWindow.cpp | 323 ANativeWindow_cancelBufferInterceptor interceptor, in ANativeWindow_setCancelBufferInterceptor() argument 325 return window->perform(window, NATIVE_WINDOW_SET_CANCEL_INTERCEPTOR, interceptor, data); in ANativeWindow_setCancelBufferInterceptor() 329 ANativeWindow_dequeueBufferInterceptor interceptor, in ANativeWindow_setDequeueBufferInterceptor() argument 331 return window->perform(window, NATIVE_WINDOW_SET_DEQUEUE_INTERCEPTOR, interceptor, data); in ANativeWindow_setDequeueBufferInterceptor() 335 ANativeWindow_performInterceptor interceptor, void* data) { in ANativeWindow_setPerformInterceptor() argument 336 return window->perform(window, NATIVE_WINDOW_SET_PERFORM_INTERCEPTOR, interceptor, data); in ANativeWindow_setPerformInterceptor() 340 ANativeWindow_queueBufferInterceptor interceptor, in ANativeWindow_setQueueBufferInterceptor() argument 342 return window->perform(window, NATIVE_WINDOW_SET_QUEUE_INTERCEPTOR, interceptor, data); in ANativeWindow_setQueueBufferInterceptor()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotifCollection.java | 227 if (mDismissInterceptors.contains(interceptor)) { in addNotificationDismissInterceptor() 230 mDismissInterceptors.add(interceptor); in addNotificationDismissInterceptor() 231 interceptor.setCallback(this::onEndDismissInterception); in addNotificationDismissInterceptor() 592 for (NotifDismissInterceptor interceptor : mDismissInterceptors) { in updateDismissInterceptors() 593 if (interceptor.shouldInterceptDismissal(entry)) { in updateDismissInterceptors() 594 entry.mDismissInterceptors.add(interceptor); in updateDismissInterceptors() 615 NotifDismissInterceptor interceptor, in onEndDismissInterception() argument 624 if (!entry.mDismissInterceptors.remove(interceptor)) { in onEndDismissInterception() 628 interceptor.getName(), in onEndDismissInterception() 629 interceptor))); in onEndDismissInterception() [all …]
|
H A D | NotifPipeline.java | 128 public void addNotificationDismissInterceptor(NotifDismissInterceptor interceptor) { in addNotificationDismissInterceptor() argument 129 mNotifCollection.addNotificationDismissInterceptor(interceptor); in addNotificationDismissInterceptor()
|
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/queries/ |
H A D | CommandInterceptor.java | 203 CommandInterceptor interceptor) { in createDebugModeFlipper() argument 206 return interceptor; in createDebugModeFlipper() 220 return interceptor.accept(query); in createDebugModeFlipper()
|
/aosp12/system/core/debuggerd/tombstoned/ |
H A D | intercept_manager.cpp | 195 bool dump_types_compatible(DebuggerdDumpType interceptor, DebuggerdDumpType dump) { in dump_types_compatible() argument 196 if (interceptor == dump) { in dump_types_compatible() 200 if (interceptor == kDebuggerdTombstone && dump == kDebuggerdTombstoneProto) { in dump_types_compatible()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationEntryManager.java | 202 for (NotificationRemoveInterceptor interceptor : mRemoveInterceptors) { in dump() 203 pw.println(" " + interceptor.getClass().getSimpleName()); in dump() 235 public void addNotificationRemoveInterceptor(NotificationRemoveInterceptor interceptor) { in addNotificationRemoveInterceptor() argument 236 mRemoveInterceptors.add(interceptor); in addNotificationRemoveInterceptor() 240 public void removeNotificationRemoveInterceptor(NotificationRemoveInterceptor interceptor) { in removeNotificationRemoveInterceptor() argument 241 mRemoveInterceptors.remove(interceptor); in removeNotificationRemoveInterceptor() 453 for (NotificationRemoveInterceptor interceptor : mRemoveInterceptors) { in removeNotificationInternal() 454 if (interceptor.onNotificationRemoveRequested(key, entry, reason)) { in removeNotificationInternal()
|
/aosp12/frameworks/native/libs/gui/ |
H A D | Surface.cpp | 384 auto interceptor = c->mDequeueInterceptor; in hook_dequeueBuffer() local 404 auto interceptor = c->mCancelInterceptor; in hook_cancelBuffer() local 423 auto interceptor = c->mQueueInterceptor; in hook_queueBuffer() local 507 auto interceptor = c->mQueryInterceptor; in hook_query() local 1741 ANativeWindow_cancelBufferInterceptor interceptor = in dispatchAddCancelInterceptor() local 1745 mCancelInterceptor = interceptor; in dispatchAddCancelInterceptor() 1755 mDequeueInterceptor = interceptor; in dispatchAddDequeueInterceptor() 1764 mPerformInterceptor = interceptor; in dispatchAddPerformInterceptor() 1770 ANativeWindow_queueBufferInterceptor interceptor = in dispatchAddQueueInterceptor() local 1774 mQueueInterceptor = interceptor; in dispatchAddQueueInterceptor() [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | DragDropController.java | 407 final DragState.InputInterceptor interceptor = in handleMessage() local 409 if (interceptor == null) return; in handleMessage() 411 interceptor.tearDown(); in handleMessage()
|
H A D | ActivityStarter.java | 274 ActivityTaskSupervisor supervisor, ActivityStartInterceptor interceptor) { in DefaultFactory() argument 277 mInterceptor = interceptor; in DefaultFactory() 549 ActivityTaskSupervisor supervisor, ActivityStartInterceptor interceptor) { in ActivityStarter() argument 554 mInterceptor = interceptor; in ActivityStarter()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/ |
H A D | NotifDismissInterceptor.java | 64 NotifDismissInterceptor interceptor, in onEndDismissInterception() argument
|
/aosp12/frameworks/native/libs/nativewindow/include/system/ |
H A D | window.h | 1129 ANativeWindow_queryInterceptor interceptor, in ANativeWindow_setQueryInterceptor() argument 1131 return window->perform(window, NATIVE_WINDOW_SET_QUERY_INTERCEPTOR, interceptor, data); in ANativeWindow_setQueryInterceptor()
|
/aosp12/packages/services/Car/tests/BugReportApp/libs/ |
H A D | google-oauth-client-1.30.1.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |
H A D | google-api-client-1.30.2.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |
H A D | google-http-client-1.30.1.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/ |
H A D | google-oauth-client-1.31.0.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |
H A D | httpcore-4.4.13.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |
H A D | okhttp-3.12.1.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/proguard/
okhttp3/
... |
H A D | google-api-client-1.30.10.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |
H A D | google-http-client-1.36.0.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |
/aosp12/packages/inputmethods/LatinIME/dictionaries/ |
H A D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
H A D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
H A D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |
H A D | it_wordlist.combined.gz | 1dictionary=main:it,locale=it,description=Italiano,date=1414726258, ... |