Home
last modified time | relevance | path

Searched refs:mobile_apn (Results 1 – 5 of 5) sorted by relevance

/system/connectivity/shill/mobile_operator_db/
Dserviceproviders.prototxt34 mobile_apn {
45 mobile_apn {
66 mobile_apn {
82 mobile_apn {
100 mobile_apn {
107 mobile_apn {
126 mobile_apn {
144 mobile_apn {
163 mobile_apn {
170 mobile_apn {
[all …]
Dmobile_operator_db.proto102 repeated MobileAPN mobile_apn = 22; field
/system/connectivity/shill/cellular/
Dmobile_operator_info.cc176 for (const auto& mobile_apn : result) { in apn_list() local
177 pp_result << "(apn: " << mobile_apn->apn in apn_list()
178 << ", username: " << mobile_apn->username in apn_list()
179 << ", password: " << mobile_apn->password; in apn_list()
181 for (const auto& operator_name : mobile_apn->operator_name_list) { in apn_list()
Dcellular.cc1487 for (const auto& mobile_apn : apn_list) { in UpdateHomeProvider() local
1489 if (!mobile_apn->apn.empty()) { in UpdateHomeProvider()
1490 props[kApnProperty] = mobile_apn->apn; in UpdateHomeProvider()
1492 if (!mobile_apn->username.empty()) { in UpdateHomeProvider()
1493 props[kApnUsernameProperty] = mobile_apn->username; in UpdateHomeProvider()
1495 if (!mobile_apn->password.empty()) { in UpdateHomeProvider()
1496 props[kApnPasswordProperty] = mobile_apn->password; in UpdateHomeProvider()
1500 if (!mobile_apn->operator_name_list.empty()) { in UpdateHomeProvider()
1501 props[kApnNameProperty] = mobile_apn->operator_name_list[0].name; in UpdateHomeProvider()
1503 for (const auto& lname : mobile_apn->operator_name_list) { in UpdateHomeProvider()
Dmobile_operator_info_impl.cc820 for (const auto& apn_data : data.mobile_apn()) { in ReloadData()