HomeSort by relevance Sort by last modified time
    Searched refs:network_guid (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/components/wifi/
fake_wifi_service.h 25 virtual void GetProperties(const std::string& network_guid,
28 virtual void GetManagedProperties(const std::string& network_guid,
31 virtual void GetState(const std::string& network_guid,
34 virtual void SetProperties(const std::string& network_guid,
39 std::string* network_guid,
45 virtual void StartConnect(const std::string& network_guid,
47 virtual void StartDisconnect(const std::string& network_guid,
49 virtual void GetKeyFromSystem(const std::string& network_guid,
59 NetworkList::iterator FindNetwork(const std::string& network_guid);
67 void NotifyNetworkChanged(const std::string& network_guid);
    [all...]
wifi_service.h 45 // Get Properties of network identified by |network_guid|. Populates
47 virtual void GetProperties(const std::string& network_guid,
51 // Gets the merged properties of the network with id |network_guid| from the
55 virtual void GetManagedProperties(const std::string& network_guid,
59 // Get the cached read-only properties of the network with id |network_guid|.
64 virtual void GetState(const std::string& network_guid,
68 // Set Properties of network identified by |network_guid|. Populates |error|
70 virtual void SetProperties(const std::string& network_guid,
77 // populates the |network_guid| of the new network.
80 std::string* network_guid,
    [all...]
fake_wifi_service.cc 68 void FakeWiFiService::GetProperties(const std::string& network_guid,
71 NetworkList::iterator network_properties = FindNetwork(network_guid);
80 const std::string& network_guid,
87 void FakeWiFiService::GetState(const std::string& network_guid,
90 NetworkList::iterator network_properties = FindNetwork(network_guid);
99 const std::string& network_guid,
102 NetworkList::iterator network_properties = FindNetwork(network_guid);
112 std::string* network_guid,
118 *network_guid = network_properties.guid;
142 void FakeWiFiService::StartConnect(const std::string& network_guid,
    [all...]
wifi_test.cc 93 " [--network_guid=<network_guid>]"
97 " [<network_guid>]\n";
110 std::string network_guid = local
111 parsed_command_line.GetSwitchValueASCII("network_guid");
121 network_guid = base::UTF16ToASCII(parsed_command_line.GetArgs()[0]);
123 network_guid = parsed_command_line.GetArgs()[0];
145 if (network_guid.length() > 0) {
148 wifi_service_->GetProperties(network_guid, &properties, &error);
172 if (!network_guid.empty())
    [all...]
wifi_service_win.cc 185 virtual void GetProperties(const std::string& network_guid,
189 virtual void GetManagedProperties(const std::string& network_guid,
193 virtual void GetState(const std::string& network_guid,
197 virtual void SetProperties(const std::string& network_guid,
203 std::string* network_guid,
212 virtual void StartConnect(const std::string& network_guid,
215 virtual void StartDisconnect(const std::string& network_guid,
218 virtual void GetKeyFromSystem(const std::string& network_guid,
253 // to network with |network_guid|. Reset DHCP and Notify that |NetworkChanged|
255 void WaitForNetworkConnect(const std::string& network_guid, int attempt)
860 << network_guid; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_credentials_getter.h 37 const std::string& network_guid,
networking_private_credentials_getter_win.cc 38 const std::string& network_guid,
88 const std::string& network_guid,
99 network_guid, public_key_data));
112 const std::string& network_guid,
127 const std::string& network_guid,
136 network_guid,
networking_private_credentials_getter_mac.cc 26 const std::string& network_guid,
44 const std::string& network_guid,
52 wifi_service->GetKeyFromSystem(network_guid, &key_data, &error);
networking_private_service_client.h 110 void(const std::string& network_guid,
126 // Gets the properties of the network with id |network_guid|. See note on
128 void GetProperties(const std::string& network_guid,
132 // Gets the merged properties of the network with id |network_guid| from these
136 void GetManagedProperties(const std::string& network_guid,
140 // Gets the cached read-only properties of the network with id |network_guid|.
145 void GetState(const std::string& network_guid,
149 // Start connect to the network with id |network_guid|. See note on
151 void StartConnect(const std::string& network_guid,
155 // Start disconnect from the network with id |network_guid|. See note o
    [all...]
networking_private_service_client.cc 81 credentials_getter->Start(params->network_guid, public_key, callback);
229 const std::string& network_guid,
243 network_guid,
249 network_guid,
255 const std::string& network_guid,
269 network_guid,
275 network_guid,
281 const std::string& network_guid,
295 network_guid,
301 network_guid,
369 std::string* network_guid = new std::string; local
    [all...]
networking_private_api_nonchromeos.cc 42 params->network_guid,
51 const std::string& network_guid,
79 params->network_guid,
88 const std::string& network_guid,
116 params->network_guid,
125 const std::string& network_guid,
156 params->network_guid,
340 params->network_guid,
373 params->network_guid,
networking_private_api_chromeos.cc 109 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
147 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
197 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
231 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
461 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
500 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
564 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
725 if (!GetServicePathFromGuid(params->network_guid, &service_path, &error_))
  /external/chromium_org/chrome/browser/local_discovery/wifi/
wifi_manager_nonchromeos.cc 69 void ConnectToNetworkByID(const std::string& network_guid,
73 const std::string& network_guid,
89 bool IsConnected(const std::string& network_guid);
97 std::string* network_guid);
166 std::string network_guid; local
170 false, properties.Pass(), &network_guid, &error_string);
173 ConnectToNetworkByID(network_guid, callback);
179 if (FindAndConfigureNetwork(ssid, password, &network_guid)) {
180 ConnectToNetworkByID(network_guid, callback);
227 const std::string& network_guid,
    [all...]
  /external/chromium_org/chrome/utility/
chrome_content_utility_client.h 92 void OnGetAndEncryptWiFiCredentials(const std::string& network_guid,
chrome_content_utility_client.cc 522 const std::string& network_guid,
529 wifi_service->GetKeyFromSystem(network_guid, &key_data, &error);

Completed in 688 milliseconds