Home
last modified time | relevance | path

Searched refs:new_serial (Results 1 – 2 of 2) sorted by relevance

/bionic/tests/
Dsystem_properties_test.cpp414 uint32_t new_serial; in TEST() local
415 __system_property_wait(pi, serial, &new_serial, nullptr); in TEST()
416 ASSERT_GT(new_serial, serial); in TEST()
/bionic/libc/bionic/
Dsystem_properties.cpp1413 uint32_t new_serial; in __system_property_wait_any() local
1414 __system_property_wait(nullptr, old_serial, &new_serial, nullptr); in __system_property_wait_any()
1415 return new_serial; in __system_property_wait_any()
1431 uint32_t new_serial; in __system_property_wait() local
1437 new_serial = load_const_atomic(serial_ptr, memory_order_acquire); in __system_property_wait()
1438 } while (new_serial == old_serial); in __system_property_wait()
1440 *new_serial_ptr = new_serial; in __system_property_wait()