Searched refs:write_ready (Results 1 - 5 of 5) 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
72 void (*write_ready)(void* context));
77 // |write_ready| callback routines, they can call this routine. Returns true if
79 // |object| may not be NULL, |read_ready| and |write_ready| may be NULL.
82 void (*write_ready)(void* context));
/system/bt/osi/src/
H A Dreactor.cc60 void (*write_ready)(void* context); // function to call when the file member in struct:reactor_object_t
141 void (*write_ready)(void* context)) {
152 object->write_ready = write_ready;
158 if (write_ready) event.events |= EPOLLOUT;
174 void (*write_ready)(void* context)) {
180 if (write_ready) event.events |= EPOLLOUT;
192 object->write_ready = write_ready;
284 object->write_ready)
[all...]
H A Dsocket.cc44 socket_cb write_ready; member in struct:socket_t
203 socket->write_ready = write_cb;
231 socket->write_ready(socket, socket->context);
/system/bt/stack/include/
H A Dl2cap_client.h32 void (*write_ready)(l2cap_client_t* client, void* context); member in struct:__anon1164
77 // the caller must wait for the 'write_ready' callback to write additional data
/system/bt/stack/l2cap/
H A Dl2cap_client.cc96 CHECK(callbacks->write_ready != NULL);
360 client->callbacks.write_ready(client, client->context);

Completed in 132 milliseconds