Searched defs:lock (Results 151 - 175 of 340) sorted by relevance

1234567891011>>

/external/chromium/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.c54 const char *file, int line, const volatile void *lock){}
56 const char *file, int line, const volatile void *lock){}
58 const char *file, int line, const volatile void *lock, long is_w){}
60 const char *file, int line, const volatile void *lock, long is_w){}
73 const volatile void *lock){}
53 AnnotateRWLockCreate( const char *file, int line, const volatile void *lock) argument
55 AnnotateRWLockDestroy( const char *file, int line, const volatile void *lock) argument
57 AnnotateRWLockAcquired( const char *file, int line, const volatile void *lock, long is_w) argument
59 AnnotateRWLockReleased( const char *file, int line, const volatile void *lock, long is_w) argument
71 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
/external/chromium/base/threading/
H A Dworker_pool_posix_unittest.cc10 #include "base/synchronization/lock.h"
24 Lock* lock() { return &pool_->lock_; } function in class:base::PosixDynamicThreadPool::PosixDynamicThreadPoolPeer
132 peer_.set_num_idle_threads_cv(new ConditionVariable(peer_.lock()));
148 base::AutoLock pool_locked(*peer_.lock());
252 base::AutoLock locked(*peer_.lock());
/external/chromium/net/base/
H A Dcert_database_nss.cc81 crypto::AutoNSSWriteLock lock; local
/external/chromium_org/ash/wm/
H A Dtoplevel_window_event_handler_unittest.cc463 // Tests that a gesture cannot minimize a window in login/lock screen.
473 aura::Window* lock = internal::RootWindowController::ForWindow(target.get())-> local
475 lock->AddChild(target.get());
/external/chromium_org/base/synchronization/
H A Dwaitable_event_posix.cc11 #include "base/synchronization/lock.h"
20 // The WaitableEvent maintains a list of waiters, protected by a lock. Each
25 // Waiting involves grabbing the lock and adding oneself to the wait list. Async
26 // waits can be canceled, which means grabbing the lock and removing oneself
125 // Called with lock held.
134 // unlocking it and removing it from the wait-list. Called with lock held.
140 base::Lock* lock() { function in class:base::SyncWaiter
178 sw.lock()->Acquire();
182 // We are violating locking order here by holding the SyncWaiter lock but not
183 // the WaitableEvent lock
[all...]
/external/chromium_org/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.c74 const char *file, int line, const volatile void *lock)
78 const char *file, int line, const volatile void *lock)
82 const char *file, int line, const volatile void *lock, long is_w)
86 const char *file, int line, const volatile void *lock, long is_w)
108 const volatile void *lock)
73 AnnotateRWLockCreate( const char *file, int line, const volatile void *lock) argument
77 AnnotateRWLockDestroy( const char *file, int line, const volatile void *lock) argument
81 AnnotateRWLockAcquired( const char *file, int line, const volatile void *lock, long is_w) argument
85 AnnotateRWLockReleased( const char *file, int line, const volatile void *lock, long is_w) argument
106 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
/external/chromium_org/ppapi/proxy/
H A Dplugin_dispatcher.cc61 // Run any pending mouse lock callback to prevent leaks.
211 // Synchronous messages might be re-entrant, so we need to drop the lock.
219 // We need to grab the proxy lock to ensure that we don't collide with the
221 ProxyAutoLock lock; local
295 // We need to grab the proxy lock to ensure that we don't collide with the
297 ProxyAutoLock lock; local
H A Dplugin_globals.cc20 // It performs necessary locking/unlocking of the proxy lock, and forwards all
34 // Synchronous messages might be re-entrant, so we need to drop the lock.
58 // ResourceTracker asserts that we have the lock when we add new resources,
59 // so we lock when creating the MessageLoopResource even though there is no
61 ProxyAutoLock lock; local
76 ProxyAutoLock lock; local
H A Dppb_testing_proxy.cc34 ProxyAutoLock lock; local
68 ProxyAutoLock lock; local
84 ProxyAutoLock lock; local
108 ProxyAutoLock lock; local
120 ProxyAutoLock lock; local
H A Dppb_var_deprecated_proxy.cc69 ProxyAutoLock lock; local
88 ProxyAutoLock lock; local
107 ProxyAutoLock lock; local
127 ProxyAutoLock lock; local
150 ProxyAutoLock lock; local
168 ProxyAutoLock lock; local
188 ProxyAutoLock lock; local
212 ProxyAutoLock lock; local
234 ProxyAutoLock lock; local
253 ProxyAutoLock lock; local
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_thunk.cc97 ProxyAutoLock lock; local
104 ProxyAutoLock lock; local
/external/chromium_org/rlz/lib/
H A Dfinancial_ping.cc99 ScopedRlzValueStoreLock lock; local
100 RlzValueStore* store = lock.GetStore();
316 ScopedRlzValueStoreLock lock; local
317 RlzValueStore* store = lock.GetStore();
344 ScopedRlzValueStoreLock lock; local
345 RlzValueStore* store = lock.GetStore();
355 ScopedRlzValueStoreLock lock; local
356 RlzValueStore* store = lock.GetStore();
/external/chromium_org/rlz/win/lib/
H A Drlz_lib_win.cc115 LibMutex lock; local
116 if (lock.failed())
/external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
H A DAccountManagerHelper.java44 private static final Object lock = new Object(); field in class:AccountManagerHelper
84 synchronized (lock) {
96 synchronized (lock) {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPartitionAlloc.h61 // - Supports a lock-free API for fast performance in single-threaded cases.
149 int lock; member in struct:WTF::PartitionRoot
262 spinLockLock(&root->lock);
264 spinLockUnlock(&root->lock);
279 spinLockLock(&root->lock);
281 spinLockUnlock(&root->lock);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-object-private.hh84 hb_mutex_t lock; member in struct:hb_user_data_array_t
87 inline void init (void) { lock.init (); items.init (); }
96 inline void finish (void) { items.finish (lock); lock.finish (); }
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dsigslot_unittest.cc123 virtual void lock() { function in class:multi_threaded_local_fake
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_screen.h51 uint32_t lock[NV50_TIC_MAX_ENTRIES / 32]; member in struct:nv50_screen::__anon12167
57 uint32_t lock[NV50_TSC_MAX_ENTRIES / 32]; member in struct:nv50_screen::__anon12168
121 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32));
128 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32));
136 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32));
145 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32));
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_screen.h47 uint32_t lock[NVC0_TIC_MAX_ENTRIES / 32]; member in struct:nvc0_screen::__anon12177
53 uint32_t lock[NVC0_TSC_MAX_ENTRIES / 32]; member in struct:nvc0_screen::__anon12178
120 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32));
127 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32));
135 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32));
144 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32));
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_drawable.h120 void (*lock) (struct apple_glx_drawable * agd); member in struct:apple_glx_drawable
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_mont.c478 BN_MONT_CTX *BN_MONT_CTX_set_locked(BN_MONT_CTX **pmont, int lock, argument
484 CRYPTO_r_lock(lock);
487 CRYPTO_r_unlock(lock);
488 CRYPTO_w_lock(lock);
504 CRYPTO_w_unlock(lock);
506 CRYPTO_r_unlock(lock);
/external/chromium_org/third_party/skia/src/lazy/
H A DSkLruImageCache.cpp41 void lock() { SkASSERT(!fLocked); fLocked = true; } function in class:CachedPixels
115 pixels->lock();
136 pixels->lock();
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest1.c48 ** When a lock occurs, yield.
190 pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; variable
202 pthread_mutex_lock(&lock);
204 pthread_mutex_unlock(&lock);
239 pthread_mutex_lock(&lock);
244 pthread_mutex_unlock(&lock);
278 pthread_mutex_lock(&lock);
280 pthread_cond_wait(&sig, &lock);
282 pthread_mutex_unlock(&lock);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Ddynamic_annotations.c68 const volatile void *lock){}
70 const volatile void *lock){}
72 const volatile void *lock, long is_w){}
74 const volatile void *lock, long is_w){}
87 const volatile void *lock){}
67 AnnotateRWLockCreate(const char *file, int line, const volatile void *lock) argument
69 AnnotateRWLockDestroy(const char *file, int line, const volatile void *lock) argument
71 AnnotateRWLockAcquired(const char *file, int line, const volatile void *lock, long is_w) argument
73 AnnotateRWLockReleased(const char *file, int line, const volatile void *lock, long is_w) argument
85 AnnotateCondVarWait(const char *file, int line, const volatile void *cv, const volatile void *lock) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Ddynamic_annotations.c68 const volatile void *lock){}
70 const volatile void *lock){}
72 const volatile void *lock, long is_w){}
74 const volatile void *lock, long is_w){}
87 const volatile void *lock){}
67 AnnotateRWLockCreate(const char *file, int line, const volatile void *lock) argument
69 AnnotateRWLockDestroy(const char *file, int line, const volatile void *lock) argument
71 AnnotateRWLockAcquired(const char *file, int line, const volatile void *lock, long is_w) argument
73 AnnotateRWLockReleased(const char *file, int line, const volatile void *lock, long is_w) argument
85 AnnotateCondVarWait(const char *file, int line, const volatile void *cv, const volatile void *lock) argument

Completed in 665 milliseconds

1234567891011>>