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

123

/frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
H A DAlarm.aidl22 int done();
H A DAlarmImpl.java67 Log.d(LOG_TAG, String.format("Alarm triggered, done waiting"));
72 public int done() throws RemoteException { method in class:AlarmImpl
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java23 * {@link #done}.
27 * to {@link #done}, it might be discarded.
29 * After {@link #start} been called, {@link #done} must be called regardless of errors.
80 public int done(); method in interface:SynthesisCallback
H A DPlaybackSynthesisCallback.java202 public int done() { method in class:PlaybackSynthesisCallback
203 if (DBG) Log.d(TAG, "done()");
208 Log.w(TAG, "Duplicate call to done()");
221 item.done();
H A DSynthesisPlaybackQueueItem.java103 // OR (c) done() is called in which case it will return null.
154 void done() { method in class:SynthesisPlaybackQueueItem
167 // calling done() don't block the synthesis thread forever. Ideally
208 // been called and done() has not been called.
222 // This is the normal playback loop exit case, when done() was
/frameworks/native/opengl/tests/gl_perfapp/jni/
H A Dgl_code.cpp31 bool done; variable
46 ALOGI("done\n");
51 done = true;
70 if (!done) {
72 done = false;
94 if (! done) {
/frameworks/base/cmds/backup/
H A Dbackup.cpp67 bool done; local
70 while (reader.ReadNextHeader(&done, &type) == 0) {
71 if (done) {
/frameworks/native/cmds/rawbu/
H A Dbackup.cpp313 goto done;
321 goto done;
325 goto done;
337 goto done;
343 goto done;
351 goto done;
358 goto done;
363 done:
389 if (!write_int32(fh, FILE_VERSION)) goto done;
390 if (!write_int32(fh, opt_backupAll)) goto done;
[all...]
/frameworks/base/tools/aapt/
H A DFileFinder.cpp85 bool done = false; local
88 for (size_t i = 0; i < extensions.size() && !done; ++i) {
93 done = true;
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java107 mListener.done(result);
143 mListener.done(result);
164 mListener.done(Status.SUCCESS.createResult());
169 mListener.done(Status.ERROR_UNKNOWN.createResult("Error playing animation", throwable));
/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java167 boolean done = true;
172 done = false;
180 done = normalized >= 1.0f;
191 if (done) {
192 // the setAlpha() calls below trigger invalidation and redraw. If we're done, just draw
220 if (!done) {
/frameworks/base/core/jni/
H A Dandroid_backup_BackupDataInput.cpp53 bool done; local
58 err = reader->ReadNextHeader(&done, &type);
59 if (done) {
87 // done
H A Dandroid_server_Watchdog.cpp47 // footer and done
71 goto done;
96 done:
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileObserverTest.java101 boolean done = false;
102 while (!done) {
105 done = true;
/frameworks/base/libs/androidfw/
H A DBackupData.cpp228 BackupDataReader::ReadNextHeader(bool* done, int* type) argument
230 *done = m_done;
239 *done = m_done = true;
246 *done = m_done = (amt == 0);
247 if (*done) {
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_eglapi.cpp123 goto done;
132 goto done;
145 done:
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java65 boolean done = false; field in class:MountServiceTests.ObbObserver
73 done = true;
79 assertTrue("Expected ObbObserver to have received a state change.", done);
84 assertTrue("Expected ObbObserver to have received a state change.", done);
91 done = false;
95 return done;
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp203 uint32_t done = 0; local
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
269 done += todo;
280 pBuffer->frameCount = done / (mChannelCnt * 2);
281 ALOGV("getNextBuffer done %d", pBuffer->frameCount);
/frameworks/av/media/libstagefright/include/
H A DID3.h52 bool done() const;
/frameworks/support/v4/java/android/support/v4/content/
H A DAsyncTaskLoader.java45 private CountDownLatch done = new CountDownLatch(1); field in class:AsyncTaskLoader.LoadTask
63 done.countDown();
73 done.countDown();
259 task.done.await();
/frameworks/base/include/androidfw/
H A DBackupHelpers.h110 status_t ReadNextHeader(bool* done, int* type);
/frameworks/rs/java/tests/GenImages/src/com/android/rs/genimage/
H A DGenImage.java207 if (key > 0) done = true;
230 boolean done = false; field in class:Triangle
250 if (!done) {
/frameworks/native/cmds/flatland/
H A DMain.cpp637 goto done;
641 goto done;
652 goto done;
664 goto done;
679 done:
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp82 while (!it.done()) {
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java279 boolean done; field in class:Bmgr.RestoreObserver
285 done = true;
301 done = true;
307 // The restoreFinished() callback will throw the 'done' flag; we
310 while (!this.done) {
346 System.out.println("done");
420 // once the restore has finished, close down the session and we're done

Completed in 3169 milliseconds

123