HomeSort by relevance Sort by last modified time
    Searched defs:serving_operator (Results 1 - 7 of 7) sorted by null

  /system/connectivity/shill/cellular/
cellular_service.h 86 void set_serving_operator(const Stringmap& serving_operator);
87 const Stringmap& serving_operator() const { return serving_operator_; } function in class:shill::CellularService
cellular_service_unittest.cc 188 const Stringmap& serving_operator = service_->serving_operator(); local
189 ASSERT_NE(serving_operator.end(), serving_operator.find(kOperatorCodeKey));
190 ASSERT_NE(serving_operator.end(), serving_operator.find(kOperatorNameKey));
191 EXPECT_EQ(kCode, serving_operator.find(kOperatorCodeKey)->second);
192 EXPECT_EQ(kName, serving_operator.find(kOperatorNameKey)->second);
196 service_->set_serving_operator(serving_operator);
cellular_capability_classic_unittest.cc 111 Stringmap serving_operator; local
112 serving_operator[kOperatorCodeKey] = kOperatorCode;
113 serving_operator[kOperatorNameKey] = kOperatorName;
114 serving_operator[kOperatorCountryKey] = kOperatorCountry;
116 service->set_serving_operator(serving_operator);
117 cellular_->set_home_provider(serving_operator);
cellular_capability_gsm_unittest.cc 264 Stringmap serving_operator; local
265 serving_operator[kOperatorCodeKey] = kOperatorCode;
266 serving_operator[kOperatorNameKey] = kOperatorName;
267 serving_operator[kOperatorCountryKey] = kOperatorCountry;
269 service->set_serving_operator(serving_operator);
270 cellular_->set_home_provider(serving_operator);
cellular.cc 1524 Stringmap serving_operator; local
    [all...]
cellular_capability_universal_unittest.cc 147 Stringmap serving_operator; local
148 serving_operator[kOperatorCodeKey] = kOperatorCode;
149 serving_operator[kOperatorNameKey] = kOperatorName;
150 serving_operator[kOperatorCountryKey] = kOperatorCountry;
151 service->set_serving_operator(serving_operator);
152 cellular_->set_home_provider(serving_operator);
    [all...]
cellular_unittest.cc 939 Stringmap serving_operator; local
    [all...]

Completed in 530 milliseconds