HomeSort by relevance Sort by last modified time
    Searched refs:lock_count (Results 1 - 17 of 17) sorted by null

  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/
release.pass.cpp 24 static int lock_count; member in struct:mutex
26 void lock_shared() {++lock_count;}
30 int mutex::lock_count = 0; member in class:mutex
40 assert(mutex::lock_count == 1);
45 assert(mutex::lock_count == 1);
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/
release.pass.cpp 23 static int lock_count; member in struct:mutex
25 void lock() {++lock_count;}
29 int mutex::lock_count = 0; member in class:mutex
39 assert(mutex::lock_count == 1);
44 assert(mutex::lock_count == 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/
release.pass.cpp 24 static int lock_count; member in struct:mutex
26 void lock_shared() {++lock_count;}
30 int mutex::lock_count = 0; member in class:mutex
40 assert(mutex::lock_count == 1);
45 assert(mutex::lock_count == 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/
release.pass.cpp 23 static int lock_count; member in struct:mutex
25 void lock() {++lock_count;}
29 int mutex::lock_count = 0; member in class:mutex
39 assert(mutex::lock_count == 1);
44 assert(mutex::lock_count == 1);
  /external/webrtc/webrtc/base/
sigslot_unittest.cc 113 int lock_count() { return lock_count_; } function in class:multi_threaded_local_fake
145 int SlotLockCount() { return mt_receiver_.lock_count(); }
147 int SignalLockCount() { return SignalMTLoopback.lock_count(); }
222 const int lock_count = SignalLockCount(); local
225 EXPECT_EQ(lock_count + 1, SignalLockCount());
  /external/drm_gralloc/
gralloc_drm_priv.h 85 int lock_count; member in struct:gralloc_drm_bo_t
gralloc_drm.cpp 367 if (bo->lock_count && (bo->locked_for & usage) != usage)
385 bo->lock_count++;
399 if (!bo->lock_count)
405 bo->lock_count--;
406 if (!bo->lock_count)
  /external/mesa3d/src/gallium/state_trackers/nine/
volume9.h 55 unsigned lock_count; member in struct:NineVolume9
volume9.c 81 This->lock_count = 0;
264 user_assert(This->lock_count == 0, D3DERR_INVALIDCALL);
266 /* set pBits to NULL after lock_count check */
354 ++This->lock_count;
363 DBG("This=%p lock_count=%u\n", This, This->lock_count);
364 user_assert(This->lock_count, D3DERR_INVALIDCALL);
371 --This->lock_count;
surface9.h 40 int lock_count; member in struct:NineSurface9
surface9.c 424 user_assert(This->lock_count == 0, D3DERR_INVALIDCALL);
426 /* set pBits to NULL after lock_count check */
532 ++This->lock_count;
540 DBG("This=%p lock_count=%u\n", This, This->lock_count);
541 user_assert(This->lock_count, D3DERR_INVALIDCALL);
548 --This->lock_count;
796 assert(!This->lock_count);
device9.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_atheos.h 151 static atomic_t lock_count = 0; variable
172 this_lock = atomic_add(&lock_count, 1);
thread_beos.h 169 static int32 lock_count = 0; variable
186 this_lock = atomic_add( &lock_count, 1 );
  /external/python/cpython2/Python/
thread_atheos.h 151 static atomic_t lock_count = 0; variable
172 this_lock = atomic_add(&lock_count, 1);
thread_beos.h 169 static int32 lock_count = 0; variable
186 this_lock = atomic_add( &lock_count, 1 );
  /system/core/debuggerd/handler/
debuggerd_fallback.cpp 303 static int lock_count; local
306 if (lock_count++ > 0) {
319 --lock_count;

Completed in 322 milliseconds