/external/chromium_org/chromeos/network/ |
network_util_unittest.cc | 108 std::vector<CellularScanResult> scan_results; local 111 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results)); 115 EXPECT_FALSE(ParseCellularScanResults(list, &scan_results)); 122 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results)); 123 EXPECT_TRUE(scan_results.empty()); 138 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results)); 139 EXPECT_EQ(static_cast<size_t>(2), scan_results.size()); 140 EXPECT_EQ("000001", scan_results[0].network_id); 141 EXPECT_EQ("unknown", scan_results[0].status); 142 EXPECT_EQ("GSM", scan_results[0].technology) [all...] |
network_util.cc | 97 const ListValue& list, std::vector<CellularScanResult>* scan_results) { 98 scan_results->clear(); 99 scan_results->reserve(list.GetSize()); 118 scan_results->push_back(scan_result);
|
network_util.h | 77 // CellularScanResult in |scan_results|. Returns false if parsing fails, 78 // in which case the contents of |scan_results| will be undefined. 80 const ListValue& list, std::vector<CellularScanResult>* scan_results);
|
device_state.h | 49 const CellularScanResults& scan_results() const { return scan_results_; } function in class:chromeos::DeviceState
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/ |
choose_mobile_network_ui.cc | 176 const DeviceState::CellularScanResults& scan_results = local 177 cellular->scan_results(); 180 scan_results.begin(); it != scan_results.end(); ++it) {
|
/external/wpa_supplicant_8/src/drivers/ |
driver_nl80211.c | 2139 struct wpa_scan_results *scan_results = arg; local [all...] |