Lines Matching full:serial
320 std::string_view serial, command; \
321 bool result = internal::parse_host_service(&serial, &command, service); \
328 std::string_view serial, command; \
329 bool result = internal::parse_host_service(&serial, &command, service); \
331 EXPECT_EQ(std::string(expected_serial), std::string(serial)); \
335 // Check [tcp:|udp:]<serial>[:<port>]:<command> format.
342 std::string serial = protocol + "foo"; in TEST() local
343 VerifyParseHostService(serial + ":bar", serial, "bar"); in TEST()
344 VerifyParseHostService(serial + " :bar:baz", serial, "bar:baz"); in TEST()
349 std::string serial = protocol + "foo:123"; in TEST() local
350 VerifyParseHostService(serial + ":bar", serial, "bar"); in TEST()
351 VerifyParseHostService(serial + ":456", serial, "456"); in TEST()
352 VerifyParseHostService(serial + ":bar:baz", serial, "bar:baz"); in TEST()
361 std::string serial = protocol + address; in TEST() local
363 VerifyParseHostService(serial + ":foo", serial, "foo"); in TEST()
367 // If we can't find both [] then treat it as a normal serial with [ in it. in TEST()
380 // Check <prefix>:<serial>:<command> format.