Searched refs:Semaphore (Results 1 - 25 of 81) sorted by relevance

1234

/external/chromium_org/v8/src/
H A Dmarking-thread.h61 Semaphore* start_marking_semaphore_;
62 Semaphore* end_marking_semaphore_;
63 Semaphore* stop_semaphore_;
H A Dsweeper-thread.h63 Semaphore* start_sweeping_semaphore_;
64 Semaphore* end_sweeping_semaphore_;
65 Semaphore* stop_semaphore_;
H A Doptimizing-compiler-thread.h108 Semaphore* stop_semaphore_;
109 Semaphore* input_queue_semaphore_;
H A Druntime-profiler.h40 class Semaphore;
H A Ddebug-agent.h81 Semaphore* terminate_now_; // Semaphore to signal termination.
82 Semaphore* listening_;
H A Dplatform.h110 class Semaphore;
316 // Factory method for creating platform dependent Semaphore.
317 // Please use delete to reclaim the storage for the returned Semaphore.
318 static Semaphore* CreateSemaphore(int count);
550 // Semaphore
558 class Semaphore { class in namespace:v8::internal
560 virtual ~Semaphore() {}
578 static Semaphore* Create() {
583 // POD Semaphore initialized lazily (i.e. the first time Pointer() is called).
595 Semaphore, CreateSemaphoreTrai
[all...]
H A Dd8-debug.h88 i::Semaphore* event_available_;
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DUiUtils.java12 import java.util.concurrent.Semaphore;
28 final Semaphore finishedSemaphore = new Semaphore(0);
/external/replicaisland/src/com/replica/replicaisland/
H A DRenderingWatchDog.java18 import java.util.concurrent.Semaphore;
34 private Semaphore mSemaphore;
50 mSemaphore = new Semaphore(0);
/external/jmdns/src/javax/jmdns/impl/
H A DDNSStatefulObject.java7 import java.util.concurrent.Semaphore;
27 * Implementation note: this class is based on {@link java.util.concurrent.Semaphore} so that they can be released by the timeout timer.
37 private final ConcurrentMap<Thread, Semaphore> _semaphores;
41 * Semaphore name for debugging purposes.
46 _semaphores = new ConcurrentHashMap<Thread, Semaphore>(50);
57 Semaphore semaphore = _semaphores.get(thread);
59 semaphore = new Semaphore(1, true);
75 Collection<Semaphore> semaphores = _semaphores.values();
76 for (Semaphore semaphore : semaphores) {
85 aLog.append("Semaphore
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
H A DAndroidProfileOAuth2TokenServiceHelper.java16 import java.util.concurrent.Semaphore;
114 final Semaphore semaphore = new Semaphore(0);
/external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
H A DMockSyncContentResolverDelegate.java22 import java.util.concurrent.Semaphore;
40 private Semaphore mPendingObserverCount;
144 mPendingObserverCount = new Semaphore(1 - mObservers.size());
171 private void notifyObserverAsync(final Semaphore pendingObserverCount) {
/external/v8/src/
H A Ddebug-agent.h81 Semaphore* terminate_now_; // Semaphore to signal termination.
82 Semaphore* listening_;
H A Dplatform.h94 class Semaphore;
234 // Factory method for creating platform dependent Semaphore.
235 // Please use delete to reclaim the storage for the returned Semaphore.
236 static Semaphore* CreateSemaphore(int count);
579 // Semaphore
587 class Semaphore { class in namespace:v8::internal
589 virtual ~Semaphore() {}
607 static Semaphore* Create() {
612 // POD Semaphore initialized lazily (i.e. the first time Pointer() is called).
624 Semaphore, CreateSemaphoreTrai
[all...]
H A Dd8-debug.h89 i::Semaphore* event_available_;
H A Druntime-profiler.h40 class Semaphore;
/external/valgrind/main/drd/tests/
H A Dtc18_semabuse.stderr.exp2 Semaphore reinitialization: semaphore 0x........
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DArchiveTest.java16 import java.util.concurrent.Semaphore;
44 final Semaphore s = new Semaphore(0);
/external/v8/test/cctest/
H A Dtest-threads.cc146 i::Semaphore* semaphore)
169 i::Semaphore* semaphore_;
176 i::Semaphore* semaphore = i::OS::CreateSemaphore(0);
H A Dtest-lock.cc45 Semaphore* sem = OS::CreateSemaphore(0);
47 // Semaphore not signalled - timeout.
55 // Semaphore signalled - no timeout.
H A Dcctest.h121 v8::internal::Semaphore* gate_;
125 static v8::internal::Semaphore* all_tests_done_;
/external/chromium_org/v8/test/cctest/
H A Dtest-lock.cc70 Semaphore* sem = OS::CreateSemaphore(0);
72 // Semaphore not signalled - timeout.
80 // Semaphore signalled - no timeout.
H A Dtest-circular-queue.cc111 i::Semaphore* finished)
132 i::Semaphore* finished_;
148 i::Semaphore* semaphore = i::OS::CreateSemaphore(0);
H A Dtest-threads.cc152 i::Semaphore* semaphore)
175 i::Semaphore* semaphore_;
183 i::Semaphore* semaphore = i::OS::CreateSemaphore(0);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DIOHandler.java38 import java.util.concurrent.Semaphore;
62 private Semaphore ioSemaphore = new Semaphore(1);
183 "Could not acquire IO Semaphore after 10 seconds -- giving up ");

Completed in 465 milliseconds

1234