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

  /external/chromium_org/chrome/browser/extensions/api/system_network/
system_network_api.cc 29 net::NetworkInterfaceList interface_list; local
31 &interface_list, net::INCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES)) {
35 this, interface_list));
52 const net::NetworkInterfaceList& interface_list) {
57 create_arg.reserve(interface_list.size());
58 for (net::NetworkInterfaceList::const_iterator i = interface_list.begin();
59 i != interface_list.end(); ++i) {
system_network_api.h 32 void SendResponseOnUIThread(const net::NetworkInterfaceList& interface_list);
  /external/chromium_org/chrome/browser/extensions/api/dial/
dial_service_unittest.cc 84 net::NetworkInterfaceList interface_list; local
85 interface_list.push_back(
89 interface_list.push_back(
93 interface_list.push_back(
100 interface_list.push_back(
109 dial_service_.SendNetworkList(interface_list);
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_win.cc 270 // Get the list of interfaces. WlanEnumInterfaces allocates interface_list.
271 WLAN_INTERFACE_INFO_LIST* interface_list = NULL; local
272 if ((*WlanEnumInterfaces_function_)(wlan_handle, NULL, &interface_list) !=
277 DCHECK(interface_list);
279 LogWlanInterfaceCount(interface_list->dwNumberOfItems);
282 for (int i = 0; i < static_cast<int>(interface_list->dwNumberOfItems); ++i) {
286 if (interface_list->InterfaceInfo[i].isState ==
289 << interface_list->InterfaceInfo[i].strInterfaceDescription
295 interface_list->InterfaceInfo[i].InterfaceGuid,
299 // Free interface_list
    [all...]
  /external/chromium_org/net/base/
net_util_win.cc 262 scoped_ptr<WLAN_INTERFACE_INFO_LIST, WlanApiDeleter> interface_list(
267 for (unsigned i = 0; i < interface_list->dwNumberOfItems; ++i) {
268 if (interface_list->InterfaceInfo[i].isState ==
270 info = &interface_list->InterfaceInfo[i];
  /external/chromium_org/chrome/browser/component_updater/
pepper_flash_component_installer.cc 314 const base::ListValue* interface_list = NULL; local
317 if (!manifest.GetList("x-ppapi-required-interfaces", &interface_list))
320 for (size_t i = 0; i < interface_list->GetSize(); i++) {
322 if (!interface_list->GetString(i, &interface_string))