Home
last modified time | relevance | path

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

/system/core/adb/
Dsocket_spec_test.cpp176 TEST(socket_spec, is_socket_spec) { in TEST() argument
177 EXPECT_TRUE(is_socket_spec("tcp:blah")); in TEST()
178 EXPECT_TRUE(is_socket_spec("acceptfd:blah")); in TEST()
179 EXPECT_TRUE(is_socket_spec("local:blah")); in TEST()
180 EXPECT_TRUE(is_socket_spec("localreserved:blah")); in TEST()
Dsocket_spec.h25 bool is_socket_spec(std::string_view spec);
Dservices.cpp80 if (is_socket_spec(name)) { in service_to_fd()
Dsocket_spec.cpp160 bool is_socket_spec(std::string_view spec) { in is_socket_spec() function