Home
last modified time | relevance | path

Searched refs:onReady (Results 1 – 25 of 55) sorted by relevance

123

/aosp12/frameworks/base/core/tests/coretests/src/android/view/
H A DTestScrollCaptureCallback.java37 @NonNull Consumer<Rect> onReady) { in onScrollCaptureSearch() argument
38 mSearchConsumer = onReady; in onScrollCaptureSearch()
44 @NonNull CancellationSignal signal, @NonNull Runnable onReady) { in onScrollCaptureStart() argument
45 mStartOnReady = onReady; in onScrollCaptureStart()
58 public void onScrollCaptureEnd(@NonNull Runnable onReady) { in onScrollCaptureEnd() argument
59 mOnEndReady = onReady; in onScrollCaptureEnd()
H A DScrollCaptureSearchResultsTest.java275 @NonNull Consumer<Rect> onReady) { in testWithCallbackMultipleReplies()
276 onReady.accept(new Rect(1, 2, 3, 4)); in testWithCallbackMultipleReplies()
277 onReady.accept(new Rect(9, 10, 11, 12)); in testWithCallbackMultipleReplies()
348 onReady.accept(b); in onScrollCaptureSearch()
354 Runnable onReady) { in onScrollCaptureStart() argument
355 run(onReady); in onScrollCaptureStart()
361 run(() -> onReady.accept(captureArea)); in onScrollCaptureImageRequest()
365 public void onScrollCaptureEnd(Runnable onReady) { in onScrollCaptureEnd() argument
366 run(onReady); in onScrollCaptureEnd()
401 @NonNull Consumer<Rect> onReady) { in onScrollCaptureSearch() argument
[all …]
H A DInsetsControllerTest.java208 verify(mockListener).onReady(animationController.capture(), anyInt()); in testControlsRevoked_duringAnim()
230 verify(controlListener, never()).onReady(any(), anyInt()); in testFrameDoesntMatchDisplay()
513 verify(mockListener).onReady(controllerCaptor.capture(), anyInt()); in testAnimationEndState_controller()
538 verify(mockListener).onReady(any(), anyInt()); in testCancellation_afterGainingControl()
562 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady()
570 verify(listener).onReady(notNull(), eq(ime())); in testControlImeNotReady()
587 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_controlRevoked()
608 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_timeout()
634 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_cancel()
H A DViewGroupScrollCaptureTest.java495 @NonNull Consumer<Rect> onReady) { in onScrollCaptureSearch() argument
500 @NonNull CancellationSignal signal, @NonNull Runnable onReady) { in onScrollCaptureStart() argument
510 public void onScrollCaptureEnd(@NonNull Runnable onReady) { in onScrollCaptureEnd() argument
/aosp12/packages/services/Car/experimental/tests/experimentalcarservice_unit_test/src/com/android/experimentalcar/
H A DTouchDriverAwarenessSupplierTest.java78 mTouchSupplier.onReady(); in testReady_initializesPermitsToMaxFromConfig()
87 mTouchSupplier.onReady(); in testconsumePermitLocked_decrementsPermitCount()
98 mTouchSupplier.onReady(); in testconsumePermitLocked_decrementIgnoredInThrottleWindow()
116 mTouchSupplier.onReady(); in testconsumePermitLocked_decrementsToMinOf0()
133 mTouchSupplier.onReady(); in testhandlePermitRefreshLocked_incrementsPermitCount()
149 mTouchSupplier.onReady(); in testhandlePermitRefreshLocked_incrementsToMaxOfConfig()
H A DGazeDriverAwarenessSupplierTest.java89 mGazeSupplier.onReady(); in testonReady_initialCallbackIsGenerated()
99 mGazeSupplier.onReady(); in testprocessDetectionEvent_noGazeDataProvided()
111 mGazeSupplier.onReady(); in testprocessDetectionEvent_neverExceedsOne()
137 mGazeSupplier.onReady(); in testprocessDetectionEvent_neverFallsBelowZero()
/aosp12/frameworks/base/core/java/android/view/
H A DScrollCaptureCallback.java85 void onScrollCaptureSearch(@NonNull CancellationSignal signal, @NonNull Consumer<Rect> onReady); in onScrollCaptureSearch() argument
103 @NonNull CancellationSignal signal, @NonNull Runnable onReady); in onScrollCaptureStart() argument
152 void onScrollCaptureEnd(@NonNull Runnable onReady); in onScrollCaptureEnd() argument
H A DWindowInsetsAnimationControlListener.java56 void onReady(@NonNull WindowInsetsAnimationController controller, @InsetsType int types); in onReady() method
/aosp12/frameworks/base/core/java/com/android/internal/view/
H A DScrollCaptureViewSupport.java198 public final void onScrollCaptureSearch(CancellationSignal signal, Consumer<Rect> onReady) { in onScrollCaptureSearch() argument
207 onReady.accept(mViewHelper.onComputeScrollBounds(view)); in onScrollCaptureSearch()
210 onReady.accept(null); in onScrollCaptureSearch()
215 Runnable onReady) { in onScrollCaptureStart() argument
231 onReady.run(); in onScrollCaptureStart()
276 public final void onScrollCaptureEnd(Runnable onReady) { in onScrollCaptureEnd() argument
286 onReady.run(); in onScrollCaptureEnd()
/aosp12/packages/services/Car/experimental/experimental_api/src/android/car/experimental/
H A DDriverAwarenessSupplierService.java88 protected abstract void onReady(); in onReady() method in DriverAwarenessSupplierService
127 onReady(); in handleReady()
138 public void onReady() { in onReady() method in DriverAwarenessSupplierService.SupplierBinder
H A DIDriverAwarenessSupplier.aidl29 void onReady() = 0; in onReady() method
/aosp12/packages/apps/DevCamera/src/com/android/devcamera/
H A DLoggingCallbacks.java74 super.onReady(session); in onConfigureFailed()
78 public void onReady(CameraCaptureSession session) { in onReady() method in LoggingCallbacks.SessionStateCallback
82 super.onReady(session); in onReady()
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DAndroidCameraDeviceProxy.java53 public void onReady(CameraCaptureSession session) { in onReady() method in AndroidCameraDeviceProxy.AndroidCaptureSessionStateCallback
54 mStateCallback.onReady(new AndroidCameraCaptureSessionProxy(session)); in onReady()
H A DCameraCaptureSessionProxy.java67 public void onReady(CameraCaptureSessionProxy session); in onReady() method
/aosp12/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionService.java63 public void onReady() { in onReady() method in MainInteractionService
64 super.onReady(); in onReady()
/aosp12/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java71 public void onReady(CameraCaptureSession session) { in onReady() method in CallbackProxies.SessionStateCallbackProxy
74 mExecutor.execute(() -> mCallback.onReady(session)); in onReady()
H A DCameraConstrainedHighSpeedCaptureSessionImpl.java366 public void onReady(CameraCaptureSession session) { in onReady() method in CameraConstrainedHighSpeedCaptureSessionImpl.WrapperCallback
367 mCallback.onReady(CameraConstrainedHighSpeedCaptureSessionImpl.this); in onReady()
/aosp12/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingOfflineSessionCallback.java120 public void onReady(CameraOfflineSession session) { in onReady() method in BlockingOfflineSessionCallback
122 mProxy.onReady(session); in onReady()
H A DBlockingSessionCallback.java188 public void onReady(CameraCaptureSession session) { in onReady() method in BlockingSessionCallback
191 mProxy.onReady(session); in onReady()
/aosp12/frameworks/base/core/java/android/hardware/camera2/
H A DCameraOfflineSession.java64 public abstract void onReady(@NonNull CameraOfflineSession session); in onReady() method in CameraOfflineSession.CameraOfflineSessionCallback
/aosp12/packages/services/Car/experimental/service/src/com/android/experimentalcar/
H A DSampleExternalDriverAwarenessSupplier.java41 public void onReady() { in onReady() method in SampleExternalDriverAwarenessSupplier
/aosp12/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/
H A DChatActivity.java102 public void onReady( in onCreate()
197 public void onReady( in onCreate()
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
H A DCaptureSessionCreator.java81 public void onReady(CameraCaptureSessionProxy session) { in createCaptureSession()
/aosp12/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionService.java96 VoiceInteractionService::onReady, VoiceInteractionService.this));
248 public void onReady() { in onReady() method in VoiceInteractionService
/aosp12/frameworks/av/camera/ndk/include/camera/
H A DNdkCameraCaptureSession.h91 ACameraCaptureSession_stateCallback onReady; member

123