Searched defs:crit_sect (Results 1 - 4 of 4) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
H A Dcondition_variable_event_win.cc120 void ConditionVariableEventWin::SleepCS(CriticalSectionWrapper& crit_sect) { argument
121 SleepCS(crit_sect, INFINITE);
124 bool ConditionVariableEventWin::SleepCS(CriticalSectionWrapper& crit_sect, argument
137 static_cast<CriticalSectionWindows*>(&crit_sect);
H A Dcritical_section_unittest.cc32 explicit ProtectedCount(CriticalSectionWrapper* crit_sect) argument
33 : crit_sect_(crit_sect),
78 CriticalSectionWrapper* crit_sect = variable
80 ProtectedCount count(crit_sect);
83 crit_sect->Enter();
91 crit_sect->Leave(); // This frees the thread to act.
94 delete crit_sect;
105 CriticalSectionWrapper* crit_sect = variable
107 ProtectedCount count(crit_sect);
110 crit_sect
[all...]
H A Dcondition_variable_native_win.cc83 void ConditionVariableNativeWin::SleepCS(CriticalSectionWrapper& crit_sect) { argument
84 SleepCS(crit_sect, INFINITE);
87 bool ConditionVariableNativeWin::SleepCS(CriticalSectionWrapper& crit_sect, argument
90 static_cast<CriticalSectionWindows*>(&crit_sect);
H A Dcondition_variable_posix.cc72 void ConditionVariablePosix::SleepCS(CriticalSectionWrapper& crit_sect) { argument
74 &crit_sect);
78 bool ConditionVariablePosix::SleepCS(CriticalSectionWrapper& crit_sect, argument
89 &crit_sect);

Completed in 569 milliseconds