HomeSort by relevance Sort by last modified time
    Searched full:waiting (Results 1 - 25 of 1275) 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/chromium/third_party/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/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/clearsilver/man/man3/
cBroadcast.3 14 cBroadcast - broadcast signal to all waiting threads.
28 Broadcasts a signal to all threads waiting on condition
cSignal.3 14 cSignal - send signal to one waiting thread.
28 Sends a signal to one thread waiting on condition
  /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...]
  /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...]
  /external/chromium/net/base/
load_states.h 14 // either not yet begun or is idle waiting for the consumer to do something
19 // This state corresponds to a resource load that is blocked waiting for
26 // This state corresponds to a resource load that is blocked waiting for a
32 // This state corresponds to a resource load that is blocked waiting for a
38 // 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 to
49 // This state corresponds to a resource load that is blocked waiting for the
55 // This state corresponds to a resource load that is blocked waiting for a
  /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 */
  /libcore/sqlite-jdbc/src/main/java/SQLite/
BusyHandler.java 11 * or thread. The method should return true for waiting
  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 17 * <em>cyclic</em> because it can be re-used after the waiting threads
88 * other threads waiting at that barrier point will also leave
111 * may be allocated to waiting threads - but only one of these
133 * Number of parties still waiting. Counts down from parties to 0
208 // We're about to finish waiting even if we had not
233 * given number of parties (threads) are waiting upon it, and which
252 * given number of parties (threads) are waiting upon it, and
284 * one of the other waiting threads; or
285 * <li>Some other thread times out while waiting for barrier; or
292 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
    [all...]
  /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/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.
  /frameworks/base/services/java/com/android/server/am/
AppWaitingForDebuggerDialog.java 49 text.append(" is waiting for the debugger to attach.");
53 setTitle("Waiting For Debugger");
54 getWindow().setTitle("Waiting For Debugger: " + app.info.processName);
PendingThumbnailsRecord.java 25 * waiting for thumbnail images.
29 final IThumbnailReceiver receiver; // who is waiting.
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIStatus.java 39 waiting (3),
60 * waiting
62 WAITING(3),
  /system/extras/tests/bionic/libc/bionic/
test_pthread_cond.c 16 printf("1 waiting for cond1\n");
28 printf("2 waiting for cond2\n");
41 printf("3 waiting for cond1\n");
  /dalvik/tests/030-bad-finalizer/src/
Main.java 22 System.out.println("Done waiting.");
  /external/chromium/base/
condition_variable.h 12 // would have a pool manager waiting on a ConditionVariable, waiting for a
16 // workers are waiting.
31 // be spurious signals. Recheck state on waiting thread before
34 // USAGE NOTE 2: Broadcast() frees up all waiting threads at once,
47 // threads that were waiting when the request was made will indeed
50 // a while while waiting threads come around). This implementation
95 // Broadcast() revives all waiting threads.
97 // Signal() revives one waiting thread.
  /libcore/luni/src/main/java/java/lang/
InterruptedException.java 21 * Thrown when a waiting thread is activated before the condition it was waiting
  /system/core/libsysutils/src/
ServiceManager.cpp 28 SLOGW("Timed out waiting for service '%s' to start", name);
53 SLOGW("Timed out waiting for service '%s' to stop", name);

Completed in 1219 milliseconds

1 2 3 4 5 6 7 8 91011>>