Home
last modified time | relevance | path

Searched refs:lock (Results 1 – 24 of 24) sorted by relevance

/bionic/libc/bionic/
Dpthread_spinlock.cpp37 Lock lock; member
46 static inline pthread_spinlock_internal_t* __get_internal_spinlock(pthread_spinlock_t* lock) { in __get_internal_spinlock() argument
47 return reinterpret_cast<pthread_spinlock_internal_t*>(lock); in __get_internal_spinlock()
51 pthread_spinlock_internal_t* lock = __get_internal_spinlock(lock_interface); in pthread_spin_init() local
52 lock->lock.init(pshared); in pthread_spin_init()
57 pthread_spinlock_internal_t* lock = __get_internal_spinlock(lock_interface); in pthread_spin_destroy() local
58 return lock->lock.trylock() ? 0 : EBUSY; in pthread_spin_destroy()
62 pthread_spinlock_internal_t* lock = __get_internal_spinlock(lock_interface); in pthread_spin_trylock() local
63 return lock->lock.trylock() ? 0 : EBUSY; in pthread_spin_trylock()
67 pthread_spinlock_internal_t* lock = __get_internal_spinlock(lock_interface); in pthread_spin_lock() local
[all …]
Dbionic_systrace.cpp37 g_lock.lock(); in should_trace()
46 g_lock.lock(); in get_trace_marker_fd()
Dpthread_rwlock.cpp310 rwlock->pending_lock.lock(); in __pthread_rwlock_timedrdlock()
329 rwlock->pending_lock.lock(); in __pthread_rwlock_timedrdlock()
381 rwlock->pending_lock.lock(); in __pthread_rwlock_timedwrlock()
396 rwlock->pending_lock.lock(); in __pthread_rwlock_timedwrlock()
489 rwlock->pending_lock.lock(); in pthread_rwlock_unlock()
Dpthread_mutex.cpp267 static Lock lock; variable
309 lock.lock(); in AllocId()
311 lock.unlock(); in AllocId()
319 lock.lock(); in FreeId()
322 lock.unlock(); in FreeId()
Dpthread_create.cpp250 thread->startup_handshake_lock.lock(); in __pthread_start()
295 thread->startup_handshake_lock.lock(); in pthread_create()
/bionic/libc/private/
Dbionic_lock.h59 void lock() { in lock() function
81 LockGuard(Lock& lock) : lock_(lock) { in LockGuard() argument
82 lock_.lock(); in LockGuard()
/bionic/benchmarks/
Dpthread_benchmark.cpp149 pthread_rwlock_t lock; in BM_pthread_rwlock_read() local
150 pthread_rwlock_init(&lock, NULL); in BM_pthread_rwlock_read()
153 pthread_rwlock_rdlock(&lock); in BM_pthread_rwlock_read()
154 pthread_rwlock_unlock(&lock); in BM_pthread_rwlock_read()
157 pthread_rwlock_destroy(&lock); in BM_pthread_rwlock_read()
162 pthread_rwlock_t lock; in BM_pthread_rwlock_write() local
163 pthread_rwlock_init(&lock, NULL); in BM_pthread_rwlock_write()
166 pthread_rwlock_wrlock(&lock); in BM_pthread_rwlock_write()
167 pthread_rwlock_unlock(&lock); in BM_pthread_rwlock_write()
170 pthread_rwlock_destroy(&lock); in BM_pthread_rwlock_write()
Dutil.h32 g_map_lock.lock();
/bionic/tests/
Dpthread_test.cpp883 pthread_rwlock_t lock; member
904 ASSERT_EQ(EBUSY, arg->trylock_function(&arg->lock)); in pthread_rwlock_wakeup_helper()
905 ASSERT_EQ(0, arg->lock_function(&arg->lock)); in pthread_rwlock_wakeup_helper()
907 ASSERT_EQ(0, pthread_rwlock_unlock(&arg->lock)); in pthread_rwlock_wakeup_helper()
914 ASSERT_EQ(0, pthread_rwlock_init(&wakeup_arg.lock, NULL)); in test_pthread_rwlock_reader_wakeup_writer()
915 ASSERT_EQ(0, pthread_rwlock_rdlock(&wakeup_arg.lock)); in test_pthread_rwlock_reader_wakeup_writer()
928 ASSERT_EQ(0, pthread_rwlock_unlock(&wakeup_arg.lock)); in test_pthread_rwlock_reader_wakeup_writer()
932 ASSERT_EQ(0, pthread_rwlock_destroy(&wakeup_arg.lock)); in test_pthread_rwlock_reader_wakeup_writer()
943 test_pthread_rwlock_reader_wakeup_writer([&](pthread_rwlock_t* lock) { in TEST() argument
944 return pthread_rwlock_timedwrlock(lock, &ts); in TEST()
[all …]
/bionic/libc/kernel/uapi/drm/
Ddrm_sarea.h47 struct drm_hw_lock lock; member
Ddrm.h47 #define _DRM_LOCK_IS_HELD(lock) ((lock) & _DRM_LOCK_HELD) argument
48 #define _DRM_LOCK_IS_CONT(lock) ((lock) & _DRM_LOCK_CONT) argument
49 #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD | _DRM_LOCK_CONT)) argument
71 __volatile__ unsigned int lock; member
Dvia_drm.h113 __u32 lock; member
/bionic/libc/system_properties/
Dcontext_node.cpp46 lock_.lock(); in Open()
/bionic/libc/kernel/uapi/linux/
Ddlm_device.h59 struct dlm_lock_params lock; member
Dcdrom.h641 __u8 lock : 1; member
643 __u8 lock : 1; member
Daudit.h326 __u32 lock; member
Dperf_event.h240 __u32 lock; member
/bionic/libc/malloc_debug/
DMapData.cpp149 std::lock_guard<std::mutex> lock(m_); in find() local
DRecordData.cpp122 std::lock_guard<std::mutex> lock(dump_lock_); in Dump() local
DPointerData.cpp535 pointer_mutex_.lock(); in PrepareFork()
536 frame_mutex_.lock(); in PrepareFork()
537 free_pointer_mutex_.lock(); in PrepareFork()
/bionic/libc/tzcode/
Dlocaltime.c22 static int lock(void) { return pthread_mutex_lock(&locallock); } in lock() function
25 static int lock(void) { return 0; } in lock() function
1308 if (lock() != 0) in tzsetwall()
1328 if (lock() != 0) in tzset()
1338 if (lock() != 0) in gmtcheck()
1493 int err = lock(); in localtime_tzset()
2149 int err = lock(); in mktime()
2229 int err = lock(); in time2posix()
2274 int err = lock(); in posix2time()
/bionic/tools/versioner/src/
DDriver.cpp182 std::unique_lock<std::mutex> lock(cc1_init_mutex); in generateTargetCC1Flags() local
DDeclarationDatabase.cpp340 std::unique_lock<std::mutex> lock(this->mutex); in parseAST() local
/bionic/docs/
Dstatus.md135 old lookup only held the global thread list lock for the duration of