HomeSort by relevance Sort by last modified time
    Searched defs:Lock (Results 1 - 25 of 301) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dmo.h 25 #define Lock DMOLock
29 #undef Lock
  /external/libchrome/base/synchronization/
lock.cc 5 // This file is used for debugging assertion support. The Lock class
9 #include "base/synchronization/lock.h"
15 Lock::Lock() : lock_() {
18 Lock::~Lock() {
22 void Lock::AssertAcquired() const {
26 void Lock::CheckHeldAndUnmark() {
31 void Lock::CheckUnheldAndMark() {
  /external/sfntly/cpp/src/sfntly/port/
lock.cc 17 #include "sfntly/port/lock.h"
23 Lock::Lock() {
29 Lock::~Lock() {
33 bool Lock::Try() {
40 void Lock::Acquire() {
44 void Lock::Unlock() {
50 Lock::Lock() {
    [all...]
lock.h 37 class Lock {
39 Lock();
40 ~Lock();
42 // If the lock is not held, take it and return true. If the lock is already
46 // Take the lock, blocking until it is available if necessary.
49 // Release the lock. This must only be called by the lock's holder: after
50 // a successful call to Try, or a call to Lock.
55 NO_COPY_AND_ASSIGN(Lock);
    [all...]
  /external/clang/test/SemaCXX/
operator-arrow-temporary.cpp 8 template<int x> struct Lock {
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
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/
PassRegistry.h 40 mutable sys::SmartRWMutex<true> Lock;
  /device/google/cuttlefish_common/guest/vsoc/lib/
guest_lock.cpp 16 #include "common/vsoc/shm/lock.h"
24 void GuestLock::Lock() {
  /device/google/cuttlefish_common/host/vsoc/lib/
host_lock.cpp 16 #include "common/vsoc/shm/lock.h"
26 void HostLock::Lock() {
  /external/compiler-rt/test/tsan/
mutex_annotations.cc 21 void Lock() {
36 m.Lock();
40 m.Lock();
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
destructor.pass.cpp 25 typedef std::unique_lock<std::mutex> Lock;
32 Lock lk(m);
40 Lock lk(m);
51 Lock lk(m);
  /external/llvm/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
Lock.java 41 * {@code Lock} implementations provide more extensive locking
47 * <p>A lock is a tool for controlling access to a shared resource by
48 * multiple threads. Commonly, a lock provides exclusive access to a
49 * shared resource: only one thread at a time can acquire the lock and
50 * all access to the shared resource requires that the lock be
52 * a shared resource, such as the read lock of a {@link ReadWriteLock}.
55 * access to the implicit monitor lock associated with every object, but
56 * forces all lock acquisition and release to occur in a block-structured way:
68 * acquire the lock of node A, then node B, then release A and acquire
70 * {@code Lock} interface enable the use of such techniques b
186 void lock(); method in interface:Lock
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/
PassRegistry.h 41 mutable sys::SmartRWMutex<true> Lock;

Completed in 611 milliseconds

1 2 3 4 5 6 7 8 91011>>