Searched refs:read_ready (Results 1 – 7 of 7) sorted by relevance
/system/bt/osi/src/ |
D | reactor.cc | 58 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()
|
D | socket.cc | 43 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/ |
D | reactor.h | 71 void (*read_ready)(void* context), 81 void (*read_ready)(void* context),
|
/system/bt/hci/src/ |
D | hci_inject.cc | 54 static void read_ready(socket_t* socket, void* context); 144 socket_register(socket, thread_get_reactor(thread), client, read_ready, NULL); in accept_ready() 147 static void read_ready(UNUSED_ATTR socket_t* socket, void* context) { in read_ready() function
|
/system/bt/stack/include/ |
D | l2cap_client.h | 31 void (*read_ready)(l2cap_client_t* client, buffer_t* packet, void* context); member
|
/system/bt/stack/l2cap/ |
D | l2cap_client.cc | 94 CHECK(callbacks->read_ready != NULL); in l2cap_client_new() 377 client->callbacks.read_ready(client, buffer, client->context); in read_ready_cb()
|
/system/core/adb/ |
D | test_adb.py | 64 read_ready, _, _ = select.select(rlist, [], []) 65 for ready in read_ready:
|