Home
last modified time | relevance | path

Searched refs:transactionType (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Mms/src/com/android/mms/transaction/
DTransactionService.java256 int transactionType = getTransactionType(msgType); in onNewIntent() local
259 transactionType); in onNewIntent()
262 onNetworkUnavailable(serviceId, transactionType); in onNewIntent()
265 switch (transactionType) { in onNewIntent()
316 transactionType, uri.toString()); in onNewIntent()
391 private void onNetworkUnavailable(int serviceId, int transactionType) { in onNetworkUnavailable() argument
393 Log.v(TAG, "onNetworkUnavailable: sid=" + serviceId + ", type=" + transactionType); in onNetworkUnavailable()
397 if (transactionType == Transaction.RETRIEVE_TRANSACTION) { in onNetworkUnavailable()
399 } else if (transactionType == Transaction.SEND_TRANSACTION) { in onNetworkUnavailable()
605 private String decodeTransactionType(int transactionType) { in decodeTransactionType() argument
[all …]
DTransactionBundle.java77 private TransactionBundle(int transactionType) { in TransactionBundle() argument
79 mBundle.putInt(TRANSACTION_TYPE, transactionType); in TransactionBundle()
92 public TransactionBundle(int transactionType, String uri) { in TransactionBundle() argument
93 this(transactionType); in TransactionBundle()