Searched defs:old_serial (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/bionic/
H A Dsystem_property_api.cpp109 uint32_t __system_property_wait_any(uint32_t old_serial) { argument
110 return system_properties.WaitAny(old_serial);
114 bool __system_property_wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr, argument
116 return system_properties.Wait(pi, old_serial, new_serial_ptr, relative_timeout);
H A Dpthread_rwlock.cpp320 int old_serial = rwlock->pending_reader_wakeup_serial; local
326 old_serial, use_realtime_clock, abs_timeout_or_null);
387 int old_serial = rwlock->pending_writer_wakeup_serial; local
393 old_serial, use_realtime_clock, abs_timeout_or_null);
/bionic/libc/system_properties/
H A Dsystem_properties.cpp307 uint32_t SystemProperties::WaitAny(uint32_t old_serial) { argument
309 Wait(nullptr, old_serial, &new_serial, nullptr);
313 bool SystemProperties::Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr, argument
335 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) {
339 } while (new_serial == old_serial);

Completed in 53 milliseconds