Searched refs:adb_host_and_port (Results 1 – 2 of 2) sorted by relevance
77 std::shared_ptr<RunLoop> runLoop, const std::string &adb_host_and_port, in AdbHandler() argument80 LOG(VERBOSE) << "Connecting to " << adb_host_and_port; in AdbHandler()82 auto err = setupSocket(adb_host_and_port); in AdbHandler()97 int AdbHandler::setupSocket(const std::string &adb_host_and_port) { in setupSocket() argument98 auto colonPos = adb_host_and_port.find(':'); in setupSocket()103 auto host = adb_host_and_port.substr(0, colonPos); in setupSocket()105 const char *portString = adb_host_and_port.c_str() + colonPos + 1; in setupSocket()
29 std::shared_ptr<RunLoop> runLoop, const std::string &adb_host_and_port,48 int setupSocket(const std::string &adb_host_and_port);