Home
last modified time | relevance | path

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

/system/core/fastboot/
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()
Dfastboot.h149 struct NetworkSerial { struct
155 Result<NetworkSerial, FastbootError> ParseNetworkSerial(const std::string& serial); argument
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()