Home
last modified time | relevance | path

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

/system/bt/osi/src/
Dreactor.cc58 void (*read_ready)(void* context); // function to call when the file member
140 void (*read_ready)(void* context), in reactor_register()
151 object->read_ready = read_ready; in reactor_register()
157 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP); in reactor_register()
173 void (*read_ready)(void* context), in reactor_change_registration()
179 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP); in reactor_change_registration()
191 object->read_ready = read_ready; in reactor_change_registration()
281 object->read_ready) in run_reactor()
282 object->read_ready(object->context); in run_reactor()
Dsocket.cc43 socket_cb read_ready; member
202 socket->read_ready = read_cb; in socket_register()
224 socket->read_ready(socket, socket->context); in internal_read_ready()
/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/core/adb/
Dtest_adb.py69 read_ready, _, _ = select.select(rlist, [], [])
70 for ready in read_ready: