Lines Matching full:serial
48 #define SERIAL_VALUE_LEN(serial) ((serial) >> 24)
49 #define SERIAL_DIRTY(serial) ((serial) & 1)
70 ** 1. serial = pi->serial
71 ** 2. if SERIAL_DIRTY(serial), wait*, then goto 1
72 ** 3. memcpy(local, pi->value, SERIAL_VALUE_LEN(serial) + 1)
73 ** 4. if pi->serial != serial, goto 2
76 ** 1. pi->serial = pi->serial | 1
78 ** 3. pi->serial = (value_len << 24) | ((pi->serial + 1) & 0xffffff)
121 /* Read the serial number of a system property returned by
124 ** Returns the serial number on success, -1 on error.
131 unsigned int __system_property_wait_any(unsigned int serial);