/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SmsMessageBodyTest.java | 383 void fillData(int enabledLangsIndex, boolean use7bitOnly, int[] values, int length) { in fillData() argument 414 if (use7bitOnly) { in fillData() 554 private void callGsmLengthMethods(CharSequence msgBody, boolean use7bitOnly, in callGsmLengthMethods() argument 558 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); in callGsmLengthMethods() 566 values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly); in callGsmLengthMethods() 574 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); in callGsmLengthMethods() 583 private void callCdmaLengthMethods(CharSequence msgBody, boolean use7bitOnly, in callCdmaLengthMethods() argument 588 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly); in callCdmaLengthMethods() 596 … com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly, true); in callCdmaLengthMethods() 602 …android.internal.telephony.cdma.sms.BearerData.calcTextEncodingDetails(msgBody, use7bitOnly, true); in callCdmaLengthMethods()
|
/frameworks/opt/telephony/src/java/android/telephony/gsm/ |
D | SmsMessage.java | 197 public static int[] calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() argument 200 .calculateLength(messageBody, use7bitOnly); in calculateLength() 226 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { in calculateLength() argument 227 return calculateLength((CharSequence)messageBody, use7bitOnly); in calculateLength()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | GsmAlphabet.java | 782 public static int countGsmSeptetsUsingTables(CharSequence s, boolean use7bitOnly, 798 } else if (use7bitOnly) { 826 countGsmSeptets(CharSequence s, boolean use7bitOnly) { 834 int septets = GsmAlphabet.countGsmSeptetsUsingTables(s, use7bitOnly, 0, 0); 883 if (use7bitOnly) { 943 if (use7bitOnly && unencodableCount > minUnencodableCount) { 946 if ((use7bitOnly && unencodableCount < minUnencodableCount)
|
/frameworks/base/telephony/java/android/telephony/ |
D | SmsMessage.java | 347 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly) { in calculateLength() argument 350 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly, in calculateLength() 352 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); in calculateLength() 470 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { in calculateLength() argument 471 return calculateLength((CharSequence)messageBody, use7bitOnly); in calculateLength()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
D | CdmaSMSDispatcher.java | 92 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() argument 93 return SMSDispatcherUtil.calculateLengthCdma(messageBody, use7bitOnly); in calculateLength()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GsmSMSDispatcher.java | 125 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() argument 126 return SMSDispatcherUtil.calculateLengthGsm(messageBody, use7bitOnly); in calculateLength()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ImsSmsDispatcher.java | 272 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() argument 273 return SMSDispatcherUtil.calculateLength(isCdmaMo(), messageBody, use7bitOnly); in calculateLength()
|
D | SMSDispatcher.java | 912 boolean use7bitOnly); in calculateLength() argument
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
D | SmsMessage.java | 418 boolean use7bitOnly, boolean isEntireMsg) { in calculateLength() argument 427 return BearerData.calcTextEncodingDetails(newMsgBody, use7bitOnly, isEntireMsg); in calculateLength()
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
D | SmsMessage.java | 905 boolean use7bitOnly) { in calculateLength() argument 914 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly); in calculateLength()
|