HomeSort by relevance Sort by last modified time
    Searched defs:mutex_ (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium/chrome/browser/sync/engine/
all_status.h 60 mutable base::Lock mutex_; // Protects all data members. member in class:browser_sync::AllStatus
  /external/chromium/chrome/browser/sync/util/
user_settings.h 93 mutable base::Lock mutex_; // protects email_. member in class:browser_sync::UserSettings
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.h 142 mutable Mutex mutex_; member in class:google::protobuf::compiler::python::Generator
143 mutable const FileDescriptor* file_; // Set in Generate(). Under mutex_.
145 mutable io::Printer* printer_; // Set in Generate(). Under mutex_.
  /external/chromium/third_party/libjingle/source/talk/base/
criticalsection.h 88 pthread_mutex_init(&mutex_, &mutex_attribute);
93 pthread_mutex_destroy(&mutex_);
96 pthread_mutex_lock(&mutex_);
101 pthread_mutex_unlock(&mutex_);
109 pthread_mutex_t mutex_; member in class:talk_base::CriticalSection
  /bionic/libc/bionic/
dirent.cpp 44 pthread_mutex_t mutex_; member in struct:DIR
56 pthread_mutex_init(&d->mutex_, NULL);
105 ScopedPthreadMutexLocker locker(&d->mutex_);
115 ScopedPthreadMutexLocker locker(&d->mutex_);
136 pthread_mutex_destroy(&d->mutex_);
142 ScopedPthreadMutexLocker locker(&d->mutex_);
  /external/v8/src/
log-utils.h 90 // destination. mutex_ should be acquired before using output_handle_.
96 // mutex_ is a Mutex used for enforcing exclusive
98 Mutex* mutex_; member in class:v8::internal::Log
101 // mutex_ should be acquired before using it.
v8threads.h 119 Mutex* mutex_; member in class:v8::internal::ThreadManager
platform.h 564 explicit ScopedLock(Mutex* mutex): mutex_(mutex) {
565 ASSERT(mutex_ != NULL);
566 mutex_->Lock();
569 mutex_->Unlock();
573 Mutex* mutex_; member in class:v8::internal::ScopedLock
  /external/webp/src/utils/
thread.h 57 pthread_mutex_t mutex_; member in struct:__anon18251
  /frameworks/ex/variablespeed/jni/
sola_time_scaler.h 128 mutable Mutex mutex_; // allows concurrent produce/consume/param change member in class:video_editing::SolaTimeScaler
  /external/ceres-solver/internal/ceres/
mutex.h 170 MutexType mutex_; member in class:ceres::internal::Mutex
191 // but only one writer. We represent this by having mutex_ be -1 when
198 Mutex::Mutex() : mutex_(0) { }
199 Mutex::~Mutex() { assert(mutex_ == 0); }
200 void Mutex::Lock() { assert(--mutex_ == -1); }
201 void Mutex::Unlock() { assert(mutex_++ == -1); }
203 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
205 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
206 void Mutex::ReaderUnlock() { assert(mutex_-- > 0); }
210 Mutex::Mutex() { InitializeCriticalSection(&mutex_); SetIsSafe();
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
mutex.h 161 MutexType mutex_; member in class:Mutex
182 // but only one writer. We represent this by having mutex_ be -1 when
190 Mutex::Mutex() : mutex_(0) { }
191 Mutex::~Mutex() { assert(mutex_ == 0); }
192 void Mutex::Lock() { assert(--mutex_ == -1); }
193 void Mutex::Unlock() { assert(mutex_++ == -1); }
195 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
197 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
198 void Mutex::ReaderUnlock() { assert(mutex_-- > 0); }
202 Mutex::Mutex() { InitializeCriticalSection(&mutex_); SetIsSafe();
    [all...]
  /external/open-vcdiff/gflags/src/
mutex.h 187 MutexType mutex_; member in class:MUTEX_NAMESPACE::Mutex
210 // but only one writer. We represent this by having mutex_ be -1 when
217 Mutex::Mutex() : mutex_(0) { }
218 Mutex::Mutex(Mutex::LinkerInitialized) : mutex_(0) { }
219 Mutex::~Mutex() { assert(mutex_ == 0); }
220 void Mutex::Lock() { assert(--mutex_ == -1); }
221 void Mutex::Unlock() { assert(mutex_++ == -1); }
223 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
225 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
226 void Mutex::ReaderUnlock() { assert(mutex_-- > 0);
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
once_unittest.cc 142 MutexLock lock(&mutex_);
155 Mutex mutex_; member in class:google::protobuf::__anon12917::OnceInitTest
162 MutexLock lock(&mutex_);
165 mutex_.Unlock();
168 mutex_.Lock();
  /external/regex-re2/util/
mutex.h 72 MutexType mutex_; member in class:re2::Mutex
87 // but only one writer. We represent this by having mutex_ be -1 when
95 Mutex::Mutex() : mutex_(0) { }
96 Mutex::~Mutex() { assert(mutex_ == 0); }
97 void Mutex::Lock() { assert(--mutex_ == -1); }
98 void Mutex::Unlock() { assert(mutex_++ == -1); }
99 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
100 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
101 void Mutex::ReaderUnlock() { assert(mutex_-- > 0); }
108 Mutex::Mutex() { SAFE_PTHREAD(pthread_rwlock_init(&mutex_, NULL));
    [all...]
  /external/chromium/chrome/common/deprecated/
event_sys-inl.h 63 condvar_(&mutex_) {
70 base::AutoLock lock(mutex_);
83 base::AutoLock lock(mutex_);
91 base::Lock mutex_; member in class:CallbackWaiters
  /external/protobuf/src/google/protobuf/
message.cc 213 Mutex mutex_; member in class:google::protobuf::__anon12908::GeneratedMessageFactory
254 mutex_.AssertHeld();
262 ReaderMutexLock lock(&mutex_);
280 WriterMutexLock lock(&mutex_);
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 996 value_(0), mutex_(mutex), random_(42) {}
999 MutexLock lock(mutex_);
1022 Mutex* const mutex_; // Protects value_. member in class:testing::internal::AtomicCounterWithMutex
    [all...]
  /external/gtest/test/
gtest-port_test.cc 1016 value_(0), mutex_(mutex), random_(42) {}
1019 MutexLock lock(mutex_);
1042 Mutex* const mutex_; // Protects value_. member in class:testing::internal::AtomicCounterWithMutex
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-port_test.cc 1016 value_(0), mutex_(mutex), random_(42) {}
1019 MutexLock lock(mutex_);
1042 Mutex* const mutex_; // Protects value_. member in class:testing::internal::AtomicCounterWithMutex
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 522 mutable internal::Mutex mutex_; member in class:testing::UnitTest
527 // Mutable state in *impl_ is protected by mutex_.
    [all...]
  /external/regex-re2/re2/
re2.h 704 mutable Mutex* mutex_; member in class:re2::RE2
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 819 Mutex mutex_; // protects all internal state member in class:testing::internal::OsStackTraceGetter
    [all...]
  /external/chromium/testing/gtest/src/
gtest-internal-inl.h 436 Mutex mutex_; // protects all internal state member in class:testing::internal::OsStackTraceGetter
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 443 Mutex mutex_; // protects all internal state member in class:testing::internal::OsStackTraceGetter
    [all...]

Completed in 1507 milliseconds

1 2 3