Searched refs:read_ready (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/system/osi/src/ |
D | reactor.cc | 59 void (*read_ready)(void* context); // function to call when the file member 139 void (*read_ready)(void* context), in reactor_register() 150 object->read_ready = read_ready; in reactor_register() 156 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP); in reactor_register() 172 void (*read_ready)(void* context), in reactor_change_registration() 178 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP); in reactor_change_registration() 190 object->read_ready = read_ready; in reactor_change_registration() 279 object->read_ready) in run_reactor() 280 object->read_ready(object->context); in run_reactor()
|
D | socket.cc | 44 socket_cb read_ready; member 198 socket->read_ready = read_cb; in socket_register() 220 socket->read_ready(socket, socket->context); in internal_read_ready()
|
/packages/modules/Bluetooth/system/gd/rust/common/src/ |
D | time.rs | 60 let mut read_ready = self.fd.readable().await.unwrap(); in expired() localVariable 61 read_ready.clear_ready(); in expired() 62 drop(read_ready); in expired() 92 let mut read_ready = self.fd.readable().await.unwrap(); in tick() localVariable 93 read_ready.clear_ready(); in tick() 94 drop(read_ready); in tick()
|
/packages/modules/Bluetooth/system/gd/rust/linux/mgmt/src/ |
D | time.rs | 30 let mut read_ready = self.fd.readable().await.unwrap(); in expired() localVariable 31 read_ready.clear_ready(); in expired() 32 drop(read_ready); in expired()
|
/packages/modules/Bluetooth/system/osi/include/ |
D | reactor.h | 71 void (*read_ready)(void* context), 81 void (*read_ready)(void* context),
|
/packages/modules/Bluetooth/system/test/stub/ |
D | osi.cc | 175 void (*read_ready)(void* context), in reactor_change_registration() 181 void (*read_ready)(void* context), in reactor_register()
|
/packages/modules/adb/ |
D | test_adb.py | 71 read_ready, _, _ = select.select(rlist, [], []) 72 for ready in read_ready:
|