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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/053-wait-some/
expected.txt 2 Waiting for 200ms...
3 Waiting for 500ms...
4 Waiting for 1000ms...
5 Waiting for 2000ms...
6 Waiting for 3500ms...
7 Waiting for 8000ms...
  /dalvik/tests/063-process-manager/
expected.txt 7 process manager: WAITING
13 process manager: WAITING
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 21 HEAD, /* i: waiting for magic header */
22 FLAGS, /* i: waiting for method and flags (gzip) */
23 TIME, /* i: waiting for modification time (gzip) */
24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
27 NAME, /* i: waiting for end of file name (gzip) */
28 COMMENT, /* i: waiting for end of comment (gzip) */
29 HCRC, /* i: waiting for header crc (gzip) */
30 DICTID, /* i: waiting for dictionary check value *
    [all...]
  /external/zlib/
inflate.h 21 HEAD, /* i: waiting for magic header */
22 FLAGS, /* i: waiting for method and flags (gzip) */
23 TIME, /* i: waiting for modification time (gzip) */
24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
27 NAME, /* i: waiting for end of file name (gzip) */
28 COMMENT, /* i: waiting for end of comment (gzip) */
29 HCRC, /* i: waiting for header crc (gzip) */
30 DICTID, /* i: waiting for dictionary check value *
    [all...]
  /external/valgrind/main/docs/internals/
tm-threadstates.dot 32 wait_mutex -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ];
33 wait_mutex -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ];
37 wait_condvar -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
38 wait_condvar -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ];
42 wait_join -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ];
43 wait_join -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
  /external/valgrind/main/memcheck/tests/linux/
timerfd-syscall.stderr.exp 9 waiting timer ...
12 waiting timer ...
19 waiting timer ...
22 waiting timer (flush the single tick) ...
32 waiting timer ...
35 waiting timer ...
42 waiting timer ...
45 waiting timer (flush the single tick) ...
  /external/webkit/LayoutTests/fast/dom/Geolocation/
delayed-permission-allowed-for-multiple-requests-expected.txt 1 Tests that when multiple requests are waiting for permission, no callbacks are invoked until permission is allowed.
delayed-permission-denied-for-multiple-requests-expected.txt 1 Tests that when multiple requests are waiting for permission, no callbacks are invoked until permission is denied.
  /external/chromium/chrome/common/
service_process_util_linux.cc 19 // Attempts to take a lock named |name|. If |waiting| is true then this will
22 MultiProcessLock* TakeNamedLock(const std::string& name, bool waiting) {
31 if (!waiting) break;
40 MultiProcessLock* TakeServiceInitializingLock(bool waiting) {
43 return TakeNamedLock(lock_name, waiting);
55 MultiProcessLock* TakeServiceRunningLock(bool waiting) {
58 return TakeNamedLock(lock_name, waiting);
  /external/chromium/net/base/
load_states.h 15 // either not yet begun or is idle waiting for the consumer to do something
20 // This state corresponds to a resource load that is blocked waiting for
27 // This state corresponds to a resource load that is blocked waiting for a
37 // This state corresponds to a resource load that is blocked waiting for a
43 // This state corresponds to a resource load that is blocked waiting for a
48 // This state corresponds to a resource load that is blocked waiting for the
52 // This state corresponds to a resource load that is blocked waiting to
58 // This state corresponds to a resource load that is blocked waiting for the
64 // This state corresponds to a resource load that is blocked waiting for a
  /external/qemu/distrib/sdl-1.2.12/src/thread/dc/
SDL_syscond.c 35 int waiting; member in struct:SDL_cond
51 cond->waiting = cond->signals = 0;
79 /* Restart one of the threads that are waiting on the condition variable */
87 /* If there are waiting threads not already signalled, then
91 if ( cond->waiting > cond->signals ) {
103 /* Restart all threads that are waiting on the condition variable */
111 /* If there are waiting threads not already signalled, then
115 if ( cond->waiting > cond->signals ) {
118 num_waiting = (cond->waiting - cond->signals);
119 cond->signals = cond->waiting;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/generic/
SDL_syscond.c 35 int waiting; member in struct:SDL_cond
51 cond->waiting = cond->signals = 0;
79 /* Restart one of the threads that are waiting on the condition variable */
87 /* If there are waiting threads not already signalled, then
91 if ( cond->waiting > cond->signals ) {
103 /* Restart all threads that are waiting on the condition variable */
111 /* If there are waiting threads not already signalled, then
115 if ( cond->waiting > cond->signals ) {
118 num_waiting = (cond->waiting - cond->signals);
119 cond->signals = cond->waiting;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_syscond.c 35 int waiting; member in struct:SDL_cond
51 cond->waiting = cond->signals = 0;
79 /* Restart one of the threads that are waiting on the condition variable */
87 /* If there are waiting threads not already signalled, then
91 if ( cond->waiting > cond->signals ) {
103 /* Restart all threads that are waiting on the condition variable */
111 /* If there are waiting threads not already signalled, then
115 if ( cond->waiting > cond->signals ) {
118 num_waiting = (cond->waiting - cond->signals);
119 cond->signals = cond->waiting;
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
AsyncTaskLoader.java 43 boolean waiting; field in class:AsyncTaskLoader.LoadTask
79 waiting = false;
138 // There was a pending task already waiting for a previous
141 "cancelLoad: still waiting for cancelled task; dropping next");
142 if (mTask.waiting) {
143 mTask.waiting = false;
148 } else if (mTask.waiting) {
149 // There is a task, but it is waiting for the time it should
151 if (DEBUG) Log.v(TAG, "cancelLoad: task is waiting, dropping it");
152 mTask.waiting = false
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 39 * Represents a thread waiting for a connection.
42 * waiting thread experiences a spurious wakeup and continues to wait.
52 /** The condition on which the thread is waiting. */
55 /** The route specific pool on which the thread is waiting. */
59 /** The thread that is waiting for an entry. */
67 * Creates a new entry for a waiting thread.
70 * @param pool the pool on which the thread will be waiting,
98 * @return the pool on which a thread is or was waiting,
110 * @return the thread which is waiting, or <code>null</code>
133 * @throws InterruptedException if the waiting thread was interrupte
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
eventsource-reconnect-during-navigate-crash.html 3 <p>Navigate while an EventSource reconnect timer is waiting, then have the reconnect timer trigger before the page unloads. We pass if we don't crash.
  /external/javasqlite/src/main/java/SQLite/
