Lines Matching refs:service

850     // No SIGCHLD. Let the service subproc handle its children.
880 // service.adb.root property has been set by the "adb root" command
883 property_get("service.adb.root", value, "");
944 ** android usb device exists and the "service.adb.tcp.port" and
948 property_get("service.adb.tcp.port", value, "");
952 // listen on TCP port specified by service.adb.tcp.port property
1085 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
1090 if(!strcmp(service, "kill")) {
1103 if (!strncmp(service, "transport", strlen("transport"))) {
1107 if (!strncmp(service, "transport-usb", strlen("transport-usb"))) {
1109 } else if (!strncmp(service, "transport-local", strlen("transport-local"))) {
1111 } else if (!strncmp(service, "transport-any", strlen("transport-any"))) {
1113 } else if (!strncmp(service, "transport:", strlen("transport:"))) {
1114 service += strlen("transport:");
1115 serial = service;
1130 if (!strcmp(service, "devices")) {
1143 if (!strncmp(service, "connect:", 8)) {
1145 char* host = service + 8;
1158 if (!strncmp(service, "disconnect:", 11)) {
1161 char* serial = service + 11;
1187 if (!strcmp(service, "version")) {
1195 if(!strncmp(service,"get-serialno",strlen("get-serialno"))) {
1206 if (!strncmp(service,"emulator:",9)) {
1207 int port = atoi(service+9);
1214 if(!strncmp(service,"forward:",8) || !strncmp(service,"killforward:",12)) {
1219 int createForward = strncmp(service,"kill",4);
1221 local = service + (createForward ? 8 : 12);
1259 if(!strncmp(service,"get-state",strlen("get-state"))) {