Searched refs:done (Results 1 - 25 of 84) sorted by path

1234

/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/include/media/stagefright/
H A DMediaCodec.h171 std::list<FrameRenderTracker::Info> done, sp<AMessage> &msg);
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp906 mObserver.done();
930 mObserver.done(); // safe to read mStatic variables.
/frameworks/av/media/libstagefright/
H A DACodec.cpp1286 std::list<FrameRenderTracker::Info> done = local
1290 for (std::list<FrameRenderTracker::Info>::const_iterator it = done.cbegin();
1291 it != done.cend(); ++it) {
1301 if (MediaCodec::CreateFramesRenderedMessage(done, msg)) {
1967 // This is done by SW codecs, but most HW codecs don't support it.
4789 // 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 DMP3Extractor.cpp267 // The sniffer has already done all the hard work for us, simply
371 if (com->done()) {
375 while(!com->done()) {
633 if (it->done()) {
638 if (it->done()) {
H A DMPEG4Extractor.cpp2788 if (it->done()) {
2793 if (it->done()) {
4656 bool done = false; local
4658 while (!done && offset < kMaxScanOffset) {
4730 done = true;
H A DMediaCodec.cpp2413 std::list<FrameRenderTracker::Info> done, sp<AMessage> &msg) {
2416 for (std::list<FrameRenderTracker::Info>::const_iterator it = done.cbegin();
2417 it != done.cend(); ++it) {
2412 CreateFramesRenderedMessage( std::list<FrameRenderTracker::Info> done, sp<AMessage> &msg) argument
H A DStagefrightMetadataRetriever.cpp231 bool done = false; local
315 done = true;
318 done = true;
323 } 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;
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1902 while (!it.done()) {
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp417 bool ID3::Iterator::done() const { function in class:android::ID3::Iterator
815 while (!it.done()) {
H A Dtestid3.cpp82 while (!it.done()) {
/frameworks/av/media/libstagefright/include/
H A DID3.h52 bool done() const;
/frameworks/av/media/mtp/
H A DMtpServer.cpp992 goto done;
999 goto done;
1007 goto done;
1048 done:
/frameworks/av/services/audioflinger/
H A DAudioResamplerDyn.cpp585 goto done; // need a new buffer
592 done:
607 // released at "done:"; or (3) getNextBuffer() failed.
H A DAudioResamplerSinc.cpp344 goto done; // need a new buffer
349 done:
350 // if done with buffer, save samples
H A DTracks.cpp826 // this will be done by prepareTracks_l() when the track is stopped.
1576 goto done;
1617 done:
/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.java309 boolean done; field in class:Bmgr.RestoreObserver
315 done = true;
331 done = true;
337 // The restoreFinished() callback will throw the 'done' flag; we
340 while (!this.done) {
376 System.out.println("done");
450 // once the restore has finished, close down the session and we're done
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1958 protected void done() { method in class:AccountManager.AmsTask
2068 protected void done() { method in class:AccountManager.Future2Task
2214 // we are done
2264 // we are done
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java834 animNode.done = true;
842 if (!sortedNodes.get(i).done) {
940 // nodes are 'done' by default; they become un-done when started, and done
942 node.done = false;
1053 * are done and it's time to send out an end event for the entire AnimatorSet.
1055 public boolean done = false; field in class:AnimatorSet.Node
1099 node.done = false;
H A DValueAnimator.java1347 boolean done = false;
1377 done = true;
1388 return done;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSocket.java537 boolean done = false;
546 done = true;
548 } while(!done);
599 * Use this to optimize the writes done to the output socket, to avoid sending
609 * Use this to optimize the reads done on the input stream, as any call to read
/frameworks/base/core/java/android/os/
H A DAsyncTask.java150 * <li>The AsyncTask class must be loaded on the UI thread. This is done
303 protected void done() {

Completed in 517 milliseconds

1234