Searched refs:colonPos (Results 1 – 2 of 2) sorted by relevance
164 auto colonPos = adb_host_and_port.find(':'); in setupSocket() local165 if (colonPos == std::string::npos) { in setupSocket()169 auto host = adb_host_and_port.substr(0, colonPos); in setupSocket()171 const char *portString = adb_host_and_port.c_str() + colonPos + 1; in setupSocket()
451 auto colonPos = uFragPair.find(':'); in matchesSession() local453 if (colonPos == std::string::npos) { in matchesSession()457 std::string localUFrag(uFragPair, 0, colonPos); in matchesSession()458 std::string remoteUFrag(uFragPair, colonPos + 1); in matchesSession()