Searched defs:serving_operator (Results 1 - 8 of 8) sorted by relevance

/system/connectivity/shill/cellular/
H A Dcellular_service.h86 void set_serving_operator(const Stringmap& serving_operator);
87 const Stringmap& serving_operator() const { return serving_operator_; } function in class:shill::CellularService
H A Dcellular_service_unittest.cc188 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);
H A Dcellular_capability_classic_unittest.cc111 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);
H A Dcellular_capability_gsm_unittest.cc264 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);
H A Dcellular_service.cc464 void CellularService::set_serving_operator(const Stringmap& serving_operator) { argument
465 if (serving_operator_ == serving_operator)
468 serving_operator_ = serving_operator;
H A Dcellular_capability_universal_unittest.cc147 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);
H A Dcellular.cc1524 Stringmap serving_operator; local
1526 serving_operator[kOperatorCodeKey] = operator_info->sid();
1529 serving_operator[kOperatorCodeKey] = operator_info->nid();
1532 serving_operator[kOperatorCodeKey] = operator_info->mccmnc();
1535 serving_operator[kOperatorNameKey] = operator_info->operator_name();
1538 serving_operator[kOperatorCountryKey] = operator_info->country();
1540 service()->set_serving_operator(serving_operator);
H A Dcellular_unittest.cc939 Stringmap serving_operator; local
952 serving_operator = device_->service_->serving_operator();
953 VerifyOperatorMap(serving_operator, "", "", "");
979 serving_operator = device_->service_->serving_operator();
980 VerifyOperatorMap(serving_operator,
1009 serving_operator = device_->service_->serving_operator();
1010 VerifyOperatorMap(serving_operator,
[all...]

Completed in 412 milliseconds