Searched refs:finished (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
H A DTestJobListener.java36 @Nullable private Job finished; field in class:TestJobListener
45 this.finished = job;
61 if (finished == null) {
67 if (finished == null || !finished.hasFailures()) {
73 if (finished == null || !finished.hasFailures()) {
77 assertEquals(finished.failedFiles.size(), names.size());
84 if (finished == null || !finished
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractorCallback.aidl30 void deliverPickOptionResult(IVoiceInteractorRequest request, boolean finished,
34 void deliverCommandResult(IVoiceInteractorRequest request, boolean finished, in Bundle result);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DScheduler.java43 boolean finished() { method in class:Scheduler
/frameworks/native/libs/input/tests/
H A DInputChannel_test.cpp95 clientReply.body.finished.seq = 0x11223344;
96 clientReply.body.finished.handled = true;
105 EXPECT_EQ(clientReply.body.finished.seq, serverReply.body.finished.seq)
107 EXPECT_EQ(clientReply.body.finished.handled, serverReply.body.finished.handled)
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DStartVoiceInteractionActivity.java158 public void onCommandResult(boolean finished, Bundle result) { argument
159 Log.i(TAG, "Command result: finished=" + finished + " result=" + result);
161 if (finished) {
189 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
190 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
193 if (finished) {
H A DTestInteractionActivity.java211 public void onCommandResult(boolean finished, Bundle result) { argument
212 Log.i(TAG, "Command result: finished=" + finished + " result=" + result);
214 if (finished) {
242 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
243 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
246 if (finished) {
/frameworks/support/v17/tests/src/android/support/v17/leanback/app/
H A DBrowseFragmentTest.java55 final boolean[] finished = new boolean[1]; field in class:BrowseFragmentTest.WaitLock
65 while (!finished[0]) {
76 finished[0] = true;
H A DBrowseSupportFragmentTest.java57 final boolean[] finished = new boolean[1]; field in class:BrowseSupportFragmentTest.WaitLock
67 while (!finished[0]) {
78 finished[0] = true;
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java55 public void finished(String className) { method in class:TestPrinter
57 Log.i(mTag, "finished: " + className);
103 finished(test.toString());
H A DTestRunner.java112 finished(test.toString());
154 void finished(String className); method in interface:TestRunner.Listener
189 private void finished(String className) { method in class:TestRunner
192 mListeners.get(i).finished(className);
273 finished(className);
323 finished(className);
360 finished(test.toString());
513 finished(test.toString());
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/deviceinfo/
H A DStorageMeasurement.java195 List<UserInfo> profiles, Message finished, int remaining) {
205 mFinished = finished;
358 final Message finished = mMeasurementHandler.obtainMessage(MeasurementHandler.MSG_COMPLETED,
362 finished.sendToTarget();
417 finished.sendToTarget();
422 ActivityManager.getCurrentUser(), currentProfiles, finished, count);
430 finished.sendToTarget();
194 StatsObserver(boolean isPrivate, MeasurementDetails details, int currentUser, List<UserInfo> profiles, Message finished, int remaining) argument
/frameworks/base/libs/hwui/
H A DAnimator.cpp245 bool finished = updatePlayTime(currentPlayTime); local
246 if (finished && mPlayState != PlayState::Finished) {
250 return finished;
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java482 if (info.finished) {
483 Log.w(TAG, "Not sending progress notification because bugreport has finished already ("
540 if (info != null && !info.finished) {
569 if (info.finished) {
570 if (DEBUG) Log.v(TAG, "Skipping finished process " + pid + " (id: " + id + ")");
720 if (info.finished) {
750 if (info.finished) {
751 Log.d(TAG, "Screenshot finished after bugreport; updating share notification");
793 if (!info.finished) {
852 info.finished
1636 boolean finished; field in class:BugreportProgressService.BugreportInfo
[all...]
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java679 boolean finished; field in class:Pm.LocalPackageInstallObserver
687 finished = true;
1094 boolean finished; field in class:Pm.ClearDataObserver
1100 finished = true;
1130 while (!obs.finished) {
1341 boolean finished; field in class:Pm.ClearCacheObserver
1347 finished = true;
1392 while (!obs.finished) {
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp1211 goto finished;
1215 goto finished;
1225 goto finished;
1230 goto finished;
1236 goto finished;
1243 goto finished;
1251 goto finished;
1256 finished:
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java528 void sendPickOptionResult(boolean finished, argument
532 + " finished=" + finished + " selections=" + selections
534 if (finished) {
537 mCallback.deliverPickOptionResult(mInterface, finished, selections, result);
547 * VoiceInteractor.PickOptionRequest.onPickOptionResult} with false for finished.
558 * VoiceInteractor.PickOptionRequest.onPickOptionResult} with false for finished.
631 * Report that the voice interactor has finished completing the voice operation, resulting
687 * Report that the voice interactor has finished aborting the voice operation, resulting
731 void sendCommandResult(boolean finished, Bundl argument
[all...]
/frameworks/base/core/java/android/app/
H A DVoiceInteractor.java100 + " finished=" + complete + " selection=" + args.arg2
159 public void deliverConfirmationResult(IVoiceInteractorRequest request, boolean finished,
162 MSG_CONFIRMATION_RESULT, finished ? 1 : 0, request, result));
167 boolean finished, PickOptionRequest.Option[] options, Bundle result) {
169 MSG_PICK_OPTION_RESULT, finished ? 1 : 0, request, options, result));
547 * @param finished True if the voice interaction has finished making a selection, in
554 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
H A DIApplicationThread.java51 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
71 void scheduleDestroyActivity(IBinder token, boolean finished, argument
/frameworks/native/libs/input/
H A DInputTransport.cpp95 return sizeof(Header) + body.finished.size();
369 *outSeq = msg.body.finished.seq;
370 *outHandled = msg.body.finished.handled;
820 ALOGE("Attempted to send a finished signal with sequence number 0.");
824 // Send finished signals for the batch sequence chain first.
859 // Send finished signal for the last message in the batch.
866 msg.body.finished.seq = seq;
867 msg.body.finished.handled = handled;
/frameworks/base/core/java/android/widget/
H A DScroller.java51 * whether the scroller is finished. If it isn't, it means that a fling or
204 * Returns whether the scroller has finished scrolling.
206 * @return True if the scroller has finished scrolling, false otherwise.
213 * Force the finished field to a particular value.
215 * @param finished The new finished value.
217 public final void forceFinished(boolean finished) { argument
218 mFinished = finished;
297 * the animation is not yet finished.
H A DOverScroller.java139 * Returns whether the scroller has finished scrolling.
141 * @return True if the scroller has finished scrolling, false otherwise.
148 * Force the finished field to a particular value. Contrary to
149 * {@link #abortAnimation()}, forcing the animation to finished
153 * @param finished The new finished value.
155 public final void forceFinished(boolean finished) { argument
156 mScrollerX.mFinished = mScrollerY.mFinished = finished;
294 * animation is not yet finished.
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java114 * are finished.
186 * @return true if the download finished, false otherwise.
208 * @return true of all the downloads finished, false otherwise.
369 * Checks with the download manager if the give download is finished.
371 * @return true if download is finished, false otherwise.
378 boolean finished = cursor.getCount() == 1;
380 return finished;
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java1306 boolean finished = animateBasedOnTime(currentTime);
1308 if (finished) {
/frameworks/native/include/input/
H A DInputTransport.h123 } finished; member in union:android::InputMessage::Body
158 * Try again after the consumer has sent a finished signal indicating that it has
251 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
308 /* Sends a finished signal to the publisher to inform it that the message
309 * with the specified sequence number has finished being process and whether
418 // batch with the previous one. When the finished signal is sent, we traverse the
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerController.java720 final boolean finished = ready
731 if (!finished && !mUnfinishedBusiness) {
755 if (finished && mUnfinishedBusiness) {
805 // finished drawing underneath.

Completed in 1154 milliseconds

12