Home
last modified time | relevance | path

Searched refs:adb_host_and_port (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/host/frontend/webrtc/
Dadb_handler.cpp77 std::shared_ptr<RunLoop> runLoop, const std::string &adb_host_and_port, in AdbHandler() argument
80 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() argument
98 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()
Dadb_handler.h29 std::shared_ptr<RunLoop> runLoop, const std::string &adb_host_and_port,
48 int setupSocket(const std::string &adb_host_and_port);