OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:event_mutex_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/base/
event.cc
76
VERIFY(pthread_mutex_init(&
event_mutex_
, NULL) == 0);
81
pthread_mutex_destroy(&
event_mutex_
);
86
pthread_mutex_lock(&
event_mutex_
);
89
pthread_mutex_unlock(&
event_mutex_
);
93
pthread_mutex_lock(&
event_mutex_
);
95
pthread_mutex_unlock(&
event_mutex_
);
99
pthread_mutex_lock(&
event_mutex_
);
120
error = pthread_cond_timedwait(&event_cond_, &
event_mutex_
, &ts);
123
error = pthread_cond_wait(&event_cond_, &
event_mutex_
);
132
pthread_mutex_unlock(&
event_mutex_
);
[
all
...]
event.h
61
pthread_mutex_t
event_mutex_
;
member in class:talk_base::Event
/external/chromium/third_party/libjingle/source/talk/base/
event.cc
104
if (pthread_mutex_init(&
event_mutex_
, NULL) == 0)
118
pthread_mutex_destroy(&
event_mutex_
);
132
pthread_mutex_lock(&
event_mutex_
);
135
pthread_mutex_unlock(&
event_mutex_
);
143
pthread_mutex_lock(&
event_mutex_
);
145
pthread_mutex_unlock(&
event_mutex_
);
153
pthread_mutex_lock(&
event_mutex_
);
174
error = pthread_cond_timedwait(&event_cond_, &
event_mutex_
, &ts);
177
error = pthread_cond_wait(&event_cond_, &
event_mutex_
);
186
pthread_mutex_unlock(&
event_mutex_
);
[
all
...]
event.h
63
pthread_mutex_t
event_mutex_
;
member in class:talk_base::Event
Completed in 52 milliseconds