Home
last modified time | relevance | path

Searched refs:onProgress (Results 1 – 25 of 75) sorted by relevance

123

/aosp12/frameworks/base/startop/iorap/tests/src/com/google/android/startop/iorap/
H A DIIorapIntegrationTest.kt50 override fun onProgress(requestId: RequestId?, result: TaskResult?) {
80 .onProgress(eq(requestId), argThat { it!!.state == TaskResult.STATE_BEGAN })
82 .onProgress(eq(requestId), argThat { it!!.state == TaskResult.STATE_ONGOING })
/aosp12/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicFrameProcessor.java68 public void onProgress(boolean isFinished, float panningRateX, float panningRateY, in onProgress() method
179 mProgressListener.onProgress(false, mPanningRateX, mPanningRateY, in processFrame()
185 mProgressListener.onProgress(true, mPanningRateX, mPanningRateY, in processFrame()
/aosp12/packages/services/Car/car-lib/src/android/car/
H A DCarBugreportManager.java83 public void onProgress(@FloatRange(from = 0f, to = 100f) float progress) { in onProgress() method in CarBugreportManager.CarBugreportManagerCallback
123 public void onProgress(@FloatRange(from = 0f, to = 100f) float progress) { in onProgress() method in CarBugreportManager.CarBugreportManagerCallbackWrapper
127 handler.post(() -> callback.onProgress(progress)); in onProgress()
H A DICarBugreportCallback.aidl36 void onProgress(float progress); in onProgress() method
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DDppManagerTest.java526 dppEventCallback.onProgress(AUTHENTICATION_SUCCESS); in testStartDppAsConfiguratorInitiatorStartOnSuccessCallback()
573 dppEventCallback.onProgress(AUTHENTICATION_SUCCESS); in testStartDppAsEnrolleeInitiatorStartCorrectlyOnSuccessCallback()
628 dppEventCallback.onProgress(RESPONSE_PENDING); in testStartDppAsConfiguratorInitiatorStartOnFailureCallback()
630 verify(mDppCallback).onProgress(eq(EASY_CONNECT_EVENT_PROGRESS_RESPONSE_PENDING)); in testStartDppAsConfiguratorInitiatorStartOnFailureCallback()
678 dppEventCallback.onProgress(RESPONSE_PENDING); in testStartDppAsEnrolleeInitiatorStartCorrectlyOnFailureCallback()
680 verify(mDppCallback).onProgress(eq(EASY_CONNECT_EVENT_PROGRESS_RESPONSE_PENDING)); in testStartDppAsEnrolleeInitiatorStartCorrectlyOnFailureCallback()
948 dppEventCallback.onProgress(AUTHENTICATION_SUCCESS); in testStartDppAsConfiguratorInitiatorStartOnSuccessCallbackR2()
952 dppEventCallback.onProgress(CONFIGURATION_ACCEPTED); in testStartDppAsConfiguratorInitiatorStartOnSuccessCallbackR2()
956 dppEventCallback.onProgress(CONFIGURATION_SENT_WAITING_RESPONSE); in testStartDppAsConfiguratorInitiatorStartOnSuccessCallbackR2()
1145 dppEventCallback.onProgress(AUTHENTICATION_SUCCESS); in testStartDppAsEnrolleeResponderStartCorrectlyOnSuccessCallback()
[all …]
/aosp12/frameworks/base/core/java/android/os/
H A DBugreportManager.java123 public void onProgress(@FloatRange(from = 0f, to = 100f) float progress) {} in onProgress() method in BugreportManager.BugreportCallback
323 public void onProgress(int progress) throws RemoteException { in onProgress() method in BugreportManager.DumpstateListener
326 mExecutor.execute(() -> mCallback.onProgress(progress)); in onProgress()
H A DIRecoverySystemProgressListener.aidl23 void onProgress(int progress); in onProgress() method
H A DIProgressListener.aidl24 void onProgress(int id, int progress, in Bundle extras); in onProgress() method
H A DFileUtils.java139 public void onProgress(long progress); in onProgress() method
497 listener.onProgress(progressSnapshot); in copyInternalSplice()
506 listener.onProgress(progressSnapshot); in copyInternalSplice()
537 listener.onProgress(progressSnapshot); in copyInternalSendfile()
546 listener.onProgress(progressSnapshot); in copyInternalSendfile()
598 listener.onProgress(progressSnapshot); in copyInternalUserspace()
607 listener.onProgress(progressSnapshot); in copyInternalUserspace()
H A DRecoverySystem.java230 public void onProgress(int progress); in onProgress() method
296 listener.onProgress(0); in verifyPackage()
403 listenerForInner.onProgress(lastPercent); in verifyPackage()
413 listener.onProgress(100); in verifyPackage()
535 public void onProgress(final int progress) { in processPackage()
544 listener.onProgress(progress); in processPackage()
/aosp12/frameworks/base/core/java/com/android/internal/util/
H A DProgressReporter.java99 listener.onProgress(mId, mProgress, mExtras); in addListener()
221 mListeners.getBroadcastItem(i).onProgress(id, progress, extras); in notifyProgress()
/aosp12/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/
H A DChatActivity.java173 public WindowInsets onProgress(WindowInsets insets, in onCreate()
175 mTransitions.forEach(it -> it.onProgress(insets)); in onCreate()
251 void onProgress(WindowInsets insets) { in onProgress() method in ChatActivity.Transition
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/legacysplitscreen/
H A DDividerImeController.java273 onProgress(progress, t); in onImePositionChanged()
286 private void onProgress(float progress, SurfaceControl.Transaction t) { in onProgress() method in DividerImeController
317 onProgress(1.f, t); in onEnd()
342 onProgress(value, t); in startAsyncAnimation()
/aosp12/system/gsid/aidl/android/gsi/
H A DIProgressCallback.aidl33 void onProgress(long current, long total); in onProgress() method
/aosp12/frameworks/native/cmds/dumpstate/binder/android/os/
H A DIDumpstateListener.aidl33 oneway void onProgress(int progress); in onProgress() method
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DIDppCallback.aidl47 void onProgress(int status); in onProgress() method
/aosp12/system/iorap/binder/com/google/android/startop/iorap/
H A DITaskListener.aidl29 void onProgress(in RequestId requestId, in TaskResult result); in onProgress() method
/aosp12/frameworks/base/media/java/android/media/tv/tuner/frontend/
H A DScanCallback.java38 void onProgress(@IntRange(from = 0, to = 100) int percent); in onProgress() method
/aosp12/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DWindowInsetsControllerActivity.java47 public WindowInsets onProgress(@NonNull WindowInsets insets, in onCreate()
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/
H A DEasyConnectStatusCallbackTest.java48 public void onProgress(int code) {
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/anim/
H A DKeyboardInsetAnimationCallback.java51 public WindowInsets onProgress(WindowInsets windowInsets, List<WindowInsetsAnimation> list) { in onProgress() method in KeyboardInsetAnimationCallback
/aosp12/frameworks/base/packages/Shell/tests/src/com/android/shell/
H A DBugreportReceiverTest.java240 mIDumpstateListener.onProgress(10); in testProgress()
243 mIDumpstateListener.onProgress(95); in testProgress()
247 mIDumpstateListener.onProgress(200); in testProgress()
250 mIDumpstateListener.onProgress(300); in testProgress()
614 mIDumpstateListener.onProgress(0); in sendBugreportStarted()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DDppManager.java97 public void onProgress(int dppStatusCode) {
99 DppManager.this.onProgress(dppStatusCode);
662 private void onProgress(int dppStatusCode) { in onProgress() method in DppManager
701 mDppRequestInfo.callback.onProgress(dppProgressCode); in onProgress()
/aosp12/frameworks/base/services/core/java/com/android/server/os/
H A DBugreportManagerServiceImpl.java344 public void onProgress(int progress) throws RemoteException { in onProgress() method in BugreportManagerServiceImpl.DumpstateListener
345 mListener.onProgress(progress); in onProgress()
/aosp12/packages/apps/Settings/src/com/android/settings/wifi/dpp/
H A DWifiDppInitiatorViewModel.java112 public void onProgress(int code) { in onProgress() method in WifiDppInitiatorViewModel.EasyConnectDelegateCallback

123