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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon58253
26 volatile unsigned int lock; member in struct:__anon58254
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon58650
26 volatile unsigned int lock; member in struct:__anon58651
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
mmu.h 27 struct mutex lock; member in struct:__anon59544
spinlock_types.h 31 unsigned int lock; member in struct:__anon59549
  /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:__anon2588::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:__anon8337::SecurityServicesSingleton
29 base::Lock lock_;
38 base::Lock& GetMacSecurityServicesLock() {
39 return SecurityServicesSingleton::GetInstance()->lock();
  /external/chromium_org/mojo/system/
dispatcher.h 12 #include "base/synchronization/lock.h"
24 // object is thread-safe, with its state being protected by a single lock
26 // |lock()| method).
34 // NOTE(vtl): This puts a big lock around each dispatcher (i.e., handle), and
35 // prevents the various |...ImplNoLock()|s from releasing the lock as soon as
91 // under the dispatcher's lock.
148 base::Lock& lock() const { return lock_; } function in class:mojo::system::Dispatcher
153 // For |WriteMessage()|, |CoreImpl| needs access to |lock()| and
159 mutable base::Lock lock_
    [all...]
  /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/thunk/
ppb_var_resource_dev_thunk.cc 20 ProxyAutoLock lock; local
30 ProxyAutoLock lock; local
  /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/skia/ext/
SkDiscardableMemory_chrome.cc 9 bool SkDiscardableMemoryChrome::lock() { function in class:SkDiscardableMemoryChrome
10 const base::LockDiscardableMemoryStatus status = discardable_->Lock();
  /external/chromium_org/third_party/WebKit/Source/platform/
PurgeableBuffer.cpp 70 bool PurgeableBuffer::lock() function in class:WebCore::PurgeableBuffer
73 if (!m_memory->lock()) {
  /external/chromium_org/third_party/WebKit/Source/web/tests/
SpinLockTest.cpp 48 static int lock = 0; member in namespace:__anon10952
73 spinLockLock(&lock);
75 spinLockUnlock(&lock);
  /external/chromium_org/third_party/WebKit/Source/wtf/
WTF.cpp 77 static int lock = 0; local
79 spinLockLock(&lock);
83 spinLockUnlock(&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 21 bool WebDiscardableMemoryImpl::lock() { function in class:webkit_glue::WebDiscardableMemoryImpl
22 base::LockDiscardableMemoryStatus status = discardable_->Lock();

Completed in 368 milliseconds

1 2 34 5 6 7 8 91011>>