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.java235 int transactionType = getTransactionType(msgType); in onNewIntent() local
238 transactionType); in onNewIntent()
241 onNetworkUnavailable(serviceId, transactionType); in onNewIntent()
244 switch (transactionType) { in onNewIntent()
290 transactionType, uri.toString()); in onNewIntent()
374 private void onNetworkUnavailable(int serviceId, int transactionType) { in onNetworkUnavailable() argument
376 Log.v(TAG, "onNetworkUnavailable: sid=" + serviceId + ", type=" + transactionType); in onNetworkUnavailable()
380 if (transactionType == Transaction.RETRIEVE_TRANSACTION) { in onNetworkUnavailable()
382 } else if (transactionType == Transaction.SEND_TRANSACTION) { in onNetworkUnavailable()
579 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()