Home | History | Annotate | Download | only in adb

Lines Matching refs:service

156 /* A handle to adb-debug qemud service in the emulator. */
159 /* Initializes connection with the adb-debug qemud service in the emulator. */
168 /* adb debugging QEMUD service connection request. */
916 // service.adb.root property has been set by the "adb root" command
919 property_get("service.adb.root", value, "");
944 // No SIGCHLD. Let the service subproc handle its children.
1018 ** android usb device exists and the "service.adb.tcp.port" and
1022 property_get("service.adb.tcp.port", value, "");
1026 // listen on TCP port specified by service.adb.tcp.port property
1159 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
1164 if(!strcmp(service, "kill")) {
1177 if (!strncmp(service, "transport", strlen("transport"))) {
1181 if (!strncmp(service, "transport-usb", strlen("transport-usb"))) {
1183 } else if (!strncmp(service, "transport-local", strlen("transport-local"))) {
1185 } else if (!strncmp(service, "transport-any", strlen("transport-any"))) {
1187 } else if (!strncmp(service, "transport:", strlen("transport:"))) {
1188 service += strlen("transport:");
1189 serial = service;
1204 if (!strcmp(service, "devices")) {
1217 if (!strncmp(service, "connect:", 8)) {
1219 char* host = service + 8;
1232 if (!strncmp(service, "disconnect:", 11)) {
1235 char* serial = service + 11;
1261 if (!strcmp(service, "version")) {
1269 if(!strncmp(service,"get-serialno",strlen("get-serialno"))) {
1280 if (!strncmp(service,"emulator:",9)) {
1281 int port = atoi(service+9);
1288 if(!strncmp(service,"forward:",8) || !strncmp(service,"killforward:",12)) {
1293 int createForward = strncmp(service,"kill",4);
1295 local = service + (createForward ? 8 : 12);
1333 if(!strncmp(service,"get-state",strlen("get-state"))) {
1356 * adb-debug qemud service in the emulator. */