Home
last modified time | relevance | path

Searched refs:calculateLength (Results 1 – 18 of 18) sorted by relevance

/aosp12/frameworks/base/telephony/java/android/telephony/
H A DSmsMessage.java362 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly) { in calculateLength() method in SmsMessage
363 return calculateLength(msgBody, use7bitOnly, SmsManager.getDefaultSmsSubscriptionId()); in calculateLength()
383 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly, int subId) { in calculateLength() method in SmsMessage
387 ? com.android.internal.telephony.cdma.SmsMessage.calculateLength( in calculateLength()
389 : com.android.internal.telephony.gsm.SmsMessage.calculateLength( in calculateLength()
429 ? com.android.internal.telephony.cdma.SmsMessage.calculateLength( in fragmentText()
431 : com.android.internal.telephony.gsm.SmsMessage.calculateLength( in fragmentText()
527 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { in calculateLength() method in SmsMessage
528 return calculateLength((CharSequence)messageBody, use7bitOnly); in calculateLength()
545 public static int[] calculateLength(String messageBody, boolean use7bitOnly, int subId) { in calculateLength() method in SmsMessage
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
H A DSMSDispatcherUtil.java241 public static TextEncodingDetails calculateLength(boolean isCdma, CharSequence messageBody, in calculateLength() method in SMSDispatcherUtil
259 return com.android.internal.telephony.gsm.SmsMessage.calculateLength(messageBody, in calculateLengthGsm()
273 return com.android.internal.telephony.cdma.SmsMessage.calculateLength(messageBody, in calculateLengthCdma()
/aosp12/frameworks/opt/telephony/src/java/android/telephony/gsm/
H A DSmsMessage.java197 public static int[] calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() method in SmsMessage
200 .calculateLength(messageBody, use7bitOnly); in calculateLength()
226 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { in calculateLength() method in SmsMessage
227 return calculateLength((CharSequence)messageBody, use7bitOnly); in calculateLength()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSmsMessageBodyTest.java551 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); in callGsmLengthMethods()
559 values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly); in callGsmLengthMethods()
567 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); in callGsmLengthMethods()
581 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly); in callCdmaLengthMethods()
589 … com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly, true); in callCdmaLengthMethods()
H A DGsmSmsTest.java267 GsmAlphabet.TextEncodingDetails ted = SmsMessage.calculateLength(text, false); in testFragmentText()
282 ted = SmsMessage.calculateLength(text, false); in testFragmentText()
309 GsmAlphabet.TextEncodingDetails ted = SmsMessage.calculateLength(text, false); in testFragmentTurkishText()
325 ted = SmsMessage.calculateLength(text, false); in testFragmentTurkishText()
343 ted = SmsMessage.calculateLength(text, false); in testFragmentTurkishText()
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DMessageTextStats.java45 final int[] params = SmsMessage.calculateLength(messageText, false); in updateMessageTextStats()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java97 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() method in CdmaSMSDispatcher
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DImsSmsDispatcher.java397 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() method in ImsSmsDispatcher
398 return SMSDispatcherUtil.calculateLength(isCdmaMo(), messageBody, use7bitOnly); in calculateLength()
H A DSMSDispatcher.java1320 protected abstract TextEncodingDetails calculateLength(CharSequence messageBody, in calculateLength() method in SMSDispatcher
1441 TextEncodingDetails details = calculateLength(parts.get(i), false); in sendMultipartText()
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java308 TextEncodingDetails ted = calculateLength(message, false); in getSubmitPdu()
639 TextEncodingDetails ted = calculateLength(message, false); in getDeliverPdu()
1080 public static TextEncodingDetails calculateLength(CharSequence msgBody, in calculateLength() method in SmsMessage
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java130 protected TextEncodingDetails calculateLength(CharSequence messageBody, boolean use7bitOnly) { in calculateLength() method in GsmSMSDispatcher
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsTest.java968 TextEncodingDetails ted = SmsMessage.calculateLength(text1, false, true); in testFragmentText()
1004 ted = SmsMessage.calculateLength(text2, false, true); in testFragmentText()
1022 ted = SmsMessage.calculateLength(text3, false, true); in testFragmentText()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapSmsPdu.java525 int[] ted = SmsMessage.calculateLength((CharSequence) messageText, false); in getSubmitPdus()
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java415 public static TextEncodingDetails calculateLength(CharSequence messageBody, in calculateLength() method in SmsMessage
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java571 ted = com.android.internal.telephony.gsm.SmsMessage.calculateLength( in calcTextEncodingDetails()
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/base/core/api/
H A Dcurrent.txt42394 method public static int[] calculateLength(CharSequence, boolean);
42395 method public static int[] calculateLength(String, boolean);
43401 method @Deprecated public static int[] calculateLength(CharSequence, boolean);
43402 method @Deprecated public static int[] calculateLength(String, boolean);
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Dandroid-22.txt28558 method public static int[] calculateLength(java.lang.CharSequence, boolean);
28559 method public static int[] calculateLength(java.lang.String, boolean);
28794 method public static deprecated int[] calculateLength(java.lang.CharSequence, boolean);
28795 method public static deprecated int[] calculateLength(java.lang.String, boolean);