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

/system/bt/osi/include/
H A Dreactor.h63 // is passed back to the |read_ready| and |write_ready| functions. It is not
65 // including NULL. The |read_ready| and |write_ready| arguments are optional and
71 void (*read_ready)(void* context),
76 // reactor, has a valid |object|, and decides to change the |read_ready| and/or
79 // |object| may not be NULL, |read_ready| and |write_ready| may be NULL.
81 void (*read_ready)(void* context),
/system/bt/osi/src/
H A Dreactor.cc58 void (*read_ready)(void* context); // function to call when the file member in struct:reactor_object_t
140 void (*read_ready)(void* context),
151 object->read_ready = read_ready;
157 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP);
173 void (*read_ready)(void* context),
179 if (read_ready) event.events |= (EPOLLIN | EPOLLRDHUP);
191 object->read_ready = read_ready;
281 object->read_ready)
[all...]
H A Dsocket.cc43 socket_cb read_ready; member in struct:socket_t
202 socket->read_ready = read_cb;
224 socket->read_ready(socket, socket->context);
/system/bt/stack/include/
H A Dl2cap_client.h31 void (*read_ready)(l2cap_client_t* client, buffer_t* packet, void* context); member in struct:__anon1153
/system/bt/hci/src/
H A Dhci_inject.cc54 static void read_ready(socket_t* socket, void* context);
144 socket_register(socket, thread_get_reactor(thread), client, read_ready, NULL);
147 static void read_ready(UNUSED_ATTR socket_t* socket, void* context) { function
/system/bt/stack/l2cap/
H A Dl2cap_client.cc94 CHECK(callbacks->read_ready != NULL);
377 client->callbacks.read_ready(client, buffer, client->context);

Completed in 84 milliseconds