Searched defs:wait (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/libs/surfaceflinger/
H A DBarrier.h44 void wait() const { function in class:android::Barrier
47 cv.wait(lock);
/frameworks/base/libs/rs/
H A DrsLocklessFifo.cpp126 mSignalToControl.wait();
137 mSignalToWorker.wait();
177 // Toss in a reset then the normal wait for space will do the rest.
183 // it will fit here so we just need to wait for space.
247 void LocklessCommandFifo::Signal::wait() function in class:LocklessCommandFifo::Signal
H A DrsContext.cpp720 uint32_t Context::getMessageToClient(void *data, size_t *receiveLen, size_t bufferLen, bool wait) argument
722 //LOGE("getMessageToClient %i %i", bufferLen, wait);
723 if (!wait) {
725 // No message to get and not going to wait for one.
947 uint32_t rsContextGetMessage(RsContext vrsc, void *data, size_t *receiveLen, size_t bufferLen, bool wait) argument
950 return rsc->getMessageToClient(data, receiveLen, bufferLen, wait);
/frameworks/base/test-runner/src/junit/textui/
H A DTestRunner.java12 * java junit.textui.TestRunner [-wait] TestCaseClass
19 * When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) { argument
121 pause(wait);
125 protected void pause(boolean wait) { argument
126 if (!wait) return;
154 boolean wait= false;
157 if (args[i].equals("-wait"))
158 wait= true;
168 throw new Exception("Usage: TestRunner [-wait] testCaseNam
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp485 long wait = ns2us(frameDuration); local
486 if (wait > 0)
487 usleep(wait);
/frameworks/base/include/utils/
H A Dthreads.h302 * call wait(), then either re-wait() if things aren't quite what you want,
303 * or unlock the mutex and continue. All threads calling wait() must
317 status_t wait(Mutex& mutex);
352 inline status_t Condition::wait(Mutex& mutex) { function in class:android::Condition
417 // Call requestExit() and wait until this object's thread exits.
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java80 native int nContextGetMessage(int[] data, boolean wait); argument
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1200 mCondition.wait(mLock);
1255 LOGV("wait for prepare");
1256 if (cache->wait() != NO_ERROR) goto Exit;
1261 LOGV("wait for playback complete");
1262 if (cache->wait() != NO_ERROR) goto Exit;
1298 LOGV("wait for prepare");
1299 if (cache->wait() != NO_ERROR) goto Exit;
1304 LOGV("wait for playback complete");
1305 if (cache->wait() != NO_ERROR) goto Exit;
1801 status_t MediaPlayerService::AudioCache::wait() function in class:android::MediaPlayerService::AudioCache
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp227 nContextGetMessage(JNIEnv *_env, jobject _this, jintArray data, jboolean wait) argument
234 int id = rsContextGetMessage(con, ptr, &receiveLen, len * 4, wait);

Completed in 174 milliseconds