HomeSort by relevance Sort by last modified time
    Searched refs:old_serial (Results 1 - 5 of 5) sorted by null

  /bionic/libc/bionic/
system_property_api.cpp 107 uint32_t __system_property_wait_any(uint32_t old_serial) {
108 return system_properties.WaitAny(old_serial);
112 bool __system_property_wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr,
114 return system_properties.Wait(pi, old_serial, new_serial_ptr, relative_timeout);
pthread_rwlock.cpp 320 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/include/system_properties/
system_properties.h 70 uint32_t WaitAny(uint32_t old_serial);
71 bool Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr,
  /bionic/libc/system_properties/
system_properties.cpp 307 uint32_t SystemProperties::WaitAny(uint32_t old_serial) {
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,
335 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) {
339 } while (new_serial == old_serial);
  /external/selinux/libsemanage/src/
database_llist.c 310 int old_serial = dbase->cache_serial; local
317 if (old_serial >= 0) {

Completed in 296 milliseconds