Home
last modified time | relevance | path

Searched refs:use7bitOnly (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSmsMessageBodyTest.java383 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/
DSmsMessage.java197 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/
DGsmAlphabet.java782 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/
DSmsMessage.java347 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/
DCdmaSMSDispatcher.java92 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/
DGsmSMSDispatcher.java125 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/
DImsSmsDispatcher.java272 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() argument
273 return SMSDispatcherUtil.calculateLength(isCdmaMo(), messageBody, use7bitOnly); in calculateLength()
DSMSDispatcher.java912 boolean use7bitOnly); in calculateLength() argument
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
DSmsMessage.java418 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/
DSmsMessage.java905 boolean use7bitOnly) { in calculateLength() argument
914 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly); in calculateLength()