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

1 2 3 4 5 6

  /external/chromium_org/chrome/browser/
process_singleton_startup_lock.h 22 // The object starts in a locked state. |Unlock()| must be called
41 bool locked() { return locked_; } function in class:ProcessSingletonStartupLock
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.h 61 int locked; member in struct:private_yuvhwdata
  /external/chromium_org/chrome/browser/chromeos/power/
power_button_observer.cc 55 bool locked = locker && locker->locked(); local
56 ash::Shell::GetInstance()->OnLockStateChanged(locked);
76 bool locked = *content::Details<bool>(details).ptr(); local
77 ash::Shell::GetInstance()->OnLockStateChanged(locked);
  /external/chromium_org/chrome/common/metrics/
metrics_log_base.h 74 bool locked() const { return locked_; } function in class:MetricsLogBase
  /external/chromium_org/ppapi/shared_impl/
proxy_lock.cc 37 const bool locked = g_proxy_locked_on_thread.Get().Get(); local
38 CHECK(locked);
50 const bool locked = g_proxy_locked_on_thread.Get().Get(); local
51 CHECK(locked);
  /external/chromium_org/chrome/browser/chromeos/input_method/
browser_state_monitor_unittest.cc 142 bool locked = true; local
145 content::Details<bool>(&locked));
151 locked = false;
154 content::Details<bool>(&locked));
  /external/chromium_org/third_party/WebKit/Source/wtf/
ParallelJobsGeneric.cpp 86 bool locked = m_mutex.tryLock(); local
88 if (!locked)
ThreadingPrimitives.h 104 bool locked() const { return m_locked; } function in class:WTF::MutexTryLocker
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPowerManager.java 34 private boolean locked; field in class:ShadowPowerManager.ShadowWakeLock
47 locked = true;
54 if (--refCount < 0) throw new RuntimeException("WakeLock under-locked");
56 locked = false;
62 return refCounted ? refCount > 0 : locked;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock.algorithm/
lock.pass.cpp 38 bool locked() const {return locked_;} function in class:L0
61 bool locked() const {return locked_;} function in class:L1
84 bool locked() const {return locked_;} function in class:L2
93 assert(l0.locked());
94 assert(l1.locked());
100 assert(l0.locked());
101 assert(l1.locked());
107 assert(l0.locked());
108 assert(l1.locked());
120 assert(!l0.locked());
    [all...]
try_lock.pass.cpp 33 bool locked() const {return locked_;} function in class:L0
51 bool locked() const {return locked_;} function in class:L1
69 bool locked() const {return locked_;} function in class:L2
78 assert(l0.locked());
79 assert(l1.locked());
85 assert(!l0.locked());
86 assert(!l1.locked());
92 assert(!l0.locked());
93 assert(!l1.locked());
105 assert(!l0.locked());
    [all...]
  /external/chromium_org/content/renderer/media/
webaudiosourceprovider_impl.cc 19 // must be checked via the locked() attribute. If acquisition was successful
29 bool locked() const { return acquired_; } function in class:content::__anon10420::AutoTryLock
101 if (!auto_try_lock.locked() || state_ != kPlaying) {
  /external/valgrind/main/drd/tests/
annotate_rwlock.c 28 volatile int locked; member in struct:__anon29894
41 p->locked = 0;
50 assert(p->locked == 0);
59 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
69 (void) __sync_fetch_and_sub(&p->locked, 1);
75 (void) __sync_fetch_and_sub(&p->locked, 1);
83 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
93 (void) __sync_fetch_and_sub(&p->locked, 1);
99 (void) __sync_fetch_and_sub(&p->locked, 1);
105 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1
    [all...]
  /external/valgrind/main/helgrind/tests/
annotate_rwlock.c 38 volatile int locked; member in struct:__anon29968
51 p->locked = 0;
60 assert(p->locked == 0);
69 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
79 (void) __sync_fetch_and_sub(&p->locked, 1);
85 (void) __sync_fetch_and_sub(&p->locked, 1);
94 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
104 (void) __sync_fetch_and_sub(&p->locked, 1);
110 (void) __sync_fetch_and_sub(&p->locked, 1);
117 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dummy_thread.py 130 def locked(self): member in class:LockType
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dummy_thread.py 130 def locked(self): member in class:LockType
  /dalvik/vm/
JarFile.cpp 200 bool locked = false; local
276 locked = true;
281 * The file descriptor returned is still locked, and is positioned
334 if (locked) {
341 locked = false;
359 if (locked)
RawDexFile.cpp 126 bool locked = false; local
169 locked = true;
174 * optimized DEX. The file descriptor returned is still locked,
217 if (locked) {
224 locked = false;
241 if (locked)
  /external/chromium/chrome/browser/
process_singleton.h 102 // is received while the ProcessSingleton is locked.
116 bool locked() { function in class:ProcessSingleton
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker.h 48 bool locked() const { return locked_; } function in class:chromeos::ScreenLocker
151 // True if the screen is locked, or false otherwise. This changes
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_item_controller.h 58 bool locked() { return locked_ > 0; } function in class:LauncherItemController
  /external/chromium_org/remoting/base/
compound_buffer.h 62 // Locks the buffer. After the buffer is locked, no data can be
67 // Returns true if content is locked.
68 bool locked() const { return locked_; } function in class:remoting::CompoundBuffer
104 // Caller keeps ownership of |buffer|. |buffer| must be locked.
  /external/chromium_org/third_party/libjingle/source/talk/base/
criticalsection.h 150 // subsequent code. Users *must* check locked() to determine if the
151 // lock was taken. If you're not calling locked(), you're doing it wrong!
163 bool locked() const { function in class:talk_base::TryCritScope
  /external/elfutils/libelf/
elf_getdata.c 367 int locked = 0; local
435 locked = 1;
452 if (!locked)
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv_c.h 53 int locked; member in struct:private_yuvhwdata

Completed in 848 milliseconds

1 2 3 4 5 6