Searched refs:old_serial (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/bionic/ |
D | system_property_api.cpp | 113 uint32_t __system_property_wait_any(uint32_t old_serial) { in __system_property_wait_any() argument 114 return system_properties.WaitAny(old_serial); in __system_property_wait_any() 118 bool __system_property_wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr, in __system_property_wait() argument 120 return system_properties.Wait(pi, old_serial, new_serial_ptr, relative_timeout); in __system_property_wait()
|
D | pthread_rwlock.cpp | 320 int old_serial = rwlock->pending_reader_wakeup_serial; in __pthread_rwlock_timedrdlock() local 326 old_serial, use_realtime_clock, abs_timeout_or_null); in __pthread_rwlock_timedrdlock() 387 int old_serial = rwlock->pending_writer_wakeup_serial; in __pthread_rwlock_timedwrlock() local 393 old_serial, use_realtime_clock, abs_timeout_or_null); in __pthread_rwlock_timedwrlock()
|
/bionic/libc/system_properties/ |
D | system_properties.cpp | 312 uint32_t SystemProperties::WaitAny(uint32_t old_serial) { in WaitAny() argument 314 Wait(nullptr, old_serial, &new_serial, nullptr); in WaitAny() 318 bool SystemProperties::Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr, in Wait() argument 340 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait() 344 } while (new_serial == old_serial); in Wait()
|
/bionic/libc/system_properties/include/system_properties/ |
D | system_properties.h | 69 uint32_t WaitAny(uint32_t old_serial); 70 bool Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr,
|