Searched defs:Lock (Results 1 - 25 of 111) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DLock.js9 WebInspector.Lock = function()
17 WebInspector.Lock.Events = {
21 WebInspector.Lock.prototype = {
33 this.dispatchEventToListeners(WebInspector.Lock.Events.StateChanged);
40 console.error("WebInspector.Lock acquire/release calls are unbalanced " + new Error().stack);
44 this.dispatchEventToListeners(WebInspector.Lock.Events.StateChanged);
/external/chromium_org/ppapi/utility/threading/
H A Dlock.cc11 Lock::Lock() { function in class:pp::Lock
17 Lock::~Lock() {
21 void Lock::Acquire() {
25 void Lock::Release() {
31 Lock::Lock() {
35 Lock::~Lock() {
[all...]
H A Dlock.h17 class Lock { class in namespace:pp
20 Lock();
23 ~Lock();
46 Lock(const Lock&);
47 Lock& operator=(const Lock&);
61 /// pp::Lock lock_;
66 explicit AutoLock(Lock& lock) : lock_(lock) {
75 Lock
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dlock.cc23 Lock::Lock() { function in class:sfntly::Lock
29 Lock::~Lock() {
33 bool Lock::Try() {
40 void Lock::Acquire() {
44 void Lock::Unlock() {
50 Lock::Lock() {
54 Lock
[all...]
H A Dlock.h37 class Lock { class in namespace:sfntly
39 Lock();
40 ~Lock();
50 // a successful call to Try, or a call to Lock.
55 NO_COPY_AND_ASSIGN(Lock);
58 // A helper class that acquires the given Lock while the AutoLock is in scope.
61 explicit AutoLock(Lock& lock) : lock_(lock) {
70 Lock& lock_;
/external/sfntly/cpp/src/sfntly/port/
H A Dlock.cc23 Lock::Lock() { function in class:sfntly::Lock
29 Lock::~Lock() {
33 bool Lock::Try() {
40 void Lock::Acquire() {
44 void Lock::Unlock() {
50 Lock::Lock() {
54 Lock
[all...]
H A Dlock.h37 class Lock { class in namespace:sfntly
39 Lock();
40 ~Lock();
50 // a successful call to Try, or a call to Lock.
55 NO_COPY_AND_ASSIGN(Lock);
58 // A helper class that acquires the given Lock while the AutoLock is in scope.
61 explicit AutoLock(Lock& lock) : lock_(lock) {
70 Lock& lock_;
/external/chromium_org/chrome/browser/importer/
H A Dfirefox_profile_lock_win.cc58 void FirefoxProfileLock::Lock() { function in class:FirefoxProfileLock
H A Dfirefox_profile_lock_posix.cc63 void FirefoxProfileLock::Lock() { function in class:FirefoxProfileLock
/external/chromium_org/base/synchronization/
H A Dlock.cc5 // This file is used for debugging assertion support. The Lock class
16 Lock::Lock() : lock_() { function in class:base::Lock
19 Lock::~Lock() {
23 void Lock::AssertAcquired() const {
27 void Lock::CheckHeldAndUnmark() {
32 void Lock::CheckUnheldAndMark() {
H A Dlock_impl_posix.cc44 void LockImpl::Lock() { function in class:base::internal::LockImpl
H A Dlock_impl_win.cc27 void LockImpl::Lock() { function in class:base::internal::LockImpl
H A Dlock.h17 class BASE_EXPORT Lock { class in namespace:base
21 Lock() : lock_() {} function in class:base::Lock
22 ~Lock() {}
23 void Acquire() { lock_.Lock(); }
35 Lock();
36 ~Lock();
42 lock_.Lock();
90 DISALLOW_COPY_AND_ASSIGN(Lock);
93 // A helper class that acquires the given Lock while the AutoLock is in scope.
98 explicit AutoLock(Lock
[all...]
/external/clang/test/SemaCXX/
H A Doperator-arrow-temporary.cpp8 template<int x> struct Lock { struct
9 ~Lock() { int a[x]; } // expected-error {{declared as an array with a negative size}}
14 Lock<-1> operator->();
17 // Make sure we try to instantiate the destructor for Lock here
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/synchronization/
H A Dlock.h26 typedef boost::mutex Lock; typedef in namespace:i18n::phonenumbers
45 class Lock {
47 Lock() : thread_checker_() {}
73 AutoLock(Lock& lock) : lock_(lock) {
82 Lock& lock_;
H A Dlock_posix.h28 class Lock { class in namespace:i18n::phonenumbers
30 Lock() { function in class:i18n::phonenumbers::Lock
36 ~Lock() {
55 DISALLOW_COPY_AND_ASSIGN(Lock);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuvfuncs.h33 int (*Lock)(_THIS, SDL_Overlay *overlay); member in struct:private_yuvhwfuncs
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dmutex.cc31 void Mutex::Lock() { function in class:mojo::Mutex
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dsimple_lock.h29 void Lock() const { pthread_mutex_lock(&lock_); } function in class:sdk_util::SimpleLock
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile_lock.cc33 void FileLock::Lock() { function in class:disk_cache::FileLock
/external/chromium_org/tools/findit/
H A Dblame.py5 from threading import Lock namespace
56 self.blame_list_lock = Lock()
H A Dmatch_set.py7 from threading import Lock namespace
120 self.matches_lock = Lock()
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A Ddestructor.pass.cpp23 typedef std::unique_lock<std::mutex> Lock; typedef
30 Lock lk(m);
38 Lock lk(m);
49 Lock lk(m);
/external/lldb/tools/debugserver/source/
H A DPThreadMutex.cpp31 Lock();
41 Lock();
51 Lock();
62 PThreadMutex::Locker::Lock() function in class:PThreadMutex::Locker
/external/chromium_org/ppapi/proxy/
H A Dproxy_completion_callback_factory.h57 class Lock { class in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits
59 Lock() {} function in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits::Lock
60 ~Lock() {}
69 explicit AutoLock(Lock&) {}

Completed in 3959 milliseconds

12345