HomeSort by relevance Sort by last modified time
    Searched defs:waiting (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/swiftshader/src/Common/
DebugAndroid.cpp 32 ALOGE("Waiting for debugger: gdbserver :${PORT} --attach %u. Look for thread %u", getpid(), gettid());
33 volatile int waiting = 1; local
34 while (waiting) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
11-1.c 31 int waiting = 1; variable
37 waiting = 0;
87 waiting = 1;
89 while (waiting) {
  /external/mesa3d/src/gallium/tests/unit/
pipe_barrier_test.c 53 static volatile int waiting = 0; variable
78 p_atomic_inc(&waiting);
82 CHECK(p_atomic_read(&waiting) == NUM_THREADS);
  /external/squashfs-tools/squashfs-tools/
info.c 104 printf("locked frag queue (compressed frags waiting while multi-block"
115 printf("block write cache (compressed blocks waiting for the writer"
118 printf("fragment write cache (compressed fragments waiting for the"
122 printf("fragment cache (frags waiting to be compressed by fragment"
137 int sig, err, waiting = 0; local
157 if(sig == SIGQUIT && !waiting) {
162 waiting = 1;
167 waiting = 0;
unsquashfs_info.c 100 int sig, err, waiting = 0; local
120 if(sig == SIGQUIT && !waiting) {
126 waiting = 1;
131 waiting = 0;
  /external/ltp/testcases/open_posix_testsuite/functional/semaphores/
sem_sleepingbarber.c 33 int waiting = 0; variable
61 if (waiting == 0) {
63 ("There are no more customers waiting, barber will sleep.\n");
77 if (waiting >= 1)
78 waiting--;
80 ("A customer sits in the barber's chair and get a hair cut. %d customers left waiting.\n",
81 waiting);
108 if (waiting < CHAIR_NUM) {
109 waiting = waiting + 1
    [all...]
  /external/python/cpython3/Python/
condvar.h 22 * already waiting in a PyCOND_WAIT() call. It _could_ cause
25 * The same applies to PyCOND_BROADCAST(), if N threads are waiting
27 * those already waiting.
148 condition between releasing the outer lock and waiting) because it
154 waiting, we need to keep track of the number of
155 waiting threads. Otherwise, the semaphore's state could rise
161 waiting. It corresponds to listing 2 in:
208 int waiting; /* to allow PyCOND_SIGNAL to be a no-op */ member in struct:_PyCOND_T
221 cv->waiting = 0;
238 cv->waiting++
299 int waiting = cv->waiting; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ContentProviderConnection.java 32 // The client of this connection is currently waiting for the provider to appear.
34 public boolean waiting; field in class:ContentProviderConnection
84 if (waiting) {
85 sb.append(" WAITING");
  /prebuilts/tools/common/m2/repository/org/gebish/geb-waiting/0.9.3/
geb-waiting-0.9.3.jar 
  /external/libevent/
evthread_win32.c 238 int waiting = 1; local
261 waiting = 0;
266 waiting = 0;
273 waiting = 0;
279 /* If we make it here, we are still waiting. */
287 } while (waiting);
  /external/squashfs-tools/kernel/include/linux/
squashfs_fs_sb.h 35 int waiting; member in struct:squashfs_cache_entry
45 int waiting; member in struct:squashfs_cache
  /external/ltp/testcases/misc/math/fptests/
fptest01.c 84 int waiting[EVENTMX]; /* array of waiting processors */ variable
85 int nwaiting; /* number of waiting processors */
243 add a processor to the waiting queue
247 waiting[++nwaiting] = p;
252 remove the next processor from the waiting queue
257 return (waiting[nwaiting--]);
fptest02.c 84 int waiting[EVENTMX]; /* array of waiting processors */ variable
85 int nwaiting; /* number of waiting processors */
224 add a processor to the waiting queue
228 waiting[++nwaiting] = p;
233 remove the next processor from the waiting queue
238 return (waiting[nwaiting--]);
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
stats_ops.cc 145 // acquired, put it in a waiting queue to come back to later and try the next
146 // one. Once all leaf_ids have been visited, cycle through the waiting ids
157 // Stores leaf_id, leaf_depth, example_id for examples that are waiting
159 std::queue<std::tuple<int32, int32>> waiting; local
162 while (i < end || !waiting.empty()) {
167 std::tie(leaf_id, example_id) = waiting.front();
168 waiting.pop();
180 waiting.emplace(leaf_id, example_id);
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 66 boolean waiting; field in class:AsyncTaskLoader.LoadTask
113 /* Runs on the UI thread, when the waiting task is posted to a handler.
114 * This method is only executed when task execution was deferred (waiting was true). */
117 waiting = false;
181 // There was a pending task already waiting for a previous
184 "cancelLoad: still waiting for cancelled task; dropping next");
185 if (mTask.waiting) {
186 mTask.waiting = false;
191 } else if (mTask.waiting) {
192 // There is a task, but it is waiting for the time it shoul
    [all...]
  /frameworks/support/loader/src/main/java/androidx/loader/content/
AsyncTaskLoader.java 53 boolean waiting; field in class:AsyncTaskLoader.LoadTask
100 /* Runs on the UI thread, when the waiting task is posted to a handler.
101 * This method is only executed when task execution was deferred (waiting was true). */
104 waiting = false;
167 // There was a pending task already waiting for a previous
170 "cancelLoad: still waiting for cancelled task; dropping next");
171 if (mTask.waiting) {
172 mTask.waiting = false;
177 } else if (mTask.waiting) {
178 // There is a task, but it is waiting for the time it shoul
    [all...]
  /external/oj-libjdwp/src/share/back/
eventHelper.c 102 jboolean waiting; member in struct:HelperCommand
165 command->waiting = wait;
207 if (command->waiting) {
210 log_debugee_location("completeCommand(): HelperCommand done waiting", NULL, NULL, 0);
986 * suspended or if the VM is about to die. (Waiting in the latter
    [all...]
  /frameworks/base/core/java/android/provider/
FontsContract.java 352 final AtomicBoolean waiting = new AtomicBoolean(true); local
371 waiting.set(false);
384 if (!waiting.get()) {
393 if (!waiting.get()) {
    [all...]
  /external/ppp/pppd/
main.c 154 int childwait_done; /* have timed out waiting for children */
183 static int waiting; variable
519 waiting = 0;
629 dbglog("Waiting for %d child processes...", n_children);
658 waiting = 1;
663 waiting = 0;
    [all...]
  /external/freetype/src/raster/
ftraster.c 2662 TProfileList waiting; local
    [all...]
  /external/selinux/libsepol/cil/src/
cil_resolve_ast.c 1412 int waiting = 1; local
    [all...]
  /external/valgrind/helgrind/
hg_main.c 2947 XArray* waiting; \/* XA of Thread*. # present is 0 .. .size *\/ member in struct:__anon42665
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.jobs_3.7.0.v20150330-2103.jar 

Completed in 794 milliseconds

1 2 3 4 5 6