HomeSort by relevance Sort by last modified time
    Searched defs:Wait (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /prebuilts/go/darwin-x86/src/sync/
waitgroup.go 14 // goroutines to wait for. Then each of the goroutines
16 // Wait can be used to block until all goroutines have finished.
35 // If the counter becomes zero, all goroutines blocked on Wait are released.
39 // must happen before a Wait. Calls with a negative delta, or calls with a
44 // If a WaitGroup is reused to wait for several independent sets of events,
45 // new Add calls must happen after all previous Wait calls have returned.
52 // Synchronize decrements with Wait.
63 // The first increment must be synchronized with Wait.
73 panic("sync: WaitGroup misuse: Add called concurrently with Wait")
80 // - Adds must not happen concurrently with Wait,
    [all...]
cond.go 18 // when calling the Wait method.
36 // Wait atomically unlocks c.L and suspends execution
38 // Wait locks c.L before returning. Unlike in other systems,
39 // Wait cannot return unless awoken by Broadcast or Signal.
41 // Because c.L is not locked when Wait first resumes, the caller
43 // Wait returns. Instead, the caller should Wait in a loop:
47 // c.Wait()
52 func (c *Cond) Wait() {
  /prebuilts/go/linux-x86/src/sync/
waitgroup.go 14 // goroutines to wait for. Then each of the goroutines
16 // Wait can be used to block until all goroutines have finished.
35 // If the counter becomes zero, all goroutines blocked on Wait are released.
39 // must happen before a Wait. Calls with a negative delta, or calls with a
44 // If a WaitGroup is reused to wait for several independent sets of events,
45 // new Add calls must happen after all previous Wait calls have returned.
52 // Synchronize decrements with Wait.
63 // The first increment must be synchronized with Wait.
73 panic("sync: WaitGroup misuse: Add called concurrently with Wait")
80 // - Adds must not happen concurrently with Wait,
    [all...]
cond.go 18 // when calling the Wait method.
36 // Wait atomically unlocks c.L and suspends execution
38 // Wait locks c.L before returning. Unlike in other systems,
39 // Wait cannot return unless awoken by Broadcast or Signal.
41 // Because c.L is not locked when Wait first resumes, the caller
43 // Wait returns. Instead, the caller should Wait in a loop:
47 // c.Wait()
52 func (c *Cond) Wait() {
  /system/core/libmemunreachable/
Semaphore.h 30 void Wait(std::chrono::milliseconds ms) {
  /art/runtime/
signal_set.h 46 int Wait() {
barrier.cc 37 void Barrier::Wait(Thread* self) {
58 condition_.Wait(self);
  /external/webrtc/webrtc/base/
event.cc 49 bool Event::Wait(int milliseconds) {
81 bool Event::Wait(int milliseconds) {
nullsocketserver.h 25 virtual bool Wait(int cms, bool process_io) {
26 event_.Wait(cms);
  /external/webrtc/webrtc/system_wrappers/source/
event_timer_win.cc 40 EventTypeWrapper EventTimerWin::Wait(unsigned long max_time) {
  /art/test/132-daemon-locks-shutdown/src/
Main.java 28 Thread t = new Thread(new Wait(sync));
34 private static class Wait implements Runnable {
37 public Wait(Object obj) {
45 obj.wait(1);
  /external/chromium-trace/catapult/telemetry/telemetry/core/
android_action_runner.py 57 def Wait(self, seconds):
58 """Wait for the number of seconds specified.
61 seconds: The number of seconds to wait.
  /external/libchrome/base/synchronization/
condition_variable_posix.cc 64 void ConditionVariable::Wait() {
  /external/v8/src/base/platform/
condition-variable.cc 59 void ConditionVariable::Wait(Mutex* mutex) {
160 // The event must not be on the wait list.
166 // Prepend the event to the wait list.
177 // Remove the event from the wait list.
259 void ConditionVariable::Wait(Mutex* mutex) {
260 // Create and setup the wait event.
266 // Wait on the wait event.
273 // Release the wait event (we must have been notified).
280 // Create and setup the wait event
    [all...]
semaphore.cc 45 void Semaphore::Wait() {
102 void Semaphore::Wait() {
129 // Wait for semaphore signalled or timeout.
175 void Semaphore::Wait() {
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main.cc 31 virtual bool Wait(int cms, bool process_io) {
44 return rtc::PhysicalSocketServer::Wait(0/*cms == -1 ? 1 : cms*/,
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
rtp_rtcp_extensions.cc 71 bool Wait() {
72 // Wait until we've received to specified number of packets.
108 EXPECT_FALSE(verifying_transport_.Wait());
116 EXPECT_TRUE(verifying_transport_.Wait());
123 EXPECT_FALSE(verifying_transport_.Wait());
131 EXPECT_TRUE(verifying_transport_.Wait());
142 EXPECT_TRUE(verifying_transport_.Wait());
154 EXPECT_TRUE(verifying_transport_.Wait());
  /hardware/ti/omap4-aah/libtiutils/
Semaphore.cpp 119 @brief Wait operation
124 @return One of the android error codes based on semaphore wait operation
126 status_t Semaphore::Wait()
134 ///Wait and return the status after signalling
186 @brief Wait operation with a timeout
191 @return One of the android error codes based on semaphore wait operation
217 ///Wait for the timeout or signal and return the result based on whichever event occurred first
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.cpp 118 @brief Wait operation
123 @return One of the android error codes based on semaphore wait operation
125 status_t Semaphore::Wait()
133 ///Wait and return the status after signalling
185 @brief Wait operation with a timeout
190 @return One of the android error codes based on semaphore wait operation
216 ///Wait for the timeout or signal and return the result based on whichever event occurred first
  /prebuilts/go/darwin-x86/src/os/
doc.go 29 // Release only needs to be called if Wait is not.
39 // Wait waits for the Process to exit, and then returns a
41 // Wait releases any resources associated with the Process.
44 func (p *Process) Wait() (*ProcessState, error) {
45 return p.wait()
  /prebuilts/go/linux-x86/src/os/
doc.go 29 // Release only needs to be called if Wait is not.
39 // Wait waits for the Process to exit, and then returns a
41 // Wait releases any resources associated with the Process.
44 func (p *Process) Wait() (*ProcessState, error) {
45 return p.wait()
  /system/core/libbacktrace/
ThreadEntry.cpp 99 bool ThreadEntry::Wait(int value) {
  /external/lzma/CPP/Windows/
Thread.h 22 WRes Wait() { return Thread_Wait(&thread); }
  /prebuilts/go/darwin-x86/src/net/
fd_poll_nacl.go 39 func (pd *pollDesc) Wait(mode int) error {
46 func (pd *pollDesc) WaitRead() error { return pd.Wait('r') }
48 func (pd *pollDesc) WaitWrite() error { return pd.Wait('w') }
  /prebuilts/go/linux-x86/src/net/
fd_poll_nacl.go 39 func (pd *pollDesc) Wait(mode int) error {
46 func (pd *pollDesc) WaitRead() error { return pd.Wait('r') }
48 func (pd *pollDesc) WaitWrite() error { return pd.Wait('w') }

Completed in 1540 milliseconds

1 2 3 4 5 6 7