Lines Matching full:service
169 /* A handle to adb-debug qemud service in the emulator. */
172 /* Initializes connection with the adb-debug qemud service in the emulator. */
181 /* adb debugging QEMUD service connection request. */
1236 // service.adb.root property has been set by the "adb root" command
1239 property_get("service.adb.root", value, "");
1264 // No SIGCHLD. Let the service subproc handle its children.
1352 property_get("service.adb.tcp.port", value, "");
1358 // listen on TCP port specified by service.adb.tcp.port property
1390 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
1395 if(!strcmp(service, "kill")) {
1408 if (!strncmp(service, "transport", strlen("transport"))) {
1412 if (!strncmp(service, "transport-usb", strlen("transport-usb"))) {
1414 } else if (!strncmp(service, "transport-local", strlen("transport-local"))) {
1416 } else if (!strncmp(service, "transport-any", strlen("transport-any"))) {
1418 } else if (!strncmp(service, "transport:", strlen("transport:"))) {
1419 service += strlen("transport:");
1420 serial = service;
1435 if (!strncmp(service, "devices", 7)) {
1437 int use_long = !strcmp(service+7, "-l");
1438 if (use_long || service[7] == 0) {
1451 if (!strncmp(service, "disconnect:", 11)) {
1454 char* serial = service + 11;
1480 if (!strcmp(service, "version")) {
1488 if(!strncmp(service,"get-serialno",strlen("get-serialno"))) {
1498 if(!strncmp(service,"get-devpath",strlen("get-devpath"))) {
1509 if (!strncmp(service,"emulator:",9)) {
1510 int port = atoi(service+9);
1517 if(!strcmp(service,"list-forward")) {
1531 if (!strcmp(service,"killforward-all")) {
1537 if(!strncmp(service,"forward:",8) ||
1538 !strncmp(service,"killforward:",12)) {
1543 int createForward = strncmp(service,"kill",4);
1546 local = strchr(service, ':') + 1;
1612 if(!strncmp(service,"get-state",strlen("get-state"))) {
1635 * adb-debug qemud service in the emulator. */