Lines Matching full:service
38 * * the client sends the service name through the socket, as
39 * <service-name>
47 * where <name> is the service name, and <id> is a 2-hexchar
58 * * if the emulator refuses the service connection, it will
1213 * the client first sends the name of the system service
1221 * to the service.
1224 * the name of another service.
1307 /* the client hasn't registered a service yet,
1308 * so this must be the name of a service, call
1312 service '%.*s'",
1316 D("%s: service name too long", __FUNCTION__);
1366 /* allow the client to try registering another service */
1532 * ask the emulator to open it. 'service' must be a packet containing
1533 * the name of the service in its payload.
1535 * returns -1 if the service name is too long.
1541 multiplexer_open_channel( Multiplexer* mult, Packet* service )
1558 len = snprintf((char*)p->data, sizeof p->data, "connect:%.*s:%02x", service->len, service->data, channel);
1560 D("%s: weird, service name too long (%d > %d)", __FUNCTION__, len, sizeof(p->data));