Home | History | Annotate | Download | only in base

Lines Matching defs:Event

11 #include "webrtc/base/event.h"
29 Event::Event(bool manual_reset, bool initially_signaled) {
37 Event::~Event() {
41 void Event::Set() {
45 void Event::Reset() {
49 bool Event::Wait(int milliseconds) {
56 Event::Event(bool manual_reset, bool initially_signaled)
63 Event::~Event() {
68 void Event::Set() {
75 void Event::Reset() {
81 bool Event::Wait(int milliseconds) {
122 // NOTE(liulk): Exactly one thread will auto-reset this event. All