HomeSort by relevance Sort by last modified time
    Searched defs:lock (Results 626 - 650 of 1530) sorted by null

<<21222324252627282930>>

  /external/chromium_org/rlz/lib/
rlz_lib.cc 147 rlz_lib::ScopedRlzValueStoreLock lock; local
148 rlz_lib::RlzValueStore* store = lock.GetStore();
225 ScopedRlzValueStoreLock lock; local
226 RlzValueStore* store = lock.GetStore();
244 ScopedRlzValueStoreLock lock; local
245 RlzValueStore* store = lock.GetStore();
273 ScopedRlzValueStoreLock lock; local
274 RlzValueStore* store = lock.GetStore();
302 ScopedRlzValueStoreLock lock; local
303 RlzValueStore* store = lock.GetStore()
314 ScopedRlzValueStoreLock lock; local
499 rlz_lib::ScopedRlzValueStoreLock lock; local
614 ScopedRlzValueStoreLock lock; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h 87 void setHorizontalScrollbarMode(ScrollbarMode mode, bool lock = false) { setScrollbarModes(mode, verticalScrollbarMode(), lock, verticalScrollbarLock()); }
88 void setVerticalScrollbarMode(ScrollbarMode mode, bool lock = false) { setScrollbarModes(horizontalScrollbarMode(), mode, horizontalScrollbarLock(), lock); }; local
93 void setHorizontalScrollbarLock(bool lock = true) { m_horizontalScrollbarLock = lock; }
95 void setVerticalScrollbarLock(bool lock = true) { m_verticalScrollbarLock = lock; }
98 void setScrollingModesLock(bool lock = true) { m_horizontalScrollbarLock = m_verticalScrollbarLock = lock; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.h 67 // - Supports a lock-free API for fast performance in single-threaded cases.
216 int lock; member in struct:WTF::PartitionRoot
524 spinLockLock(&root->lock);
526 spinLockUnlock(&root->lock);
542 spinLockLock(&root->lock);
544 spinLockUnlock(&root->lock);
ThreadingPthreads.cpp 130 atomicallyInitializedStaticMutex->lock();
217 // We don't want to lock across the call to join, since that can block our thread and cause deadlock.
312 void Mutex::lock() function in class:WTF::Mutex
ThreadingWin.cpp 141 atomicallyInitializedStaticMutex->lock();
278 void Mutex::lock() function in class:WTF::Mutex
287 // which will return an error if the lock is already owned by the
294 if (result != 0) { // We got the lock
295 // If this thread already had the lock, we must unlock and
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Image9.cpp 213 HRESULT Image9::lock(D3DLOCKED_RECT *lockedRect, const RECT *rect) function in class:rx::Image9
364 HRESULT result = lock(&locked, &lockRect);
465 HRESULT result = lock(&locked, &lockRect);
538 ERR("Failed to lock the source surface (rectangle might be invalid).");
545 result = lock(&destLock, &destRect);
549 ERR("Failed to lock the destination surface (rectangle might be invalid).");
  /external/chromium_org/third_party/libjingle/source/talk/base/
sigslot_unittest.cc 123 virtual void lock() { function in class:multi_threaded_local_fake
  /external/chromium_org/third_party/libxml/src/
threads.c 106 pthread_mutex_t lock; member in struct:_xmlMutex
122 pthread_mutex_t lock; member in struct:_xmlRMutex
131 xmlMutexPtr lock;
141 * - xmlLibraryLock a global lock
196 pthread_mutex_init(&tok->lock, NULL);
224 pthread_mutex_destroy(&tok->lock);
237 * xmlMutexLock() is used to lock a libxml2 token.
246 pthread_mutex_lock(&tok->lock);
275 pthread_mutex_unlock(&tok->lock);
290 * synchronizing access to data. token_r is a re-entrant lock and thus usefu
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_screen.h 51 uint32_t lock[NV50_TIC_MAX_ENTRIES / 32]; member in struct:nv50_screen::__anon12682
57 uint32_t lock[NV50_TSC_MAX_ENTRIES / 32]; member in struct:nv50_screen::__anon12683
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/
nvc0_screen.h 47 uint32_t lock[NVC0_TIC_MAX_ENTRIES / 32]; member in struct:nvc0_screen::__anon12692
53 uint32_t lock[NVC0_TSC_MAX_ENTRIES / 32]; member in struct:nvc0_screen::__anon12693
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/
apple_glx_drawable.h 120 void (*lock) (struct apple_glx_drawable * agd); member in struct:apple_glx_drawable
  /external/chromium_org/tools/gyp/tools/emacs/
gyp.el 1 ;;; gyp.el - font-lock-mode support for gyp files.
34 (gyp-add-font-lock-keywords))
48 ;;; Font-lock support
81 This allows us to treat (for the purposes of font-lock) several different
166 the section symbol that should be used to determine font-lock information for
183 matched. The group of the match indicates what style font-lock should apply.
184 See also `gyp-add-font-lock-keywords'."
202 ;; Set the match data to indicate to the font-lock mechanism the
211 (defun gyp-add-font-lock-keywords ()
212 "Add gyp-mode keywords to font-lock mechanism.
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 317 // Evaluate the lock operand. This is guaranteed to dominate the
318 // ARC release and lock-release cleanups.
320 llvm::Value *lock; local
322 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
323 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
325 lock = CGF.EmitScalarExpr(lockExpr);
327 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
329 // Acquire the lock
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepot.cc 72 // Optimisic lock-free allocation, essentially try to bump the region ptr.
91 // If failed, lock, retry and alloc new superblock.
124 static StackDesc *lock(atomic_uintptr_t *p) { function in namespace:__sanitizer
155 // If failed, lock, retry and insert new.
156 StackDesc *s2 = lock(p);
  /external/emma/core/java12/com/vladium/emma/data/
MetaData.java 52 synchronized (lock ()) method
103 public Object lock () method in class:MetaData
  /external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java 139 segment.lock();
160 segment.lock();
432 segment.lock();
  /external/kernel-headers/original/linux/
dmaengine.h 146 * @lock: protects access to the channels list
155 spinlock_t lock; member in struct:dma_client
mempolicy.h 132 spinlock_t lock; member in struct:shared_policy
notifier.h 42 spinlock_t lock; member in struct:atomic_notifier_head
56 spin_lock_init(&(name)->lock); \
68 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
  /external/kernel-headers/original/linux/mtd/
flashchip.h 84 spinlock_t lock; member in struct:flchip_shared
  /external/libnfc-nci/src/adaptation/
NfcAdaptation.cpp 550 mHalOpenCompletedEvent.lock ();
555 mHalCloseCompletedEvent.lock ();
642 ** Function: ThreadMutex::lock()
644 ** Description: lock kthe mutex
649 void ThreadMutex::lock() function in class:ThreadMutex
735 ** Description: class constructor, automatically lock the mutex
743 mm.lock();
  /external/libxml2/
threads.c 106 pthread_mutex_t lock; member in struct:_xmlMutex
122 pthread_mutex_t lock; member in struct:_xmlRMutex
131 xmlMutexPtr lock;
141 * - xmlLibraryLock a global lock
196 pthread_mutex_init(&tok->lock, NULL);
224 pthread_mutex_destroy(&tok->lock);
237 * xmlMutexLock() is used to lock a libxml2 token.
246 pthread_mutex_lock(&tok->lock);
275 pthread_mutex_unlock(&tok->lock);
290 * synchronizing access to data. token_r is a re-entrant lock and thus usefu
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_screen.h 51 uint32_t lock[NV50_TIC_MAX_ENTRIES / 32]; member in struct:nv50_screen::__anon23149
57 uint32_t lock[NV50_TSC_MAX_ENTRIES / 32]; member in struct:nv50_screen::__anon23150
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/mesa3d/src/gallium/drivers/nvc0/
nvc0_screen.h 47 uint32_t lock[NVC0_TIC_MAX_ENTRIES / 32]; member in struct:nvc0_screen::__anon23159
53 uint32_t lock[NVC0_TSC_MAX_ENTRIES / 32]; member in struct:nvc0_screen::__anon23160
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/mesa3d/src/glx/apple/
apple_glx_drawable.h 120 void (*lock) (struct apple_glx_drawable * agd); member in struct:apple_glx_drawable

Completed in 378 milliseconds

<<21222324252627282930>>