Searched refs:Condition (Results 1 - 5 of 5) sorted by relevance

/system/core/include/utils/
H A DCondition.h37 * Condition variable class. The implementation is system-dependent.
39 * Condition variables are paired up with mutexes. Lock the mutex,
42 * use the same mutex for a given Condition.
44 class Condition { class in namespace:android
56 Condition();
57 Condition(int type);
58 ~Condition();
88 inline Condition::Condition() { function in class:android::Condition
91 inline Condition function in class:android::Condition
[all...]
H A Dthreads.h31 #include <utils/Condition.h>
H A DThread.h28 #include <utils/Condition.h>
98 Condition mThreadExitedCondition;
H A DMutex.h35 class Condition;
88 friend class Condition;
/system/core/libutils/
H A DThreads.cpp413 * Condition class
523 Condition::Condition()
543 Condition::~Condition()
554 status_t Condition::wait(Mutex& mutex)
562 status_t Condition::waitRelative(Mutex& mutex, nsecs_t reltime)
574 void Condition::signal()
602 void Condition::broadcast()

Completed in 217 milliseconds