Searched refs:hex_ssid (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/chromeos/network/ |
D | shill_property_util.cc | 73 std::string hex_ssid = base::HexEncode(ssid.c_str(), ssid.size()); in SetSSID() local 74 properties->SetStringWithoutPathExpansion(shill::kWifiHexSsid, hex_ssid); in SetSSID() 86 std::string hex_ssid; in GetSSIDFromProperties() local 87 properties.GetStringWithoutPathExpansion(shill::kWifiHexSsid, &hex_ssid); in GetSSIDFromProperties() 89 if (hex_ssid.empty()) { in GetSSIDFromProperties() 96 if (base::HexStringToBytes(hex_ssid, &raw_ssid_bytes)) { in GetSSIDFromProperties() 100 base::StringPrintf("%s, SSID: %s", hex_ssid.c_str(), ssid.c_str()), in GetSSIDFromProperties() 105 base::StringPrintf("Error processing: %s", hex_ssid.c_str()), in GetSSIDFromProperties()
|