Home
last modified time | relevance | path

Searched refs:interceptor (Results 1 – 25 of 31) sorted by relevance

12

/aosp12/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
H A DBroadcastInterceptingContext.java128 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 Dwindow.h138 ANativeWindow_cancelBufferInterceptor interceptor,
154 ANativeWindow_dequeueBufferInterceptor interceptor,
169 ANativeWindow_performInterceptor interceptor, void* data);
183 ANativeWindow_queueBufferInterceptor interceptor,
/aosp12/frameworks/native/libs/nativewindow/
H A DANativeWindow.cpp323 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 DNotifCollection.java227 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 DNotifPipeline.java128 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 DCommandInterceptor.java203 CommandInterceptor interceptor) { in createDebugModeFlipper() argument
206 return interceptor; in createDebugModeFlipper()
220 return interceptor.accept(query); in createDebugModeFlipper()
/aosp12/system/core/debuggerd/tombstoned/
H A Dintercept_manager.cpp195 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 DNotificationEntryManager.java202 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 DSurface.cpp384 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 DDragDropController.java407 final DragState.InputInterceptor interceptor = in handleMessage() local
409 if (interceptor == null) return; in handleMessage()
411 interceptor.tearDown(); in handleMessage()
H A DActivityStarter.java274 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 DNotifDismissInterceptor.java64 NotifDismissInterceptor interceptor, in onEndDismissInterception() argument
/aosp12/frameworks/native/libs/nativewindow/include/system/
H A Dwindow.h1129 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 Dgoogle-oauth-client-1.30.1.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
H A Dgoogle-api-client-1.30.2.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
H A Dgoogle-http-client-1.30.1.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/
H A Dgoogle-oauth-client-1.31.0.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
H A Dhttpcore-4.4.13.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dokhttp-3.12.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/proguard/ okhttp3/ ...
H A Dgoogle-api-client-1.30.10.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
H A Dgoogle-http-client-1.36.0.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
/aosp12/packages/inputmethods/LatinIME/dictionaries/
H A Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
H A Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
H A Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
H A Dit_wordlist.combined.gz1dictionary=main:it,locale=it,description=Italiano,date=1414726258, ...

12