HomeSort by relevance Sort by last modified time
    Searched refs:transactionId (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/com/google/android/mms/pdu/
AcknowledgeInd.java 30 * @param transactionId the transaction-id value
32 * NullPointerException if transactionId is null.
34 public AcknowledgeInd(int mmsVersion, byte[] transactionId)
40 setTransactionId(transactionId);
NotifyRespInd.java 30 * @param transactionId the transaction-id value
33 * NullPointerException if transactionId is null.
37 byte[] transactionId,
42 setTransactionId(transactionId);
SendReq.java 46 String transactionId = "T" + Long.toHexString(System.currentTimeMillis());
47 return transactionId.getBytes();
56 * @param transactionId the transaction-id value
58 * NullPointerException if contentType, form or transactionId is null.
63 byte[] transactionId) throws InvalidHeaderValueException {
69 setTransactionId(transactionId);
  /frameworks/base/telephony/java/com/android/internal/telephony/
WapPushOverSms.java 65 int transactionId = pdu[index++] & 0xFF;
177 dispatchWapPdu_PushCO(pdu, transactionId, pduType, headerStartIndex, headerLength);
181 dispatchWapPdu_MMS(pdu, transactionId, pduType, headerStartIndex, headerLength);
188 dispatchWapPdu_default(pdu, transactionId, pduType, mimeType,
194 private void dispatchWapPdu_default(byte[] pdu, int transactionId, int pduType,
206 intent.putExtra("transactionId", transactionId);
214 private void dispatchWapPdu_PushCO(byte[] pdu, int transactionId, int pduType,
221 intent.putExtra("transactionId", transactionId);
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 110 byte [] transactionId = nInd.getTransactionId();
112 + transactionId.length];
115 System.arraycopy(transactionId, 0, contentLocationWithId,
116 contentLocation.length, transactionId.length);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 138 protected String transactionId; // Transaction Id.
399 this.transactionId = newOriginalRequest.getTransactionId();
898 return this.transactionId;
905 if (this.transactionId == null)
908 return this.transactionId.hashCode();
    [all...]
SIPTransactionStack.java     [all...]

Completed in 158 milliseconds