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

  /external/chromium/base/synchronization/
lock_impl_win.cc 13 ::InitializeCriticalSectionAndSpinCount(&os_lock_, 2000);
17 ::DeleteCriticalSection(&os_lock_);
21 if (::TryEnterCriticalSection(&os_lock_) != FALSE) {
28 ::EnterCriticalSection(&os_lock_);
32 ::LeaveCriticalSection(&os_lock_);
lock_impl_posix.cc 22 rv = pthread_mutex_init(&os_lock_, &mta);
28 pthread_mutex_init(&os_lock_, NULL);
33 int rv = pthread_mutex_destroy(&os_lock_);
38 int rv = pthread_mutex_trylock(&os_lock_);
44 int rv = pthread_mutex_lock(&os_lock_);
49 int rv = pthread_mutex_unlock(&os_lock_);
lock_impl.h 52 OSLockType* os_lock() { return &os_lock_; }
56 OSLockType os_lock_; member in class:base::internal::LockImpl

Completed in 183 milliseconds