HomeSort by relevance Sort by last modified time
    Searched refs:crit_sect (Results 1 - 10 of 10) sorted by null

  /external/webrtc/webrtc/system_wrappers/include/
condition_variable_wrapper.h 25 // Calling thread will atomically release crit_sect and wait until next
27 virtual void SleepCS(CriticalSectionWrapper& crit_sect) = 0;
30 virtual bool SleepCS(CriticalSectionWrapper& crit_sect,
static_instance.h 48 static CriticalSectionWrapper* crit_sect(
50 CriticalSectionScoped lock(crit_sect);
80 crit_sect->Leave();
86 crit_sect->Enter();
  /external/webrtc/webrtc/system_wrappers/source/
critical_section_unittest.cc 32 explicit ProtectedCount(CriticalSectionWrapper* crit_sect)
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->Enter(); // Make sure counter stays 0 until we wait for it
    [all...]
condition_variable_event_win.h 25 void SleepCS(CriticalSectionWrapper& crit_sect);
26 bool SleepCS(CriticalSectionWrapper& crit_sect, unsigned long max_time_inMS);
condition_variable_posix.h 26 void SleepCS(CriticalSectionWrapper& crit_sect) override;
27 bool SleepCS(CriticalSectionWrapper& crit_sect,
condition_variable_native_win.h 39 void SleepCS(CriticalSectionWrapper& crit_sect);
40 bool SleepCS(CriticalSectionWrapper& crit_sect, unsigned long max_time_inMS);
condition_variable_native_win.cc 83 void ConditionVariableNativeWin::SleepCS(CriticalSectionWrapper& crit_sect) {
84 SleepCS(crit_sect, INFINITE);
87 bool ConditionVariableNativeWin::SleepCS(CriticalSectionWrapper& crit_sect,
90 static_cast<CriticalSectionWindows*>(&crit_sect);
condition_variable_event_win.cc 120 void ConditionVariableEventWin::SleepCS(CriticalSectionWrapper& crit_sect) {
121 SleepCS(crit_sect, INFINITE);
124 bool ConditionVariableEventWin::SleepCS(CriticalSectionWrapper& crit_sect,
137 static_cast<CriticalSectionWindows*>(&crit_sect);
condition_variable_posix.cc 72 void ConditionVariablePosix::SleepCS(CriticalSectionWrapper& crit_sect) {
74 &crit_sect);
78 bool ConditionVariablePosix::SleepCS(CriticalSectionWrapper& crit_sect,
89 &crit_sect);
condition_variable_unittest.cc 189 rtc::scoped_ptr<CriticalSectionWrapper> crit_sect(
193 CriticalSectionScoped cs(crit_sect.get());
195 EXPECT_FALSE(cond_var->SleepCS(*(crit_sect), kVeryShortWaitMs));

Completed in 322 milliseconds