OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:waitCond
(Results
1 - 4
of
4
) sorted by null
/dalvik/vm/test/
AtomicTest.cpp
52
static pthread_cond_t
waitCond
= PTHREAD_COND_INITIALIZER;
189
pthread_cond_wait(&
waitCond
, &waitLock);
295
pthread_cond_broadcast(&
waitCond
);
/dalvik/vm/
Sync.cpp
687
* must signal the thread's
waitCond
to wake it up.
710
ret = pthread_cond_wait(&self->
waitCond
, &self->waitMutex);
714
ret = pthread_cond_timedwait_monotonic(&self->
waitCond
, &self->waitMutex, &ts);
716
ret = pthread_cond_timedwait(&self->
waitCond
, &self->waitMutex, &ts);
787
pthread_cond_signal(&thread->
waitCond
);
819
pthread_cond_signal(&thread->
waitCond
);
[
all
...]
Thread.h
268
pthread_cond_t
waitCond
;
Thread.cpp
[
all
...]
Completed in 240 milliseconds