Home
last modified time | relevance | path

Searched refs:read_ready (Results 1 – 6 of 6) sorted by relevance

/system/bt/osi/src/
Dreactor.cc58 void (*read_ready)(void* context); // function to call when the file member
138 void (*read_ready)(void* context), in reactor_register()
149 object->read_ready = read_ready; in reactor_register()
155 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP); in reactor_register()
171 void (*read_ready)(void* context), in reactor_change_registration()
177 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP); in reactor_change_registration()
189 object->read_ready = read_ready; in reactor_change_registration()
278 object->read_ready) in run_reactor()
279 object->read_ready(object->context); in run_reactor()
Dsocket.cc43 socket_cb read_ready; member
199 socket->read_ready = read_cb; in socket_register()
221 socket->read_ready(socket, socket->context); in internal_read_ready()
/system/bt/gd/rust/common/src/
Dtime.rs35 let mut read_ready = self.fd.readable().await.unwrap(); in expired() localVariable
36 read_ready.clear_ready(); in expired()
37 drop(read_ready); in expired()
65 let mut read_ready = self.fd.readable().await.unwrap(); in tick() localVariable
66 read_ready.clear_ready(); in tick()
67 drop(read_ready); in tick()
/system/bt/osi/include/
Dreactor.h71 void (*read_ready)(void* context),
81 void (*read_ready)(void* context),
/system/bt/hci/src/
Dhci_inject.cc55 static void read_ready(socket_t* socket, void* context);
147 socket_register(socket, thread_get_reactor(thread), client, read_ready, NULL); in accept_ready()
150 static void read_ready(UNUSED_ATTR socket_t* socket, void* context) { in read_ready() function
/system/bt/test/stub/
Dosi.cc202 void (*read_ready)(void* context), in reactor_change_registration()
208 void (*read_ready)(void* context), in reactor_register()