Home | History | Annotate | Download | only in common

Lines Matching defs:OneShotEvent

18 struct OneShotEvent::TaskInfo {
33 OneShotEvent::OneShotEvent() : signaled_(false) {
34 // It's acceptable to construct the OneShotEvent on one thread, but
38 OneShotEvent::OneShotEvent(bool signaled) : signaled_(signaled) {
41 OneShotEvent::~OneShotEvent() {}
43 void OneShotEvent::Post(const tracked_objects::Location& from_here,
49 void OneShotEvent::Post(const tracked_objects::Location& from_here,
55 void OneShotEvent::PostDelayed(const tracked_objects::Location& from_here,
61 void OneShotEvent::Signal() {
82 void OneShotEvent::PostImpl(const tracked_objects::Location& from_here,