HomeSort by relevance Sort by last modified time
    Searched defs:transaction (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/nist-sip/java/gov/nist/javax/sip/
EventWrapper.java 37 protected SIPTransaction transaction; field in class:EventWrapper
39 EventWrapper(EventObject sipEvent, SIPTransaction transaction) {
41 this.transaction = transaction;
DialogFilter.java 106 * @param transaction
109 SIPServerTransaction transaction) {
120 sipStack.addTransactionPendingAck(transaction);
122 transaction.sendResponse(sipResponse);
123 transaction.releaseSem();
126 transaction.releaseSem();
127 sipStack.removeTransaction(transaction);
135 * @param transaction
139 private void sendBadRequestResponse(SIPRequest sipRequest, SIPServerTransaction transaction,
150 sipStack.addTransactionPendingAck(transaction);
288 SIPServerTransaction transaction = (SIPServerTransaction) this.transactionChannel; local
1154 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
1309 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageSender.java 18 package com.android.mms.transaction;
Observer.java 18 package com.android.mms.transaction;
21 * An interface for observing the state of a Transaction.
PrivilegedSmsReceiver.java 17 package com.android.mms.transaction;
AbstractRetryScheme.java 18 package com.android.mms.transaction;
DefaultRetryScheme.java 18 package com.android.mms.transaction;
Observable.java 18 package com.android.mms.transaction;
25 * An interface to represent the state of an observable Transaction.
SimFullReceiver.java 18 package com.android.mms.transaction;
TransactionState.java 18 package com.android.mms.transaction;
24 * be known by the observers of transactions. To encapsulate Transaction-
29 * Result code indicates the Transaction has not started.
33 * Result code indicates the Transaction successfully complete.
37 * Result code indicates the Transaction failed.
53 * @return Current state of the Transaction.
60 * To set the state of transaction. This method is only invoked by
63 * @param state The current state of transaction.
73 * To represent the result uri of transaction such as uri of MM.
SmsReceiver.java 18 package com.android.mms.transaction;
SmsRejectedReceiver.java 17 package com.android.mms.transaction;
MmsSystemEventReceiver.java 18 package com.android.mms.transaction;
49 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
50 Log.v(TAG, "wakeUpService: start transaction service ...");
58 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
69 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
89 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
100 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
ProgressCallbackEntity.java 18 package com.android.mms.transaction;
ReadRecTransaction.java 18 package com.android.mms.transaction;
46 public class ReadRecTransaction extends Transaction {
61 // Attach the transaction to the instance of RetryScheduler.
67 * @see com.android.mms.Transaction#process()
SmsSingleRecipientSender.java 1 package com.android.mms.transaction;
99 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
TransactionService.java 18 package com.android.mms.transaction;
79 * the MMS transaction until the connection is established.</li>
87 * TransactionService when a Transaction is completed.
100 * when a Transaction is completed (TRANSACTION_COMPLETED_ACTION intents).
108 * when a Transaction is completed (TRANSACTION_COMPLETED_ACTION intents).
123 // How often to extend the use of the MMS APN while a transaction
129 private final ArrayList<Transaction> mProcessing = new ArrayList<Transaction>();
130 private final ArrayList<Transaction> mPending = new ArrayList<Transaction>();
373 Transaction transaction = (Transaction) observable; local
530 Transaction transaction = null; local
    [all...]
MessageStatusReceiver.java 18 package com.android.mms.transaction;
36 "com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED";
NotificationTransaction.java 18 package com.android.mms.transaction;
20 import static com.android.mms.transaction.TransactionState.FAILED;
21 import static com.android.mms.transaction.TransactionState.INITIALIZED;
22 import static com.android.mms.transaction.TransactionState.SUCCESS;
65 * retrieval</b> response. The transaction service, upon succesful
66 * completion of this transaction, will trigger a retrieve transaction
69 public class NotificationTransaction extends Transaction implements Runnable {
96 // Attach the transaction to the instance of RetryScheduler.
122 * @see com.google.android.mms.pdu.Transaction#process(
    [all...]
SmsMessageSender.java 18 package com.android.mms.transaction;
Transaction.java 18 package com.android.mms.transaction;
32 * Transaction is an abstract class for notification transaction, send transaction
36 public abstract class Transaction extends Observable {
61 public Transaction(Context context, int serviceId,
70 * Returns the transaction state of this transaction.
72 * @return Current state of the Transaction.
80 * An instance of Transaction encapsulates the actions require
    [all...]
TransactionBundle.java 18 package com.android.mms.transaction;
29 * Key for the transaction-type.
85 * @param uri The relevant URI for this transaction. Indicates the URL of the
96 * Constructor of a transaction bundle used for incoming bundle instances.
  /external/webkit/WebCore/bindings/js/
JSDatabaseCustom.cpp 119 database->transaction(callback.release(), errorCallback.release(), successCallback.release(), readOnly);
123 JSValue JSDatabase::transaction(ExecState* exec, const ArgList& args) function in class:WebCore::JSDatabase
  /external/webkit/WebCore/bindings/v8/custom/
V8SQLTransactionCustom.cpp 98 SQLTransaction* transaction = V8SQLTransaction::toNative(args.Holder()); local
121 transaction->executeSQL(statement, sqlValues, callback, errorCallback, ec);
  /external/webkit/WebCore/storage/
DatabaseTask.h 129 // Transaction task is never synchronous, so no 'synchronizer' parameter.
130 static PassOwnPtr<DatabaseTransactionTask> create(PassRefPtr<SQLTransaction> transaction)
132 return new DatabaseTransactionTask(transaction);
135 SQLTransaction* transaction() const { return m_transaction.get(); } function in class:WebCore::DatabaseTransactionTask

Completed in 392 milliseconds

1 2 3