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

/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellCallback.java20 public void finished(); method in interface:TestShellCallback
H A DTestShellActivity.java86 finished();
120 finished();
241 finished();
257 builder.setMessage("All tests finished. Exit?")
307 finished();
346 finished();
353 public boolean finished() { method in class:TestShellActivity
361 mCallback.finished();
413 if (!mRequestedWebKitData && !mTimedOut && !finished()) {
594 // Calling finished() wil
[all...]
H A DLoadTestsAutoTest.java86 // and waits till it has finished running.
221 public void finished() {
H A DLayoutTestsAutoTest.java307 public void finished() {
371 // and waits till it has finished running.
/frameworks/base/core/java/android/app/
H A DIThumbnailReceiver.aidl28 void finished();
H A DIApplicationThread.java47 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
65 void scheduleDestroyActivity(IBinder token, boolean finished, argument
H A DApplicationThreadNative.java75 boolean finished = data.readInt() != 0;
78 schedulePauseActivity(b, finished, userLeaving, configChanges);
612 public final void schedulePauseActivity(IBinder token, boolean finished, argument
617 data.writeInt(finished ? 1 : 0);
H A DActivityThread.java556 public final void schedulePauseActivity(IBinder token, boolean finished, argument
559 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
1478 " finished=" +
2716 + " finished=" + r.activity.mFinished);
2779 + ", finished: " + a.mFinished);
2939 private void handlePauseActivity(IBinder token, boolean finished, argument
2949 performPauseActivity(token, finished, r.isPreHoneycomb());
2968 final Bundle performPauseActivity(IBinder token, boolean finished, argument
2971 return r != null ? performPauseActivity(r, finished, saveState) : null;
2974 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DPendingThumbnailsRecord.java31 boolean finished; // Is pendingRecords empty? field in class:PendingThumbnailsRecord
37 finished = false;
H A DActivityManagerService.java574 * List of HistoryRecord objects that have been finished and must
831 * Set to true after the system has finished booting.
2600 // we want to start the new one as if the current one is finished,
2732 * @return Returns true if the activity successfully finished, or false if it is still running.
5620 receiver.finished();
5727 receiver.finished();
6167 pr.finished = true;
6185 if (pr.finished) {
6186 pr.receiver.finished();
12491 // Only return the supplied result for the first activity finished
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DScheduler.java43 boolean finished() { method in class:Scheduler
/frameworks/base/libs/androidfw/tests/
H A DInputChannel_test.cpp94 clientReply.body.finished.seq = 0x11223344;
95 clientReply.body.finished.handled = true;
104 EXPECT_EQ(clientReply.body.finished.seq, serverReply.body.finished.seq)
106 EXPECT_EQ(clientReply.body.finished.handled, serverReply.body.finished.handled)
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java54 public void finished(String className) { method in class:TestPrinter
56 Log.i(mTag, "finished: " + className);
102 finished(test.toString());
H A DTestRunner.java111 finished(test.toString());
153 void finished(String className); method in interface:TestRunner.Listener
188 private void finished(String className) { method in class:TestRunner
191 mListeners.get(i).finished(className);
272 finished(className);
322 finished(className);
359 finished(test.toString());
512 finished(test.toString());
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java680 boolean finished; field in class:Pm.PackageInstallObserver
685 finished = true;
939 while (!obs.finished) {
1059 boolean finished; field in class:Pm.PackageDeleteObserver
1064 finished = true;
1104 while (!obs.finished) {
1119 boolean finished; field in class:Pm.ClearDataObserver
1125 finished = true;
1161 while (!obs.finished) {
1305 boolean finished; field in class:Pm.ClearCacheObserver
[all...]
/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:
H A DInputTransport.cpp89 return sizeof(Header) + body.finished.size();
356 *outSeq = msg.body.finished.seq;
357 *outHandled = msg.body.finished.handled;
798 ALOGE("Attempted to send a finished signal with sequence number 0.");
802 // Send finished signals for the batch sequence chain first.
832 // Send finished signal for the last message in the batch.
839 msg.body.finished.seq = seq;
840 msg.body.finished.handled = handled;
/frameworks/base/core/java/android/widget/
H A DScroller.java182 * Returns whether the scroller has finished scrolling.
184 * @return True if the scroller has finished scrolling, false otherwise.
191 * Force the finished field to a particular value.
193 * @param finished The new finished value.
195 public final void forceFinished(boolean finished) { argument
196 mFinished = finished;
275 * the animation is not yet finished. loc will be altered to provide the
H A DOverScroller.java132 * Returns whether the scroller has finished scrolling.
134 * @return True if the scroller has finished scrolling, false otherwise.
141 * Force the finished field to a particular value. Contrary to
142 * {@link #abortAnimation()}, forcing the animation to finished
146 * @param finished The new finished value.
148 public final void forceFinished(boolean finished) { argument
149 mScrollerX.mFinished = mScrollerY.mFinished = finished;
289 * animation is not yet finished.
/frameworks/base/include/androidfw/
H A DInputTransport.h114 } finished; member in union:android::InputMessage::Body
149 * Try again after the consumer has sent a finished signal indicating that it has
238 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
295 /* Sends a finished signal to the publisher to inform it that the message
296 * with the specified sequence number has finished being process and whether
405 // batch with the previous one. When the finished signal is sent, we traverse the
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DTaskSwitcherActivity.java169 public void finished() throws RemoteException {

Completed in 4136 milliseconds