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

/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/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/core/java/android/app/
H A DIApplicationThread.java52 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
71 void scheduleDestroyActivity(IBinder token, boolean finished, argument
H A DApplicationThreadNative.java79 boolean finished = data.readInt() != 0;
83 schedulePauseActivity(b, finished, userLeaving, configChanges, dontReport);
695 public final void schedulePauseActivity(IBinder token, boolean finished, argument
700 data.writeInt(finished ? 1 : 0);
H A DActivityThread.java580 public final void schedulePauseActivity(IBinder token, boolean finished, argument
583 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
1566 " finished=" +
2959 + " finished=" + r.activity.mFinished);
3025 + ", finished: " + a.mFinished);
3184 private void handlePauseActivity(IBinder token, boolean finished, argument
3194 performPauseActivity(token, finished, r.isPreHoneycomb());
3216 final Bundle performPauseActivity(IBinder token, boolean finished, argument
3219 return r != null ? performPauseActivity(r, finished, saveState) : null;
3222 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, argument
[all...]
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp1217 goto finished;
1221 goto finished;
1231 goto finished;
1236 goto finished;
1242 goto finished;
1249 goto finished;
1257 goto finished;
1262 finished:
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java750 boolean finished; field in class:Pm.LocalPackageInstallObserver
758 finished = true;
962 while (!obs.finished) {
1351 boolean finished; field in class:Pm.ClearDataObserver
1357 finished = true;
1389 while (!obs.finished) {
1583 boolean finished; field in class:Pm.ClearCacheObserver
1589 finished = true;
1633 while (!obs.finished) {
/frameworks/native/libs/input/
H A DInputTransport.cpp91 return sizeof(Header) + body.finished.size();
363 *outSeq = msg.body.finished.seq;
364 *outHandled = msg.body.finished.handled;
808 ALOGE("Attempted to send a finished signal with sequence number 0.");
812 // Send finished signals for the batch sequence chain first.
842 // Send finished signal for the last message in the batch.
849 msg.body.finished.seq = seq;
850 msg.body.finished.handled = handled;
/frameworks/base/core/java/android/widget/
H A DScroller.java52 * whether the scroller is finished. If it isn't, it means that a fling or
205 * Returns whether the scroller has finished scrolling.
207 * @return True if the scroller has finished scrolling, false otherwise.
214 * Force the finished field to a particular value.
216 * @param finished The new finished value.
218 public final void forceFinished(boolean finished) { argument
219 mFinished = finished;
298 * the animation is not yet finished.
H A DOverScroller.java140 * Returns whether the scroller has finished scrolling.
142 * @return True if the scroller has finished scrolling, false otherwise.
149 * Force the finished field to a particular value. Contrary to
150 * {@link #abortAnimation()}, forcing the animation to finished
154 * @param finished The new finished value.
156 public final void forceFinished(boolean finished) { argument
157 mScrollerX.mFinished = mScrollerY.mFinished = finished;
297 * 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/native/include/input/
H A DInputTransport.h122 } finished; member in union:android::InputMessage::Body
157 * Try again after the consumer has sent a finished signal indicating that it has
249 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
306 /* Sends a finished signal to the publisher to inform it that the message
307 * with the specified sequence number has finished being process and whether
416 // batch with the previous one. When the finished signal is sent, we traverse the
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java364 boolean finished = super.dismiss(authenticated);
365 if (!finished) {
386 return finished;
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerController.java689 final boolean finished = ready
693 if (!finished && !mUnfinishedBusiness) {
717 if (finished && mUnfinishedBusiness) {
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java131 * Called when device polling is finished.
574 final int[] finished = new int[1];
596 if (allocatingDevices.size() == ++finished[0]) {
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp3055 bool finished = true; local
3057 if (doRelax(pModule, pBuilder, finished)) {
3060 } while (!finished);

Completed in 1374 milliseconds