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

123

/external/openssh/openbsd-compat/
H A Dbsd-nextstep.h41 /* Swap out NeXT's BSD wait() for a more POSIX complient one */
43 #define wait(a) posix_wait(a) macro
H A Dbsd-nextstep.c29 #include <sys/wait.h>
35 union wait statusp;
38 #undef wait /* Use NeXT's wait() function */ macro
39 wait_pid = wait(&statusp);
/external/kernel-headers/original/linux/
H A Dkmod.h40 struct key *session_keyring, int wait);
43 call_usermodehelper(char *path, char **argv, char **envp, int wait) argument
45 return call_usermodehelper_keys(path, argv, envp, NULL, wait);
H A Dcompletion.h7 * Atomic wait-for-completion handler data structures.
11 #include <linux/wait.h>
15 wait_queue_head_t wait; member in struct:completion
19 { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
42 init_waitqueue_head(&x->wait);
H A Dmempool.h7 #include <linux/wait.h>
23 wait_queue_head_t wait; member in struct:mempool_s
H A Dhidraw.h52 wait_queue_head_t wait; member in struct:hidraw
H A Didle_stats_device.h58 wait_queue_head_t wait; member in struct:msm_idle_stats_device
/external/llvm/lib/Support/
H A DGraphWriter.cpp59 const sys::Path &Filename, bool wait, std::string &ErrMsg) {
60 if (wait) {
75 void llvm::DisplayGraph(const sys::Path &Filename, bool wait, argument
77 wait &= !ViewBackground;
88 if (!ExecGraphViewer(Graphviz, args, Filename, wait, ErrMsg))
107 if (!ExecGraphViewer(sys::Path(LLVM_PATH_XDOT_PY), args, Filename, wait, ErrMsg))
168 if (!ExecGraphViewer(prog, args, Filename, wait, ErrMsg))
179 if (!ExecGraphViewer(gv, args, PSFilename, wait, ErrMsg))
190 // Dotty spawns another app and doesn't wait until it returns
192 wait
58 ExecGraphViewer(const sys::Path &ExecPath, std::vector<const char*> &args, const sys::Path &Filename, bool wait, std::string &ErrMsg) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCCompletionEvent.h44 void wait() function in class:WebCore::CCCompletionEvent
46 m_condition.wait(m_mutex);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DBinarySemaphore.cpp50 bool BinarySemaphore::wait(double absoluteTime) function in class:CoreIPC::BinarySemaphore
/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
H A DBinarySemaphoreWin.cpp46 bool BinarySemaphore::wait(double absoluteTime) function in class:CoreIPC::BinarySemaphore
50 // Consider the wait to have timed out, even if the event has already been signaled, to
62 // The wait timed out.
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DCondVar.cpp71 ** Function: wait
73 ** Description: Block the caller and wait for a condition.
78 void CondVar::wait (Mutex& mutex) function in class:CondVar
83 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
90 ** Function: wait
92 ** Description: Block the caller and wait for a condition.
95 ** Returns: True if wait is successful; false if timeout occurs.
98 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar
105 ALOGE ("CondVar::wait
[all...]
H A DSyncEvent.h63 ** Function: wait
65 ** Description: Block the thread and wait for the event to occur.
70 void wait () function in class:SyncEvent
72 mCondVar.wait (mMutex);
78 ** Function: wait
80 ** Description: Block the thread and wait for the event to occur.
83 ** Returns: True if wait is successful; false if timeout occurs.
86 bool wait (long millisec) function in class:SyncEvent
88 bool retVal = mCondVar.wait (mMutex, millisec);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsignalthread.cc76 void SignalThread::Destroy(bool wait) { argument
87 if (wait) {
/external/kernel-headers/original/asm-arm/
H A Dsemaphore.h9 #include <linux/wait.h>
18 wait_queue_head_t wait; member in struct:semaphore
24 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait), \
37 init_waitqueue_head(&sem->wait);
/external/kernel-headers/original/asm-x86/
H A Dsemaphore_32.h41 #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);
H A Dsmp_32.h67 int wait);
99 int wait)
101 return smp_ops.smp_call_function_mask(mask, func, info, wait);
97 smp_call_function_mask(cpumask_t mask, void (*func) (void *info), void *info, int wait) argument
/external/qemu/hw/
H A Dmips_timer.c36 uint32_t wait; local
39 wait = env->CP0_Compare - env->CP0_Count -
41 next = now + muldiv64(wait, get_ticks_per_sec(), TIMER_FREQ);
/external/webkit/Source/JavaScriptCore/wtf/
H A DThreadingNone.cpp53 void ThreadCondition::wait(Mutex&) { } function in class:WTF::ThreadCondition
/external/arduino/libraries/Wire/utility/
H A Dtwi.c123 // wait until twi is ready, become master receiver
147 // wait for read operation to complete
170 * wait: boolean indicating to wait for write or not
177 uint8_t twi_writeTo(uint8_t address, uint8_t* data, uint8_t length, uint8_t wait) argument
186 // wait until twi is ready, become master transmitter
210 // wait for write operation to complete
211 while(wait && (TWI_MTX == twi_state)){
307 // wait for stop condition to be exectued on bus
/external/junit/src/junit/textui/
H A DTestRunner.java16 * java junit.textui.TestRunner [-wait] TestCaseClass
24 * <p> 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;
155 boolean wait= false;
158 if (args[i].equals("-wait"))
159 wait= true;
174 throw new Exception("Usage: TestRunner [-wait] testCaseNam
186 runSingleMethod(String testCase, String method, boolean wait) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/thread/
H A DSDL_thread.c176 SDL_sem *wait; member in struct:__anon10539
201 SDL_SemPost(args->wait);
237 args->wait = SDL_CreateSemaphore(0);
238 if ( args->wait == NULL ) {
255 SDL_SemWait(args->wait);
262 SDL_DestroySemaphore(args->wait);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dtarget.h65 unsigned char (*wait) (char *status); member in struct:target_ops
147 (*the_target->wait) (statusp)
/external/valgrind/main/drd/tests/
H A Dmonitor_example.cpp116 void wait() function in class:Monitor
195 void wait(const int state) function in class:StateVariable
199 m_monitor.wait();
213 s_sv.wait(1);
215 s_sv.wait(3);
225 s_sv.wait(2);
227 s_sv.wait(4);
/external/valgrind/unittest/
H A Dtest_utils.h124 // This class does not implement a signal-wait synchronization
129 // synchronization primitive before signal() or after wait().
141 void wait() { function in class:StealthNotification

Completed in 352 milliseconds

123