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

1 2 3 4 5 6 7 8 910

  /bionic/libc/bionic/
__cxa_guard.cpp 58 const static int waiting = 0x6; variable
71 const static int waiting = letoh32(0x10000); variable
76 // pending -> waiting, wait and return 0
77 // waiting: untouched, wait and return 0
85 __bionic_cmpxchg(pending, waiting, &gv->state); // Indicate there is a waiter
86 __futex_wait(&gv->state, waiting, NULL);
99 // waiting -> ready, and wake
  /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...]
  /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);
  /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/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");
  /external/chromium_org/content/child/service_worker/
service_worker_provider_context.cc 45 ServiceWorkerHandleReference* ServiceWorkerProviderContext::waiting() { function in class:content::ServiceWorkerProviderContext
71 if (waiting())
72 attrs.waiting = waiting()->info();
88 attrs.waiting, thread_safe_sender_.get());
service_worker_message_filter.cc 89 attrs.waiting.handle_id);
104 attrs.waiting.handle_id);
  /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/provider_src/com/android/email/
EmailConnectivityManager.java 47 // Loop time while waiting (stopgap in case we don't get a broadcast)
55 // The monitor lock we use while waiting for connectivity
65 // The thread waiting for connectivity
173 boolean waiting = false;
182 if (waiting) {
189 if (!waiting) {
191 LogUtils.d(TAG, mName + ": Connectivity waiting...");
193 waiting = true;
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbycodetypes.js 24 /** One or more devices are waiting for touch. */
  /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/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
injected_script_loader.js 27 var waiting = files.length;
47 waiting--;
48 if (waiting == 0) {
  /external/linux-tools-perf/perf-3.12.0/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/theme/src/android/theme/cts/
ThemeHostTest.java 322 boolean waiting = true;
323 while (waiting) {
337 waiting = false;
340 waiting = false;

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 910