HomeSort by relevance Sort by last modified time
    Searched defs:lock (Results 76 - 100 of 1458) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon59699
26 volatile unsigned int lock; member in struct:__anon59700
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon60062
26 volatile unsigned int lock; member in struct:__anon60063
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon60459
26 volatile unsigned int lock; member in struct:__anon60460
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
mmu.h 27 struct mutex lock; member in struct:__anon61353
spinlock_types.h 31 unsigned int lock; member in struct:__anon61358
  /system/core/fastbootd/
protocol.h 43 pthread_mutex_t lock; member in struct:protocol_handle
  /bionic/libc/kernel/common/linux/
blockgroup_lock.h 26 spinlock_t lock; member in struct:bgl_lock
32 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /development/ndk/platforms/android-3/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /external/chromium/chrome/browser/download/
download_types.h 13 #include "base/synchronization/lock.h"
24 // is synchronized via the lock. Each entry in 'contents' represents one data
30 base::Lock lock; member in struct:DownloadBuffer
  /external/chromium/chrome/browser/importer/
firefox_profile_lock_unittest.cc 30 lock1.Lock();
34 // Tests basic functionality and verifies that the lock file is deleted after
44 scoped_ptr<FirefoxProfileLock> lock; local
45 EXPECT_EQ(static_cast<FirefoxProfileLock*>(NULL), lock.get());
47 lock.reset(new FirefoxProfileLock(test_path));
48 EXPECT_TRUE(lock->HasAcquired());
50 lock->Unlock();
51 EXPECT_FALSE(lock->HasAcquired());
53 // In the posix code, we don't delete the file when releasing the lock.
57 lock->Lock()
86 scoped_ptr<FirefoxProfileLock> lock; local
    [all...]
  /external/chromium/crypto/
mac_security_services_lock.cc 8 #include "base/synchronization/lock.h"
21 base::Lock& lock() { return lock_; } function in class:__anon5301::SecurityServicesSingleton
29 base::Lock lock_;
38 base::Lock& GetMacSecurityServicesLock() {
39 return SecurityServicesSingleton::GetInstance()->lock();
  /external/chromium_org/chrome/browser/importer/
firefox_profile_lock_unittest.cc 28 lock1.Lock();
32 // Tests basic functionality and verifies that the lock file is deleted after
39 scoped_ptr<FirefoxProfileLock> lock; local
40 EXPECT_EQ(static_cast<FirefoxProfileLock*>(NULL), lock.get());
42 lock.reset(new FirefoxProfileLock(test_path));
43 EXPECT_TRUE(lock->HasAcquired());
45 lock->Unlock();
46 EXPECT_FALSE(lock->HasAcquired());
48 // In the posix code, we don't delete the file when releasing the lock.
52 lock->Lock()
78 scoped_ptr<FirefoxProfileLock> lock; local
    [all...]
  /external/chromium_org/crypto/
mac_security_services_lock.cc 8 #include "base/synchronization/lock.h"
21 base::Lock& lock() { return lock_; } function in class:__anon10571::SecurityServicesSingleton
29 base::Lock lock_;
38 base::Lock& GetMacSecurityServicesLock() {
39 return SecurityServicesSingleton::GetInstance()->lock();
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_MCS_lock.c 41 * thread. The 'lock' is nothing more than a global pointer that points to
46 * the MCS spin lock for use as a general mutex that will suspend threads
47 * when there is lock contention.
55 * locks do not require any unique 'name' to identify the lock to all
63 * every lock held concurrently by a thread.
147 * ptw32_mcs_lock_acquire -- acquire an MCS lock.
158 ptw32_mcs_lock_acquire (ptw32_mcs_lock_t * lock, ptw32_mcs_local_node_t * node)
162 node->lock = lock;
167 /* queue for the lock */
194 ptw32_mcs_lock_t *lock = node->lock; local
    [all...]
  /external/chromium_org/ppapi/proxy/
locking_resource_releaser.h 26 ProxyAutoLock lock; local
  /external/chromium_org/ppapi/shared_impl/
proxy_lock.cc 8 #include "base/synchronization/lock.h"
14 // Simple single-thread deadlock detector for the proxy lock.
15 // |true| when the current thread has the lock.
21 base::Lock* lock(PpapiGlobals::Get()->GetProxyLock());
22 if (lock) {
23 // This thread does not already hold the lock.
27 lock->Acquire();
34 base::Lock* lock(PpapiGlobals::Get()->GetProxyLock())
58 ProxyAutoUnlock lock; local
    [all...]
  /external/chromium_org/rlz/lib/
rlz_lib_clear.cc 20 rlz_lib::ScopedRlzValueStoreLock lock; local
21 rlz_lib::RlzValueStore* store = lock.GetStore();
32 rlz_lib::ScopedRlzValueStoreLock lock; local
33 rlz_lib::RlzValueStore* store = lock.GetStore();
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PurgeableBuffer.cpp 70 bool PurgeableBuffer::lock() function in class:WebCore::PurgeableBuffer
73 if (!m_memory->lock()) {
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLIndexBuffer.cpp 29 void* GrGLIndexBuffer::lock() { function in class:GrGLIndexBuffer
31 return fImpl.lock(this->getGpuGL());
GrGLVertexBuffer.cpp 30 void* GrGLVertexBuffer::lock() { function in class:GrGLVertexBuffer
32 return fImpl.lock(this->getGpuGL());
  /external/chromium_org/third_party/skia/src/utils/
SkCondVar.cpp 30 void SkCondVar::lock() { function in class:SkCondVar
  /external/chromium_org/webkit/child/
web_discardable_memory_impl.cc 19 bool WebDiscardableMemoryImpl::lock() { function in class:webkit_glue::WebDiscardableMemoryImpl
20 base::LockDiscardableMemoryStatus status = discardable_->Lock();
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 42 private final ReentrantLock lock = new ReentrantLock(); field in class:AbstractService
49 * shutdownWhenStartupFinishes is true. Guarded by {@code lock}.
55 * up. Guarded by {@code lock}.
86 lock.lock();
96 lock.unlock();
104 lock.lock();
121 lock.unlock();
146 lock.lock()
    [all...]
  /external/kernel-headers/original/linux/
blockgroup_lock.h 37 spinlock_t lock; member in struct:bgl_lock
49 spin_lock_init(&bgl->locks[i].lock);
57 (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
Mutex.cpp 71 ** Function: lock
73 ** Description: Block the thread and try lock the mutex.
78 void Mutex::lock () function in class:Mutex
83 ALOGE ("Mutex::lock: fail lock; error=0x%X", res);
111 ** Description: Try to lock the mutex.

Completed in 1007 milliseconds

1 2 34 5 6 7 8 91011>>