Searched refs:destination (Results 1 - 3 of 3) sorted by relevance

/system/core/include/cutils/
H A Dmq.h31 /** A destination to which messages can be sent. */
40 * @param destination to which the message was sent
43 typedef void MqMessageListener(MqDestination* destination, MqMessage* message);
46 * Hears a destination close.
48 * @param destination that closed
50 typedef void MqCloseListener(MqDestination* destination);
59 * @param replyTo destination to which replies should be sent, NULL if none
64 /** Sends a message to a destination. */
65 void mqSendMessage(MqMessage* message, MqDestination* destination);
70 * Creates a new destination
[all...]
/system/core/adb/
H A Dadb.h247 asocket *create_local_service_socket(const char *destination);
250 void connect_to_remote(asocket *s, const char *destination);
H A Dsockets.c541 void connect_to_remote(asocket *s, const char *destination) argument
545 int len = strlen(destination) + 1;
548 fatal("destination oversized");
551 D("LS(%d): connect('%s')\n", s->id, destination);
555 strcpy((char*) p->data, destination);

Completed in 20 milliseconds