HomeSort by relevance Sort by last modified time
    Searched defs:CritScope (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/base/
criticalsection.cc 118 CritScope::CritScope(CriticalSection* cs) : cs_(cs) { cs_->Enter(); }
119 CritScope::~CritScope() { cs_->Leave(); }
criticalsection.h 68 // CritScope, for serializing execution through a scope.
69 class SCOPED_LOCKABLE CritScope {
71 explicit CritScope(CriticalSection* cs) EXCLUSIVE_LOCK_FUNCTION(cs);
72 ~CritScope() UNLOCK_FUNCTION();
75 RTC_DISALLOW_COPY_AND_ASSIGN(CritScope);
82 // IMPORTANT: Unlike CritScope, the lock may not be owned by this thread in

Completed in 120 milliseconds