OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:transactiontype
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Mms/src/com/android/mms/transaction/
TransactionBundle.java
73
* @param
transactionType
75
private TransactionBundle(int
transactionType
) {
77
mBundle.putInt(TRANSACTION_TYPE,
transactionType
);
84
* @param
transactionType
90
public TransactionBundle(int
transactionType
, String uri) {
91
this(
transactionType
);
149
return "
transactionType
: " + getTransactionType() +
TransactionService.java
236
int
transactionType
= getTransactionType(msgType);
238
onNetworkUnavailable(serviceId,
transactionType
);
241
switch (
transactionType
) {
260
transactionType
, uri.toString());
342
private void onNetworkUnavailable(int serviceId, int
transactionType
) {
344
Log.v(TAG, "onNetworkUnavailable: sid=" + serviceId + ", type=" +
transactionType
);
348
if (
transactionType
== Transaction.RETRIEVE_TRANSACTION) {
350
} else if (
transactionType
== Transaction.SEND_TRANSACTION) {
548
private String decodeTransactionType(int
transactionType
) {
549
if (
transactionType
== Transaction.NOTIFICATION_TRANSACTION)
[
all
...]
Completed in 54 milliseconds