Searched defs:done (Results 26 - 40 of 40) sorted by last modified time

12

/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp224 bool skip, done = false; local
248 while (!done) {
369 done = true;
/frameworks/base/cmds/backup/
H A Dbackup.cpp64 bool done; local
67 while (reader.ReadNextHeader(&done, &type) == 0) {
68 if (done) {
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java222 boolean done = false; field in class:Bmgr.BackupObserver
242 done = true;
248 // The backupFinished() callback will throw the 'done' flag; we
251 while (!this.done) {
556 boolean done; field in class:Bmgr.RestoreObserver
562 done = true;
578 done = true;
589 // The restoreFinished() callback will throw the 'done' flag; we
592 while (!this.done) {
598 done
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java2311 protected void done() { method in class:AccountManager.AmsTask
2426 protected void done() { method in class:AccountManager.Future2Task
2591 // we are done
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp441 bool ID3::Iterator::done() const { function in class:android::ID3::Iterator
872 while (!it.done()) {
/frameworks/av/media/libstagefright/omx/
H A DGraphicBufferSource.cpp359 ALOGV("done loading initial frames, available=%zu+%d",
550 bool done = false; local
561 done = true;
564 if (!done) {
595 // Clear the whole ActionQueue as recording is done
999 // it; done here for safety).
/frameworks/av/media/mtp/
H A DAsyncIO.cpp59 int done = 1; member in namespace:__anon955
63 queue_cond.wait(lk, []{return !queue.empty() || done;});
64 if (queue.empty() && done) {
79 queue_cond.wait(lk, []{return !queue.empty() || done;});
80 if (queue.empty() && done) {
104 CHECK(done == 1);
105 done = 0;
120 done = 1;
/frameworks/av/include/media/
H A DSingleStateQueue.h84 // SSQ_DONE means it has been acted upon, after Observer::done() is called
151 void done() function in class:android::SingleStateQueue::Observer
155 android_atomic_release_store(ack, &mShared->mAck); // mSequence is odd after "done"
/frameworks/av/media/libmedia/include/media/
H A DSingleStateQueue.h84 // SSQ_DONE means it has been acted upon, after Observer::done() is called
151 void done() function in class:android::SingleStateQueue::Observer
155 android_atomic_release_store(ack, &mShared->mAck); // mSequence is odd after "done"
/frameworks/av/media/libstagefright/
H A DACodec.cpp1440 std::list<FrameRenderTracker::Info> done = local
1444 for (std::list<FrameRenderTracker::Info>::const_iterator it = done.cbegin();
1445 it != done.cend(); ++it) {
1455 mCallback->onOutputFramesRendered(done);
2070 // This is done by SW codecs, but most HW codecs don't support it.
5634 // told us that it's done with the input buffer, we can decrement
H A DFrameRenderTracker.cpp111 std::list<Info> done; local
140 done.splice(done.end(), mRenderQueue, it++);
149 return done;
H A DMPEG4Extractor.cpp3227 if (it->done()) {
3232 if (it->done()) {
5232 bool done = false; local
5234 while (!done && offset < kMaxScanOffset) {
5312 done = true;
H A DMediaCodec.cpp279 virtual void onOutputFramesRendered(const std::list<FrameRenderTracker::Info> &done) override;
387 void CodecCallback::onOutputFramesRendered(const std::list<FrameRenderTracker::Info> &done) { argument
390 if (MediaCodec::CreateFramesRenderedMessage(done, notify)) {
2214 // it done. The reply token will be replaced after this, and we'll
2826 const std::list<FrameRenderTracker::Info> &done, sp<AMessage> &msg) {
2829 for (std::list<FrameRenderTracker::Info>::const_iterator it = done.cbegin();
2830 it != done.cend(); ++it) {
2825 CreateFramesRenderedMessage( const std::list<FrameRenderTracker::Info> &done, sp<AMessage> &msg) argument
H A DStagefrightMetadataRetriever.cpp247 bool done = false; local
354 // from the extractor, decode to the specified frame. Otherwise we're done.
355 done = (targetTimeUs < 0ll) || (timeUs >= targetTimeUs);
357 if (!done) {
362 done = true;
367 } while (err == OK && !done);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dadj_thr.c637 Flag done; local
690 done = 0;
691 while (!done) {
707 done = 1;
720 done = 1;

Completed in 306 milliseconds

12