Lines Matching refs:NetworkID
16 NetworkID NetworkID::FromString(const std::string& network_id) { in FromString()
19 return NetworkID(NetworkChangeNotifier::CONNECTION_UNKNOWN, std::string(), in FromString()
25 return NetworkID(NetworkChangeNotifier::CONNECTION_UNKNOWN, std::string(), in FromString()
29 return NetworkID(static_cast<NetworkChangeNotifier::ConnectionType>( in FromString()
34 NetworkID::NetworkID(NetworkChangeNotifier::ConnectionType type, in NetworkID() function in net::nqe::internal::NetworkID
44 NetworkID::NetworkID(const NetworkID& other) = default;
46 NetworkID::~NetworkID() = default;
48 bool NetworkID::operator==(const NetworkID& other) const { in operator ==()
53 bool NetworkID::operator!=(const NetworkID& other) const { in operator !=()
57 NetworkID& NetworkID::operator=(const NetworkID& other) = default;
60 bool NetworkID::operator<(const NetworkID& other) const { in operator <()
65 std::string NetworkID::ToString() const { in ToString()