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

  /external/chromium/base/synchronization/
lock_impl_win.cc 10 LockImpl::LockImpl() {
16 LockImpl::~LockImpl() {
20 bool LockImpl::Try() {
27 void LockImpl::Lock() {
31 void LockImpl::Unlock() {
lock_impl.h 24 // used for the Lock class. Most users should not use LockImpl directly, but
26 class BASE_API LockImpl {
34 LockImpl();
35 ~LockImpl();
58 DISALLOW_COPY_AND_ASSIGN(LockImpl);
lock_impl_posix.cc 14 LockImpl::LockImpl() {
32 LockImpl::~LockImpl() {
37 bool LockImpl::Try() {
43 void LockImpl::Lock() {
48 void LockImpl::Unlock() {
lock.h 89 internal::LockImpl lock_;
  /external/chromium_org/base/synchronization/
lock_impl_win.cc 10 LockImpl::LockImpl() {
16 LockImpl::~LockImpl() {
20 bool LockImpl::Try() {
27 void LockImpl::Lock() {
31 void LockImpl::Unlock() {
lock_impl.h 23 // used for the Lock class. Most users should not use LockImpl directly, but
25 class BASE_EXPORT LockImpl {
33 LockImpl();
34 ~LockImpl();
55 DISALLOW_COPY_AND_ASSIGN(LockImpl);
lock_impl_posix.cc 15 LockImpl::LockImpl() {
33 LockImpl::~LockImpl() {
38 bool LockImpl::Try() {
44 void LockImpl::Lock() {
49 void LockImpl::Unlock() {
lock.h 91 internal::LockImpl lock_;
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.cc 122 class LockImpl : public LevelDBLock {
124 explicit LockImpl(leveldb::Env* env, leveldb::FileLock* lock)
126 virtual ~LockImpl() { env_->UnlockFile(lock_); }
142 return scoped_ptr<LevelDBLock>(new LockImpl(env, lock));
  /external/chromium/base/
logging.cc 245 log_lock = new base::internal::LockImpl();
283 // LockImpl directly instead of using Lock, because Lock makes logging calls.
284 static base::internal::LockImpl* log_lock;
301 base::internal::LockImpl* LoggingLock::log_lock = NULL;
  /external/chromium_org/base/
logging.cc 230 log_lock = new base::internal::LockImpl();
268 // LockImpl directly instead of using Lock, because Lock makes logging calls.
269 static base::internal::LockImpl* log_lock;
286 base::internal::LockImpl* LoggingLock::log_lock = NULL;

Completed in 777 milliseconds