Home
last modified time | relevance | path

Searched refs:profileBuilder (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccPort.java208 EuiccProfileInfo.Builder profileBuilder = in getAllProfiles() local
210 buildProfile(profileNode, profileBuilder); in getAllProfiles()
212 EuiccProfileInfo profile = profileBuilder.build(); in getAllProfiles()
249 EuiccProfileInfo.Builder profileBuilder = in getProfile() local
251 buildProfile(profileNode, profileBuilder); in getProfile()
252 return profileBuilder.build(); in getProfile()
1235 private static void buildProfile(Asn1Node profileNode, EuiccProfileInfo.Builder profileBuilder) in buildProfile() argument
1238 profileBuilder.setNickname(profileNode.getChild(Tags.TAG_NICKNAME).asString()); in buildProfile()
1242 profileBuilder.setServiceProviderName( in buildProfile()
1247 profileBuilder.setProfileName( in buildProfile()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DDataProfileManager.java728 DataProfile.Builder profileBuilder = new DataProfile.Builder(); in getDataProfileForNetworkRequest() local
730 profileBuilder.setApnSetting(apnSetting); in getDataProfileForNetworkRequest()
734 profileBuilder.setTrafficDescriptor(trafficDescriptor); in getDataProfileForNetworkRequest()
736 DataProfile dataProfile = profileBuilder.build(); in getDataProfileForNetworkRequest()