/external/openssh/openbsd-compat/ |
H A D | bsd-nextstep.h | 41 /* Swap out NeXT's BSD wait() for a more POSIX complient one */ 43 #define wait(a) posix_wait(a) macro
|
H A D | bsd-nextstep.c | 29 #include <sys/wait.h> 35 union wait statusp; 38 #undef wait /* Use NeXT's wait() function */ macro 39 wait_pid = wait(&statusp);
|
/external/fio/lib/ |
H A D | tp.h | 12 int wait; member in struct:tp_work
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
H A D | CondVar.cpp | 75 ** Function: wait 77 ** Description: Block the caller and wait for a condition. 82 void CondVar::wait (Mutex& mutex) function in class:CondVar 87 ALOGE ("CondVar::wait: fail wait; error=0x%X", res); 94 ** Function: wait 96 ** Description: Block the caller and wait for a condition. 99 ** Returns: True if wait is successful; false if timeout occurs. 102 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar 109 ALOGE ("CondVar::wait [all...] |
H A D | SyncEvent.h | 63 ** 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/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_query.c | 67 boolean wait, 65 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_scene_queue.c | 90 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait) argument 100 wait );
|
H A D | lp_query.c | 87 boolean wait, 104 if (!wait) 161 boolean b, wait; local 166 wait = (lp->render_cond_mode == PIPE_RENDER_COND_WAIT || 169 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result); 85 llvmpipe_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | r600_query.c | 62 boolean wait, union pipe_query_result *vresult) 67 return r600_context_query_result(rctx, rquery, wait, vresult); 60 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
|
/external/skia/src/utils/ |
H A D | SkCondVar.cpp | 78 void SkCondVar::wait() { function in class:SkCondVar
|
H A D | SkThreadUtils_pthread.cpp | 30 void PThreadEvent::wait() { function in class:PThreadEvent 62 pthreadData->fStarted.wait();
|
/external/kernel-headers/original/uapi/linux/ |
H A D | dlm_plock.h | 32 __u8 wait; member in struct:dlm_plock_info
|
/external/lldb/test/pexpect-2.4/examples/ |
H A D | chess2.py | 70 def wait (self, color): member in class:Chess 118 white.wait ('Black') 123 black.wait ('White')
|
/external/mesa3d/src/gallium/drivers/r300/ |
H A D | r300_query.c | 137 boolean wait, 146 if (wait) { 157 (!wait ? PIPE_TRANSFER_DONTBLOCK : 0)); 185 boolean wait; local 190 wait = mode == PIPE_RENDER_COND_WAIT || 193 if (r300_get_query_result(pipe, query, wait, &result)) { 135 r300_get_query_result(struct pipe_context* pipe, struct pipe_query* query, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_query.c | 159 boolean wait, 204 boolean b, wait; local 211 wait = (sp->render_cond_mode == PIPE_RENDER_COND_WAIT || 214 b = pipe->get_query_result(pipe, sp->render_cond_query, wait, 157 softpipe_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_pipe_query.c | 65 boolean wait, 103 * The reason is that we don't want to wait for fences when checking the 153 * determines the query result. So the only option here is to wait for 209 boolean wait, 219 SVGA_DBG(DEBUG_QUERY, "%s wait: %d\n", __FUNCTION__); 223 * synchronous wait on the host */ 241 if(!wait) 207 svga_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
H A D | event.cpp | 118 hard_event::wait() const { function in class:hard_event 169 soft_event::wait() const { function in class:soft_event 171 ev->wait();
|
/external/apache-harmony/jdwp/ |
H A D | Android_debug_config.mk | 106 define wait-for-boot-complete 108 $(hide) while [ `adb wait-for-device shell getprop dev.bootcomplete | grep -c 1` -eq 0 ]; \ 126 adb wait-for-device shell stop 130 $$(call wait-for-boot-complete)
|
/external/google-breakpad/src/client/mac/tests/ |
H A D | minidump_generator_test.cc | 82 bool* wait = reinterpret_cast<bool*>(data); local 83 while (!*wait) {
|
/external/iptables/iptables/ |
H A D | xshared.c | 246 bool xtables_lock(bool wait) argument 264 else if (wait == false)
|
/external/junit/src/junit/textui/ |
H A D | TestRunner.java | 16 * 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/libcxx/src/ |
H A D | future.cpp | 163 __assoc_sub_state::wait() function in class:__assoc_sub_state 182 __cv_.wait(__lk);
|
/external/llvm/lib/Support/ |
H A D | GraphWriter.cpp | 82 StringRef Filename, bool wait, 85 if (wait) { 135 bool llvm::DisplayGraph(StringRef FilenameRef, bool wait, argument 138 wait &= !ViewBackground; 147 if (wait) 152 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) 162 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) 174 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); 189 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); 222 if (ExecGraphViewer(GeneratorPath, args, Filename, wait, ErrMs 81 ExecGraphViewer(StringRef ExecPath, std::vector<const char *> &args, StringRef Filename, bool wait, std::string &ErrMsg) argument [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
H A D | nv30_query.c | 199 boolean wait, union pipe_query_result *result) 209 if (!wait) 198 nv30_query_result(struct pipe_context *pipe, struct pipe_query *pq, boolean wait, union pipe_query_result *result) argument
|
/external/selinux/policycoreutils/gui/ |
H A D | semanagePage.py | 65 def wait(self): member in class:semanagePage
|