Lines Matching defs:host
464 } else if(!HOST && !strncmp(name, "shell:", 6)) {
466 } else if(!HOST && !strncmp(name, "exec:", 5)) {
543 static void connect_device(const std::string& host, std::string* response) {
544 if (host.empty()) {
545 *response = "empty host name";
549 std::vector<std::string> pieces = android::base::Split(host, ":");
560 host' back together,
632 char *host = reinterpret_cast<char*>(cookie);
635 if (!strncmp(host, "emu:", 4)) {
636 connect_emulator(host + 4, &response);
638 connect_device(host, &response);
683 const char *host = name + 8;
684 int fd = create_service_thread(connect_service, (void *)host);