Searched refs:FdnUtils (Results 1 – 4 of 4) sorted by relevance
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | FdnUtilsTest.java | 43 assertFalse(FdnUtils.isFDN( "123456789", "US", null)); in fdnListIsNull_returnsFalse() 49 assertFalse(FdnUtils.isFDN( "123456789", "US", fdnList)); in fdnListIsEmpty_returnsFalse() 56 assertFalse(FdnUtils.isFDN( "123456789", "US", fdnList)); in fdnListHasOnlyDefaultRecords_returnsFalse() 65 assertFalse(FdnUtils.isFDN( "123456789", "US", fdnList)); in fdnListHasRecordWithEmptyNumberStr_returnsFalse() 74 assertTrue(FdnUtils.isFDN( "123456789", "US", fdnList)); in dialStrInFdnList_returnsTrue() 83 assertFalse(FdnUtils.isFDN("123456788", "US", fdnList)); in dialStrNotInFdnList_returnsFalse() 92 assertFalse(FdnUtils.isFDN( null, "US", fdnList)); in dialStrIsNull_returnsFalse() 101 assertTrue(FdnUtils.isFDN( "12345", "US", fdnList)); in fdnEntryFirstSubStringOfDialStr_returnsTrue() 110 assertFalse(FdnUtils.isFDN("612345", "US", fdnList)); in fdnEntrySubStringOfDialStr_returnsFalse() 119 assertFalse(FdnUtils.isFDN("123", "US", fdnList)); in dialStrFirstSubStringOfFdnEntry_returnsFalse() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | FdnUtils.java | 42 public class FdnUtils { class 44 private static final String LOG_TAG = FdnUtils.class.getSimpleName();
|
D | SmsController.java | 1169 if (!FdnUtils.isFdnEnabled(phoneId)) { in isNumberBlockedByFDN() 1181 if (FdnUtils.isNumberBlockedByFDN(phoneId, destAddr, defaultCountryIso)) { in isNumberBlockedByFDN() 1202 return FdnUtils.isNumberBlockedByFDN(phoneId, smscAddr, defaultCountryIso); in isNumberBlockedByFDN()
|
D | GsmCdmaPhone.java | 1579 if(!isEmergency && FdnUtils.isNumberBlockedByFDN(mPhoneId, dialString, getCountryIso())) { in dial() 1785 if(FdnUtils.isNumberBlockedByFDN(mPhoneId, ussdRequest, getCountryIso())) { in handleUssdRequest() 2727 if(FdnUtils.isSuppServiceRequestBlockedByFdn(mPhoneId, controlStrings, getCountryIso())) { in changeCallBarringPassword() 5390 return FdnUtils.isSuppServiceRequestBlockedByFdn(mPhoneId, controlStrings, getCountryIso()); in isRequestBlockedByFDN()
|