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

1234

/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/fio/lib/
H A Dtp.h12 int wait; member in struct:tp_work
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DCondVar.cpp75 ** 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 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/mesa3d/src/gallium/drivers/i915/
H A Di915_query.c67 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 Dlp_scene_queue.c90 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait) argument
100 wait );
H A Dlp_query.c87 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 Dr600_query.c62 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 DSkCondVar.cpp78 void SkCondVar::wait() { function in class:SkCondVar
H A DSkThreadUtils_pthread.cpp30 void PThreadEvent::wait() { function in class:PThreadEvent
62 pthreadData->fStarted.wait();
/external/kernel-headers/original/uapi/linux/
H A Ddlm_plock.h32 __u8 wait; member in struct:dlm_plock_info
/external/lldb/test/pexpect-2.4/examples/
H A Dchess2.py70 def wait (self, color): member in class:Chess
118 white.wait ('Black')
123 black.wait ('White')
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_query.c137 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 Dsp_query.c159 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 Dsvga_pipe_query.c65 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 Devent.cpp118 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 DAndroid_debug_config.mk106 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 Dminidump_generator_test.cc82 bool* wait = reinterpret_cast<bool*>(data); local
83 while (!*wait) {
/external/iptables/iptables/
H A Dxshared.c246 bool xtables_lock(bool wait) argument
264 else if (wait == false)
/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/libcxx/src/
H A Dfuture.cpp163 __assoc_sub_state::wait() function in class:__assoc_sub_state
182 __cv_.wait(__lk);
/external/llvm/lib/Support/
H A DGraphWriter.cpp82 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 Dnv30_query.c199 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 DsemanagePage.py65 def wait(self): member in class:semanagePage

Completed in 876 milliseconds

1234