HomeSort by relevance Sort by last modified time
    Searched defs:msgCount (Results 1 - 9 of 9) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 87 public int msgCount;
122 "{ msgCount=" + msgCount +
841 ted.msgCount = (septets + (SmsConstants.MAX_USER_DATA_SEPTETS_WITH_HEADER - 1)) /
843 ted.codeUnitsRemaining = (ted.msgCount *
846 ted.msgCount = 1;
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/ui/
SmsTest.java 236 int msgCount = mActivity.mMsgListAdapter.getCount();
237 Log.v(TAG, "msgCount: " + msgCount);
248 if (msgCount + 2 == mActivity.mMsgListAdapter.getCount()) {
249 // The "msgCount + 2" is to account for the sent and received message.
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileParserTask.java 152 int msgCount = 0;
164 addMessage(msgCount, filePointer, msg, msg.getStartTime() - minTraceStartTime);
167 msgCount++;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsHeader.java 83 public int msgCount;
89 public int msgCount;
140 concatRef.msgCount = inStream.read();
143 if (concatRef.msgCount != 0 && concatRef.seqNumber != 0 &&
144 concatRef.seqNumber <= concatRef.msgCount) {
151 concatRef.msgCount = inStream.read();
154 if (concatRef.msgCount != 0 && concatRef.seqNumber != 0 &&
155 concatRef.seqNumber <= concatRef.msgCount) {
182 specialSmsMsg.msgCount = inStream.read();
225 outStream.write(concatRef.msgCount);
    [all...]
SMSDispatcher.java     [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 407 int msgCount = (pair.length + septetsPerPart - 1) / septetsPerPart;
408 numSeptetsWithHeader = udhLength * msgCount + pair.length;
458 int msgCount;
465 msgCount = (minNumSeptets + septetsPerPart - 1) / septetsPerPart;
467 msgCount = 1;
469 values[0] = msgCount;
477 udhLength * msgCount + minNumSeptets);
556 assertEquals("msgCount", expectedValues[0], values[0]);
564 assertEquals("msgCount", expectedValues[0], values[0]);
572 assertEquals("msgCount", expectedValues[0], ted.msgCount)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 490 int msgCount = ted.msgCount;
496 ArrayList<SmsPdu> pdus = new ArrayList<SmsPdu>(msgCount);
509 if(msgCount == 1){
518 for(int i = 0; i < msgCount; i++){
522 concatRef.msgCount = msgCount;
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 582 int msgCount = params[0];
588 mWorkingMessage.setLengthRequiresMms(msgCount > 1, true);
591 mWorkingMessage.setLengthRequiresMms(threshold > 0 && msgCount > threshold, true);
599 (msgCount > 1 ||
608 String counterText = msgCount > 1 ? remainingInCurrentMessage + " / " + msgCount
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 6298 milliseconds