Searched refs:__pthread_mutex_timedlock (Results 1 – 9 of 9) sorted by relevance
/aosp_15_r20/bionic/libc/bionic/ |
H A D | pthread_mutex.cpp | 969 static int __pthread_mutex_timedlock(pthread_mutex_t* mutex_interface, bool use_realtime_clock, in __pthread_mutex_timedlock() function 991 return __pthread_mutex_timedlock(mutex_interface, true, abs_timeout, __FUNCTION__); in pthread_mutex_timedlock() 996 return __pthread_mutex_timedlock(mutex_interface, false, abs_timeout, __FUNCTION__); in pthread_mutex_timedlock_monotonic_np() 1003 return __pthread_mutex_timedlock(mutex_interface, false, abs_timeout, __FUNCTION__); in pthread_mutex_clocklock() 1005 return __pthread_mutex_timedlock(mutex_interface, true, abs_timeout, __FUNCTION__); in pthread_mutex_clocklock()
|
/aosp_15_r20/external/trusty/musl/src/thread/ |
D | pthread_mutex_timedlock.c | 38 int __pthread_mutex_timedlock(pthread_mutex_t *restrict m, const struct timespec *restrict at) in __pthread_mutex_timedlock() function 74 weak_alias(__pthread_mutex_timedlock, pthread_mutex_timedlock);
|
D | mtx_timedlock.c | 7 int ret = __pthread_mutex_timedlock((pthread_mutex_t *)m, ts); in mtx_timedlock()
|
D | pthread_mutex_lock.c | 9 return __pthread_mutex_timedlock(m, 0); in __pthread_mutex_lock()
|
/aosp_15_r20/external/musl/src/thread/ |
H A D | pthread_mutex_timedlock.c | 56 int __pthread_mutex_timedlock(pthread_mutex_t *restrict m, const struct timespec *restrict at) in __pthread_mutex_timedlock() function 92 weak_alias(__pthread_mutex_timedlock, pthread_mutex_timedlock);
|
H A D | mtx_timedlock.c | 7 int ret = __pthread_mutex_timedlock((pthread_mutex_t *)m, ts); in mtx_timedlock()
|
H A D | pthread_mutex_lock.c | 9 return __pthread_mutex_timedlock(m, 0); in __pthread_mutex_lock()
|
/aosp_15_r20/external/musl/src/include/ |
H A D | pthread.h | 15 hidden int __pthread_mutex_timedlock(pthread_mutex_t *restrict, const struct timespec *restrict);
|
/aosp_15_r20/external/trusty/musl/src/include/ |
D | pthread.h | 15 hidden int __pthread_mutex_timedlock(pthread_mutex_t *restrict, const struct timespec *restrict);
|