Searched refs:read_ready (Results 1 – 6 of 6) sorted by relevance
/system/bt/osi/src/ |
D | reactor.c | 56 …void (*read_ready)(void *context); // function to call when the file descriptor becomes readable. member 134 void (*read_ready)(void *context), in reactor_register() 145 object->read_ready = read_ready; in reactor_register() 151 if (read_ready) in reactor_register() 168 void (*read_ready)(void *context), in reactor_change_registration() 174 if (read_ready) in reactor_change_registration() 186 object->read_ready = read_ready; in reactor_change_registration() 271 if (events[j].events & (EPOLLIN | EPOLLHUP | EPOLLRDHUP | EPOLLERR) && object->read_ready) in run_reactor() 272 object->read_ready(object->context); in run_reactor()
|
D | socket.c | 43 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()
|
/system/bt/osi/include/ |
D | reactor.h | 68 void (*read_ready)(void *context), 77 void (*read_ready)(void *context),
|
/system/bt/hci/src/ |
D | hci_inject.c | 61 static void read_ready(socket_t *socket, void *context); 145 socket_register(socket, thread_get_reactor(thread), client, read_ready, NULL); in accept_ready() 148 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.c | 89 assert(callbacks->read_ready != NULL); in l2cap_client_new() 358 client->callbacks.read_ready(client, buffer, client->context); in read_ready_cb()
|