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

1 2 3 4 5 6 7 8

  /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);
service_process_util_posix.h 19 MultiProcessLock* TakeServiceRunningLock(bool waiting);
  /external/chromium_org/chrome/browser/web_resource/
resource_request_allowed_notifier.h 69 void SetWaitingForNetworkForTesting(bool waiting);
70 void SetWaitingForEulaForTesting(bool waiting);
resource_request_allowed_notifier.cc 62 bool waiting) {
63 waiting_for_network_ = waiting;
67 bool waiting) {
68 waiting_for_user_to_accept_eula_ = waiting;
92 // This flag should have been set if this was waiting on the EULA
102 // Only attempt to notify observers if this was previously waiting for the
105 // waiting on the network, or if the network changes from one online state
resource_request_allowed_notifier_unittest.cc 97 void SetWaitingForNetwork(bool waiting) {
98 resource_request_allowed_notifier_.SetWaitingForNetworkForTesting(waiting);
122 void SetWaitingForEula(bool waiting) {
123 resource_request_allowed_notifier_.SetWaitingForEulaForTesting(waiting);
139 // Set default EULA state to done (not waiting and EULA accepted) to
  /external/qemu/distrib/sdl-1.2.15/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.15/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.15/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...]
  /bionic/libstdc++/src/
one_time_construction.cpp 49 const static int waiting = 0x6; variable
65 const static int waiting = letoh32(0x10000); variable
71 // pending -> waiting, wait and return 0
72 // waiting: untouched, wait and return 0
80 __bionic_cmpxchg(pending, waiting, &gv->state); // Indicate there is a waiter
81 __futex_wait(&gv->state, waiting, NULL);
93 // waiting -> ready, and wake
  /external/chromium_org/chrome/common/
service_process_util_linux.cc 21 MultiProcessLock* TakeServiceInitializingLock(bool waiting) {
24 return TakeNamedLock(lock_name, waiting);
36 MultiProcessLock* TakeServiceRunningLock(bool waiting) {
39 return TakeNamedLock(lock_name, waiting);
service_process_util.h 52 // Attempts to take a lock named |name|. If |waiting| is true then this will
55 MultiProcessLock* TakeNamedLock(const std::string& name, bool waiting);
service_process_util_posix.h 19 MultiProcessLock* TakeServiceRunningLock(bool waiting);
  /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/chromium_org/chrome/browser/ui/webui/ntp/
new_tab_page_sync_handler_browsertest.cc 30 void SetWaitingForInitialPageLoad(bool waiting) {
31 waiting_for_initial_page_load_ = waiting;
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 62 boolean waiting; field in class:AsyncTaskLoader.LoadTask
109 /* Runs on the UI thread, when the waiting task is posted to a handler.
110 * This method is only executed when task execution was deferred (waiting was true). */
113 waiting = false;
174 // There was a pending task already waiting for a previous
177 "cancelLoad: still waiting for cancelled task; dropping next");
178 if (mTask.waiting) {
179 mTask.waiting = false;
184 } else if (mTask.waiting) {
185 // There is a task, but it is waiting for the time it shoul
    [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...]
  /frameworks/base/services/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");
  /external/valgrind/main/helgrind/tests/
bar_bad.stderr.exp 29 initialise a barrier which has threads waiting on it
38 Thread #x: pthread_barrier_init: threads are waiting at barrier
43 destroy a barrier that has waiting threads
46 Thread #x: pthread_barrier_destroy: threads are waiting at barrier
  /packages/apps/Email/src/com/android/email/
EmailConnectivityManager.java 48 // Loop time while waiting (stopgap in case we don't get a broadcast)
56 // The monitor lock we use while waiting for connectivity
66 // The thread waiting for connectivity
174 boolean waiting = false;
183 if (waiting) {
190 if (!waiting) {
192 LogUtils.d(TAG, mName + ": Connectivity waiting...");
194 waiting = true;
  /external/chromium_org/ui/compositor/
layer_animation_sequence.h 53 void set_waiting_for_group_start(bool waiting) {
54 waiting_for_group_start_ = waiting;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 62 verbose_print("waiting for tasks to complete...")
101 verbose_print("waiting for all tasks to complete")
160 self.waiting = 0
167 self.waiting = self.waiting + 1
168 if self.waiting == self.num_threads:
169 self.waiting = self.num_threads - 1
175 self.waiting = self.waiting - 1
176 if self.waiting == 0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 62 verbose_print("waiting for tasks to complete...")
101 verbose_print("waiting for all tasks to complete")
160 self.waiting = 0
167 self.waiting = self.waiting + 1
168 if self.waiting == self.num_threads:
169 self.waiting = self.num_threads - 1
175 self.waiting = self.waiting - 1
176 if self.waiting == 0
    [all...]
  /external/linux-tools-perf/util/
run-command.c 158 pid_t waiting = waitpid(pid, &status, 0); local
160 if (waiting < 0) {
166 if (waiting != pid)
  /cts/hostsidetests/holo/src/android/holo/cts/
HoloHostTest.java 230 boolean waiting = true;
231 while (waiting) {
242 waiting = false;
245 waiting = false;
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 15 // We are waiting for the tab we opened to finish loading.
21 // Passing the above test means this is the event we were waiting for.

Completed in 1690 milliseconds

1 2 3 4 5 6 7 8