Searched refs:old_serial (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/bionic/ |
D | system_property_api.cpp | 114 uint32_t __system_property_wait_any(uint32_t old_serial) { in __system_property_wait_any() argument 115 return system_properties.WaitAny(old_serial); in __system_property_wait_any() 119 bool __system_property_wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr, in __system_property_wait() argument 121 return system_properties.Wait(pi, old_serial, new_serial_ptr, relative_timeout); in __system_property_wait()
|
D | pthread_rwlock.cpp | 321 int old_serial = rwlock->pending_reader_wakeup_serial; in __pthread_rwlock_timedrdlock() local 327 old_serial, use_realtime_clock, abs_timeout_or_null); in __pthread_rwlock_timedrdlock() 388 int old_serial = rwlock->pending_writer_wakeup_serial; in __pthread_rwlock_timedwrlock() local 394 old_serial, use_realtime_clock, abs_timeout_or_null); in __pthread_rwlock_timedwrlock()
|
/bionic/libc/system_properties/include/system_properties/ |
D | system_properties.h | 68 uint32_t WaitAny(uint32_t old_serial); 69 bool Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr,
|
/bionic/libc/system_properties/ |
D | system_properties.cpp | 416 uint32_t SystemProperties::WaitAny(uint32_t old_serial) { in WaitAny() argument 418 Wait(nullptr, old_serial, &new_serial, nullptr); in WaitAny() 422 bool SystemProperties::Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr, in Wait() argument 444 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait() 448 } while (new_serial == old_serial); in Wait()
|