/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
MediaRecorderStressTest.java | 173 lock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 175 Log.v(TAG, "wait was interrupted."); 212 recorderlock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 214 Log.v(TAG, "wait was interrupted."); 265 lock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 267 Log.v(TAG, "wait was interrupted."); 283 recorderlock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 285 Log.v(TAG, "wait was interrupted."); 364 recorderlock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 366 Log.v(TAG, "wait was interrupted.") [all...] |
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
HttpURLConnectionTest.java | 183 bound.wait(5000); 223 if (!server.started) bound.wait(5000); 227 if (!proxy.started) bound.wait(5000); 232 // wait while server and proxy run 274 if (!server.started) bound.wait(5000); 278 if (!proxy.started) bound.wait(5000); 282 // wait while server and proxy run
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/ |
Condition.java | 13 * methods ({@link Object#wait() wait}, {@link Object#notify notify} 15 * give the effect of having multiple wait-sets per object, by 23 * suspend execution (to "wait") until notified by another 29 * suspends the current thread, just like {@code Object.wait}. 41 * threads in separate wait-sets so that we can use the optimization of 99 * and can have their own monitor {@link Object#wait wait} and 121 * occur and so always wait in a loop. 153 * Causes the current thread to wait until it is signalled o [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaConnection.java | 313 if (postDialState != PostDialState.WAIT) { 315 + "getPostDialState() to be WAIT but was " + postDialState); 631 } else if (c == PhoneNumberUtils.WAIT) { 632 setPostDialState(PostDialState.WAIT); 652 int wIndex = subStr.indexOf(PhoneNumberUtils.WAIT); 780 * Set post dial state and acquire wake lock while switching to "started" or "wait" 781 * state, the wake lock will be released if state switches out of "started" or "wait" 828 return c == PhoneNumberUtils.WAIT; 833 // non WAIT character index. 862 // This function returns either PAUSE or WAIT character to append [all...] |
/cts/tools/host/src/com/android/cts/ |
DeviceManager.java | 35 /** Time to wait after issuing reboot command */ 37 /** Time to wait after device reports that boot is complete. */ 302 // wait to make sure the reboot gets through before we tear down the connection 304 // TODO: this is flaky, no guarantee device has actually rebooted, host should wait till 316 // Reset the device counter semaphore. We will wait below until at least one device 325 // wait until at least one device has been added 333 // for a short time. Wait for things to stabilize. 353 deviceFound = false; // go wait for next semaphore permit 363 * Execute the given command and wait for its completion.
|
/dalvik/libcore/luni-kernel/src/main/java/java/lang/ |
ProcessManager.java | 50 * are currently no children to wait for 55 * constant communicated from native code indicating that a wait() 136 * There are no eligible children; wait for one to be 137 * added. The wait() will return due to the 141 processReferences.wait(); 151 * the native wait(). 156 throw new AssertionError("unexpected wait() behavior"); 240 * weren't previously any children to wait on. 309 exitValueMutex.wait();
|
/external/opencore/oscl/oscl/osclproc/src/ |
oscl_scheduler_readyq.cpp | 123 switch (iSem.Wait()) 137 switch (iSem.Wait(aTimeoutVal)) 176 if (iSem.Wait() != OsclProcStatus::SUCCESS_ERROR) 186 //already done a sem wait prior to this call, so there is no sem 199 {//there should always be an element available after a sem wait. 229 if (iSem.Wait() != OsclProcStatus::SUCCESS_ERROR) 288 //Wait on a particular request to complete 294 //Wait on any request to complete. 295 if (iSem.Wait() != OsclProcStatus::SUCCESS_ERROR)
|
/external/kernel-headers/original/asm-x86/ |
semaphore_32.h | 41 #include <linux/wait.h> 47 wait_queue_head_t wait; member in struct:semaphore 55 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \ 73 init_waitqueue_head(&sem->wait);
|
smp_32.h | 67 int wait); 99 int wait) 101 return smp_ops.smp_call_function_mask(mask, func, info, wait);
|
/external/opencore/baselibs/threadsafe_callback_ao/src/ |
threadsafe_queue.cpp | 21 //Only do sem wait on pre-emptive thread OS. 22 //The reason is that sem wait is not always available on 88 //Wait on the AO to be ready to be signaled. 89 iQueueReadySem.Wait(); 92 //To avoid problems under brew applet, don't do a sem wait here.
|
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_mutex.h | 95 /* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds, 96 SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. 101 the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in 141 /* Wait on the condition variable, unlocking the provided mutex.
|
/external/quake/quake/src/QW/progs/ |
doors.qc | 37 // if a door has a negative wait, it would never come back if blocked,
39 if (self.wait >= 0)
56 self.nextthink = self.ltime + self.wait;
84 { // reset top wait time
85 self.nextthink = self.ltime + self.wait;
401 TOGGLE causes the door to wait in both the start and end states for a trigger event.
405 Key doors are allways wait -1.
412 "wait" wait before returning (3 default, -1 = never return)
508 if (!self.wait)
[all...] |
/frameworks/base/core/java/android/os/ |
SystemClock.java | 47 * {@link Object#wait(long) Object.wait(millis)}, and 64 * Thread.sleep(millis)} and {@link Object#wait(long) Object.wait(millis)} 125 // call to Thread.sleep() or Object.wait() will be interrupted.
|
/frameworks/base/core/java/android/webkit/ |
HttpAuthHandler.java | 102 * synchronous request will wait for proxy.onReceivedHttpAuthRequest() to 194 // If there's a request in flight, wait for it to complete. The 204 // Wait for this request to complete. 232 * Wait for the request in flight, if any, to complete 238 mRequestInFlightLock.wait();
|
/frameworks/base/libs/rs/ |
rsLocklessFifo.cpp | 126 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
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_mutex.h | 95 /* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds, 96 SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. 101 the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in 141 /* Wait on the condition variable, unlocking the provided mutex.
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_mutex.h | 95 /* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds, 96 SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. 101 the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in 141 /* Wait on the condition variable, unlocking the provided mutex.
|
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_mutex.h | 100 /* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds, 101 SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. 106 the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in 146 /* Wait on the condition variable, unlocking the provided mutex.
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_mutex.h | 95 /* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds, 96 SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. 101 the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in 141 /* Wait on the condition variable, unlocking the provided mutex.
|
/system/core/logwrapper/ |
logwrapper.c | 19 #include <sys/wait.h> 44 " fault address is set to the status of wait()\n"); 90 if (wait(&status) != -1) { // Wait for child 101 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag,
|
/system/core/toolbox/ |
alarm.c | 23 int wait = 0; local 51 wait = 1; 150 if(wait) { 152 printf("wait for alarm %x\n", waitalarmmask); 155 fprintf(stderr, "alarm wait failed\n");
|
/external/opencore/codecs_v2/omx/omx_proxy/src/ |
omx_proxy_interface.cpp | 279 // Do not use wait/signal semaphore for queuing input/output buffers 294 // Do not use wait/signal semaphore for queuing input/output buffers 435 iInitSemOmx.Wait(); 464 iInitSemOmx.Wait(); 490 iInitSemOmx.Wait(); 516 iInitSemOmx.Wait(); 543 iInitSemOmx.Wait(); 572 iInitSemOmx.Wait(); 603 iInitSemOmx.Wait(); 632 iInitSemOmx.Wait(); [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
CountDownTimerTest.java | 138 * Wait for an action to complete. 140 * @param time The time to wait. 146 fail("error occurs when wait for an action: " + e.toString());
|
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
ExchangerTest.java | 107 * interrupt during wait for exchange throws IE 131 * interrupt during wait for timed exchange throws IE 156 * timeout during wait for timed exchange throws TOE
|
/external/dbus/bus/ |
bus.h | 53 int activation_timeout; /**< How long to wait for an activation to time out */ 54 int auth_timeout; /**< How long to wait for an authentication to time out */ 62 int reply_timeout; /**< How long to wait before timing out a reply */
|