Home
last modified time | relevance | path

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

/system/core/adb/
Dsockets.cpp650 size_t next_colon = command.find(':'); in parse_host_service() local
651 if (next_colon == std::string::npos) { in parse_host_service()
654 consume(next_colon + 1); in parse_host_service()
687 size_t next_colon = command.find_first_of(':'); in parse_host_service() local
688 if (next_colon == std::string::npos) { in parse_host_service()
694 if (command.size() <= next_colon) { in parse_host_service()
698 std::string_view port = command.substr(0, next_colon); in parse_host_service()
708 consume(next_colon + 1); in parse_host_service()