Home
last modified time | relevance | path

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

/aosp14/system/core/fastboot/
H A Dfastboot_test.cpp210 const Result<NetworkSerial, FastbootError> parsed = ParseNetworkSerial(serial); in ParseNetworkSerialTest()
214 const NetworkSerial network_serial = parsed.value(); in ParseNetworkSerialTest()
223 const Result<NetworkSerial, FastbootError> parsed = ParseNetworkSerial(serial); in ParseNetworkSerialNegativeTest()
H A Dfastboot.h149 struct NetworkSerial { struct
155 Result<NetworkSerial, FastbootError> ParseNetworkSerial(const std::string& serial); argument
H A Dfastboot.cpp307 Result<NetworkSerial, FastbootError> ParseNetworkSerial(const std::string& serial) { in ParseNetworkSerial()
334 return NetworkSerial{protocol, host, port}; in ParseNetworkSerial()
349 const Result<NetworkSerial, FastbootError> network_serial = ParseNetworkSerial(local_serial); in open_device()