BusyHandler.java 11 * or thread. The method should return true for waiting
  /external/junit/src/org/junit/runners/model/
RunnerScheduler.java 18 * waiting for them all to finish)
  /external/zlib/contrib/infback9/
inflate9.h 13 TYPE, /* i: waiting for type bits, including last-flag bit */
14 STORED, /* i: waiting for stored size (length and complement) */
15 TABLE, /* i: waiting for dynamic block table lengths */
16 LEN, /* i: waiting for length/lit code */
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
messages.properties 12 NdkGdbLaunchDelegate_Action_WaitGdbServerAttach=Waiting for gdbserver to attach to process
13 NdkGdbLaunchDelegate_Action_WaitingForActivity=Waiting for activity to be launched
20 NdkGdbLaunchDelegate_LaunchError_InterruptedWaitingForGdbserver=Interrupted while waiting for gdbserver to attach
  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 15 * <em>cyclic</em> because it can be re-used after the waiting threads
86 * other threads waiting at that barrier point will also leave
109 * may be allocated to waiting threads - but only one of these
131 * Number of parties still waiting. Counts down from parties to 0
206 // We're about to finish waiting even if we had not
231 * given number of parties (threads) are waiting upon it, and which
250 * given number of parties (threads) are waiting upon it, and
282 * one of the other waiting threads; or
283 * <li>Some other thread times out while waiting for barrier; or
290 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
    [all...]
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 61 boolean waiting; field in class:AsyncTaskLoader.LoadTask
108 /* Runs on the UI thread, when the waiting task is posted to a handler.
109 * This method is only executed when task execution was deferred (waiting was true). */
112 waiting = false;
165 // There was a pending task already waiting for a previous
168 "cancelLoad: still waiting for cancelled task; dropping next");
169 if (mTask.waiting) {
170 mTask.waiting = false;
175 } else if (mTask.waiting) {
176 // There is a task, but it is waiting for the time it shoul
    [all...]
  /bionic/libstdc++/src/
one_time_construction.cpp 51 const static int waiting = 0x6; variable
67 const static int waiting = letoh32(0x10000); variable
73 // pending -> waiting, wait and return 0
74 // waiting: untouched, wait and return 0
82 __bionic_cmpxchg(pending, waiting, &gv->state); // Indicate there is a waiter
83 __futex_wait(&gv->state, waiting, NULL);
95 // waiting -> ready, and wake
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSmsAddress.java 96 * Returns true of this is a valid CPHS voice message waiting indicator
126 * Returns true if this is a valid CPHS voice message waiting indicator
128 * waiting"
131 // 0x11 means "set" "voice message waiting" "indicator 1"
138 * Returns true if this is a valid CPHS voice message waiting indicator
140 * waiting"
143 // 0x10 means "clear" "voice message waiting" "indicator 1"
  /external/webkit/Source/WebCore/manual-tests/
video-waiting-seeking.html 13 consoleWrite("Warining: Seeking into buffered region. May not generate waiting or seeking events.");
55 waitForEvent('waiting');
71 should cause a waiting and seeking event to be fired for each seek.

Completed in 2294 milliseconds

1 2 3 4 5 6 7 8 91011>>