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

/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);
H A DResolverActivity.java1740 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
1741 super.onPickOptionResult(finished, selections, 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 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/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/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/core/java/android/app/
H A DIApplicationThread.java51 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
70 void scheduleDestroyActivity(IBinder token, boolean finished, argument
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 DApplicationThreadNative.java82 boolean finished = data.readInt() != 0;
86 schedulePauseActivity(b, finished, userLeaving, configChanges, dontReport);
718 public final void schedulePauseActivity(IBinder token, boolean finished, argument
723 data.writeInt(finished ? 1 : 0);
H A DActivityThread.java588 public final void schedulePauseActivity(IBinder token, boolean finished, argument
591 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
1607 " finished=" +
3075 + " finished=" + r.activity.mFinished);
3142 + ", finished: " + a.mFinished);
3305 private void handlePauseActivity(IBinder token, boolean finished, argument
3315 performPauseActivity(token, finished, r.isPreHoneycomb());
3337 final Bundle performPauseActivity(IBinder token, boolean finished, argument
3340 return r != null ? performPauseActivity(r, finished, saveState) : null;
3343 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, argument
[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:
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java508 void sendPickOptionResult(boolean finished, argument
512 + " finished=" + finished + " selections=" + selections
514 if (finished) {
517 mCallback.deliverPickOptionResult(mInterface, finished, selections, result);
527 * VoiceInteractor.PickOptionRequest.onPickOptionResult} with false for finished.
538 * VoiceInteractor.PickOptionRequest.onPickOptionResult} with false for finished.
611 * Report that the voice interactor has finished completing the voice operation, resulting
667 * Report that the voice interactor has finished aborting the voice operation, resulting
711 void sendCommandResult(boolean finished, Bundl argument
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp91 return sizeof(Header) + body.finished.size();
365 *outSeq = msg.body.finished.seq;
366 *outHandled = msg.body.finished.handled;
810 ALOGE("Attempted to send a finished signal with sequence number 0.");
814 // Send finished signals for the batch sequence chain first.
844 // Send finished signal for the last message in the batch.
851 msg.body.finished.seq = seq;
852 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/cmds/pm/src/com/android/commands/pm/
H A DPm.java780 boolean finished; field in class:Pm.LocalPackageInstallObserver
788 finished = true;
1141 while (!obs.finished) {
1596 boolean finished; field in class:Pm.ClearDataObserver
1602 finished = true;
1634 while (!obs.finished) {
1856 boolean finished; field in class:Pm.ClearCacheObserver
1862 finished = true;
1910 while (!obs.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.java703 final boolean finished = ready
714 if (!finished && !mUnfinishedBusiness) {
738 if (finished && mUnfinishedBusiness) {
788 // finished drawing underneath.
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiLogger.java421 while (!compressor.finished()) {
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java137 * Called when device polling is finished.
582 final int[] finished = new int[1];
604 if (allocatingDevices.size() == ++finished[0]) {
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2902 bool finished = true; local
2904 if (doRelax(pModule, pBuilder, finished)) {
2907 } while (!finished);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1780 milliseconds