Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/frontend/gcastv2/webrtc/
DAdbWebSocketHandler.cpp164 auto colonPos = adb_host_and_port.find(':'); in setupSocket() local
165 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()
DRTPSocketHandler.cpp451 auto colonPos = uFragPair.find(':'); in matchesSession() local
453 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()