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

  /system/connectivity/shill/cellular/
mobile_operator_info.cc 100 const string& MobileOperatorInfo::operator_name() const { function in class:shill::MobileOperatorInfo
101 const auto& result = impl_->operator_name();
161 for (const auto& operator_name : result) {
162 pp_result << "(" << operator_name.name << ", " << operator_name.language
181 for (const auto& operator_name : mobile_apn->operator_name_list) {
182 pp_result << "(" << operator_name.name << ", " << operator_name.language
245 void MobileOperatorInfo::UpdateOperatorName(const string& operator_name) {
246 SLOG(this, 3) << GetLogPrefix(__func__) << "(" << operator_name << ")";
    [all...]
mock_mobile_operator_info.cc 34 ON_CALL(*this, operator_name())
mobile_operator_info.h 163 virtual const std::string& operator_name() const;
214 virtual void UpdateOperatorName(const std::string& operator_name);
mock_mobile_operator_info.h 43 MOCK_CONST_METHOD0(operator_name, const std::string&());
mobile_operator_info_unittest.cc 294 void UpdateOperatorName(const std::string& operator_name) {
295 operator_info_->UpdateOperatorName(operator_name);
327 EXPECT_TRUE(operator_info_->operator_name().empty());
530 EXPECT_EQ("name108001", operator_info_->operator_name());
545 EXPECT_EQ("name108002", operator_info_->operator_name());
679 EXPECT_EQ("name113001", operator_info_->operator_name());
685 EXPECT_EQ("name113002", operator_info_->operator_name());
953 EXPECT_EQ("name113002", operator_info_->operator_name());
960 EXPECT_EQ("name113001", operator_info_->operator_name());
977 EXPECT_EQ("name113002", operator_info_->operator_name());
    [all...]
mobile_operator_info_impl.cc 168 const string& MobileOperatorInfoImpl::operator_name() const { function in class:shill::MobileOperatorInfoImpl
322 void MobileOperatorInfoImpl::UpdateOperatorName(const string& operator_name) {
324 if (user_operator_name_ == operator_name) {
328 user_operator_name_ = operator_name;
333 NormalizeOperatorName(operator_name));
340 LOG(INFO) << "Operator name [" << operator_name << "] "
341 << "(Normalized: [" << NormalizeOperatorName(operator_name)
cellular_capability_gsm.h 189 const std::string& operator_name);
195 const std::string& operator_name,
mobile_operator_info_impl.h 59 const std::string& operator_name() const;
78 void UpdateOperatorName(const std::string& operator_name);
cellular_capability_universal.cc 1473 string operator_name; local
1527 << ", opername=" << operator_name; local
    [all...]
cellular_capability_gsm.cc 617 !mobile_operator_info_->operator_name().empty()) {
618 parsed[kLongNameProperty] = mobile_operator_info_->operator_name();
713 uint32_t status, const string& operator_code, const string& operator_name) {
716 << ", opername=" << operator_name; local
719 cellular()->serving_operator_info()->UpdateOperatorName(operator_name);
728 uint32_t status, const string& operator_code, const string& operator_name,
731 OnRegistrationInfoSignal(status, operator_code, operator_name);
cellular.cc     [all...]
cellular_unittest.cc     [all...]
cellular_capability_universal.h 352 const std::string& operator_name);
368 void OnOperatorNameChanged(const std::string& operator_name);
cellular_capability_gsm_unittest.cc 594 EXPECT_CALL(*mock_mobile_operator_info, operator_name()).
cellular_capability_universal_unittest.cc 163 string operator_name = "TestOperator"; local
    [all...]
  /system/connectivity/shill/dbus/
chromeos_modem_gsm_network_proxy.cc 166 uint32_t status, const string& operator_code, const string& operator_name) {
168 << operator_code << ", " << operator_name << ")"; local
172 registration_info_callback_.Run(status, operator_code, operator_name);
chromeos_modem_gsm_network_proxy.h 89 const std::string& operator_name);
  /external/autotest/client/cros/cellular/pseudomodem/
sim.py 100 self.operator_name = carrier[2]
101 if self.operator_name != 'Banana-Comm':
102 self.operator_name = self.operator_name + ' - Fake'
263 op_name = self._carrier.operator_name
modem_3gpp.py 377 def SetRegistered(self, operator_code, operator_name):
384 @param operator_name: The operator name that should be displayed by
407 self.Set(mm1_constants.I_MODEM_3GPP, 'OperatorName', operator_name)
  /external/autotest/client/cros/cellular/
modem.py 159 _, operator_code, operator_name = network.GetRegistrationInfo()
162 if operator_name:
163 props['OperatorName'] = operator_name
pseudo_modem.py 139 operator_name=DEFAULT_OPERATOR,
149 self.operator_name = operator_name
165 'OperatorName': self.operator_name
306 self.operator_name = carrier
574 'OperatorName': self.operator_name,
  /external/autotest/client/site_tests/cellular_ServiceName/
cellular_ServiceName.py 61 carrier.operator_name = TEST_3GPP_HOME_CARRIER
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_hfp.cpp 671 const char *operator_name; local
680 operator_name = env->GetStringUTFChars(operator_str, NULL);
682 if ( (status = sBluetoothHfpInterface->cops_response(operator_name,(bt_bdaddr_t *) addr))
687 env->ReleaseStringUTFChars(operator_str, operator_name);
    [all...]
  /hardware/qcom/audio/hal/msm8916/
platform.c 560 char *operator_name; local
562 operator_name = get_current_operator();
563 if (operator_name == NULL)
568 if (strcmp(operator_name, device_item->operator) == 0) {
    [all...]
  /hardware/qcom/audio/hal/msm8974/
platform.c 582 char *operator_name; local
584 operator_name = get_current_operator();
585 if (operator_name == NULL)
590 if (strcmp(operator_name, device_item->operator) == 0) {
    [all...]

Completed in 460 milliseconds