Home
last modified time | relevance | path

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

/packages/modules/adb/
Dsockets.cpp719 size_t next_colon = command.find(':'); in parse_host_service() local
720 if (next_colon == std::string::npos) { in parse_host_service()
723 consume(next_colon + 1); in parse_host_service()
756 size_t next_colon = command.find_first_of(':'); in parse_host_service() local
757 if (next_colon == std::string::npos) { in parse_host_service()
763 if (command.size() <= next_colon) { in parse_host_service()
767 std::string_view port = command.substr(0, next_colon); in parse_host_service()
777 consume(next_colon + 1); in parse_host_service()