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

1 2 3 4 5

  /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/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);
service_process_util_posix.cc 18 // Attempts to take a lock named |name|. If |waiting| is true then this will
21 MultiProcessLock* TakeNamedLock(const std::string& name, bool waiting) {
30 if (!waiting) break;
  /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;
  /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);
service_worker_provider_context.h 59 ServiceWorkerHandleReference* waiting();
71 // Gets the handle ID of the waiting Service Worker, or
73 // waiting Service Worker.
web_service_worker_provider_impl.cc 69 GetDispatcher()->GetServiceWorker(attrs.waiting, false));
service_worker_dispatcher.cc 300 if (attrs.waiting.handle_id != kInvalidServiceWorkerHandleId)
301 worker_to_provider_[attrs.waiting.handle_id] = provider->second;
497 attributes.waiting);
571 // Populate the .waiting field with the new worker object.
628 registration->SetWaiting(GetServiceWorker(attrs.waiting, false));
724 registration->SetWaiting(GetServiceWorker(attrs.waiting, true));
732 attrs.waiting, thread_safe_sender_.get());
  /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;
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
GlobalEventHandlers.h 98 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(waiting);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerRegistration.h 51 PassRefPtrWillBeRawPtr<ServiceWorker> waiting() { return m_waiting.get(); } function in class:blink::FINAL
  /external/chromium_org/native_client_sdk/src/examples/api/core/
test.js 26 test.log('Waiting 1 second for test to finish.');
29 test.log('Not finished, waiting another second.');
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/screenshot/
background.js 20 // We are waiting for the tab we opened to finish loading.
26 // Passing the above test means this is the event we were waiting for.
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa.py 323 waiting = [node for node in dafsa if incoming[id(node)] == 0]
326 while waiting:
327 node = waiting.pop()
334 waiting.append(child)
  /external/chromium_org/tools/gn/
builder.cc 430 // Recursively update everybody waiting on this item to be resolved.
434 BuilderRecord* waiting = *i; local
435 DCHECK(waiting->unresolved_deps().find(record) !=
436 waiting->unresolved_deps().end());
437 waiting->unresolved_deps().erase(record);
439 if (waiting->can_resolve()) {
440 if (!ResolveItem(waiting, err))

Completed in 513 milliseconds

1 2 3 4 5