Searched refs:efType (Results 1 – 6 of 6) sorted by relevance
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | IccProvider.java | 187 int efType; in insert() local 196 efType = IccConstants.EF_ADN; in insert() 201 efType = IccConstants.EF_ADN; in insert() 206 efType = IccConstants.EF_FDN; in insert() 212 efType = IccConstants.EF_FDN; in insert() 292 int efType; in delete() local 298 efType = IccConstants.EF_ADN; in delete() 303 efType = IccConstants.EF_ADN; in delete() 308 efType = IccConstants.EF_FDN; in delete() 313 efType = IccConstants.EF_FDN; in delete() [all …]
|
/aosp12/frameworks/base/core/java/android/provider/ |
H A D | SimPhonebookContract.java | 79 public static String getEfUriPath(@ElementaryFiles.EfType int efType) { in getEfUriPath() argument 80 switch (efType) { in getEfUriPath() 88 throw new IllegalArgumentException("Unsupported EfType " + efType); in getEfUriPath() 280 public static Uri getContentUri(int subscriptionId, @ElementaryFiles.EfType int efType) { in getContentUri() argument 281 return buildContentUri(subscriptionId, efType).build(); in getContentUri() 312 int subscriptionId, @ElementaryFiles.EfType int efType, in getItemUri() argument 317 return buildContentUri(subscriptionId, efType) in getItemUri() 355 int subscriptionId, @ElementaryFiles.EfType int efType) { in buildContentUri() argument 360 .appendPath(getEfUriPath(efType)); in buildContentUri() 497 public static Uri getItemUri(int subscriptionId, @EfType int efType) { in getItemUri() argument [all …]
|
H A D | ContactsContract.java | 8308 int efType) { in addSimAccount() argument 8312 if (!SimAccount.getValidEfTypes().contains(efType)) { in addSimAccount() 8321 extras.putInt(KEY_SIM_EF_TYPE, efType); in addSimAccount() 8432 int efType) { in SimAccount() argument 8436 this.mEfType = efType; in SimAccount() 8511 int efType = source.readInt(); 8513 efType);
|
/aosp12/packages/services/Telephony/src/com/android/phone/ |
H A D | SimPhonebookProvider.java | 137 switch (efType) { in efIdForEfType() 323 int efType) throws RemoteException { in addEfToCursor() argument 339 .add(ElementaryFiles.EF_TYPE, efType) in addEfToCursor() 346 int efid = efIdForEfType(efType); in addEfToCursor() 388 row.second.add(args.efType); in querySimRecords() 645 if (args.efType == ElementaryFiles.EF_FDN) { in validateWritableEf() 650 if (args.efType != ElementaryFiles.EF_ADN) { in validateWritableEf() 809 public final int efType; field in SimPhonebookProvider.PhonebookArgs 820 this.efType = efType; in PhonebookArgs() 830 int efType; in createFromEfName() local [all …]
|
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
H A D | ContactsDatabaseHelper.java | 3930 final int efType = c.getInt(4); in getAllSimAccounts() local 3931 if (simSlot < 0 || !SimAccount.getValidEfTypes().contains(efType)) { in getAllSimAccounts() 3935 result.add(new SimAccount(c.getString(1), c.getString(2), simSlot, efType)); in getAllSimAccounts() 4019 int simSlot, int efType) { in createSimAccountIdInTransaction() argument 4023 if (!SimAccount.getValidEfTypes().contains(efType)) { in createSimAccountIdInTransaction() 4047 DatabaseUtils.bindObjectToProgram(insert, 5, efType); in createSimAccountIdInTransaction()
|
H A D | ContactsProvider2.java | 2305 final int efType = extras.getInt(SimContacts.KEY_SIM_EF_TYPE, -1); in call() local 2309 if (!SimAccount.getValidEfTypes().contains(efType)) { in call() 2321 AccountWithDataSet.get(accountName, accountType, null), simSlot, efType); in call() local
|