Home | History | Annotate | Download | only in cellular

Lines Matching refs:apn

1100     // This comparison breaks if two apns have the same |apn| field.
1104 mobile_apns[apn_node->apn] = apn_node;
1107 ASSERT_TRUE(mobile_apns.find(apn_lhs->apn) != mobile_apns.end());
1108 const auto& apn_rhs = mobile_apns[apn_lhs->apn];
1109 // Only comparing apn, name, username, password.
1110 EXPECT_EQ(apn_lhs->apn, apn_rhs->apn);
1182 MobileOperatorInfo::MobileAPN* apn;
1183 apn = new MobileOperatorInfo::MobileAPN();
1184 apn->apn = "test@test.com";
1185 apn->username = "testuser";
1186 apn->password = "is_public_boohoohoo";
1187 apn->operator_name_list.push_back({"name200003", "hi"});
1188 apn_list_.push_back(apn); // Takes ownership.
1215 MobileOperatorInfo::MobileAPN* apn;
1216 apn = new MobileOperatorInfo::MobileAPN();
1217 apn->apn = "test2@test.com";
1218 apn->username = "testuser2";
1219 apn->password = "is_public_boohoohoo_too";
1220 apn_list_.push_back(apn); // Takes ownership.