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

1 2 3 4

  /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;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8SQLTransactionCustom.cpp 91 SQLTransaction* transaction = V8SQLTransaction::toNative(args.Holder()); local
112 transaction->executeSQL(statement, sqlValues, callback, errorCallback, ec);
V8SQLTransactionSyncCustom.cpp 91 SQLTransactionSync* transaction = V8SQLTransactionSync::toNative(args.Holder()); local
94 v8::Handle<v8::Value> result = toV8(transaction->executeSQL(statement, sqlValues, ec));
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupIncoming.java 91 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
92 transaction.add(checkerFragment, AccountCheckSettingsFragment.TAG);
93 transaction.addToBackStack("back");
94 transaction.commit();
AccountSetupOutgoing.java 91 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
92 transaction.add(checkerFragment, AccountCheckSettingsFragment.TAG);
93 transaction.addToBackStack("back");
94 transaction.commit();
AccountSetupExchange.java 186 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
187 transaction.add(checkerFragment, AccountCheckSettingsFragment.TAG);
188 transaction.addToBackStack("back");
189 transaction.commit();
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
HomeXLarge.java 50 FragmentTransaction transaction = openFragmentTransaction(); local
51 transaction.add(R.id.contacts_list, mList);
52 transaction.add(R.id.contact_details, mDetails);
53 transaction.commit();
  /external/webkit/Source/WebCore/storage/
DatabaseSync.cpp 103 RefPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, changeVersionCallback, false); local
104 if ((ec = transaction->begin()))
118 if ((ec = transaction->execute()))
126 if ((ec = transaction->commit()))
132 void DatabaseSync::transaction(PassRefPtr<SQLTransactionSyncCallback> callback, ExceptionCode& ec) function in class:WebCore::DatabaseSync
151 RefPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, callback, readOnly); local
152 if ((ec = transaction->begin()) || (ec = transaction->execute()) || (ec = transaction->commit()))
153 transaction->rollback()
    [all...]
IDBDatabase.h 64 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, ExceptionCode& ec) { return transaction(context, 0, ec); } function in class:WebCore::IDBDatabase
65 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, PassRefPtr<DOMStringList> storeNames, ExceptionCode& ec) { return transaction(context, storeNames, IDBTransaction::READ_ONLY, ec); } function in class:WebCore::IDBDatabase
66 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext*, PassRefPtr<DOMStringList>, unsigned short mode, ExceptionCode&);
  /external/webkit/Source/WebKit/chromium/public/
WebIDBDatabase.h 66 virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); }
69 virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec) function in class:WebKit::WebIDBDatabase
71 return transaction(names, mode, 0, ec);
74 virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, unsigned long, WebExceptionCode& ec) function in class:WebKit::WebIDBDatabase
76 return transaction(names, mode, ec);
  /external/webkit/Source/WebKit/chromium/src/
IDBDatabaseBackendProxy.cpp 78 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseBackendProxy::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
80 // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
82 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
89 void IDBDatabaseBackendProxy::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
91 // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
93 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
102 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendProxy::transaction(DOMStringList* storeNames, unsigned short mode, ExceptionCode& ec) function in class:WebKit::IDBDatabaseBackendProxy
105 WebIDBTransaction* transaction = m_webIDBDatabase->transaction(names, mode, ec); local
106 if (!transaction) {
    [all...]
WebIDBDatabaseImpl.cpp 69 WebIDBObjectStore* WebIDBDatabaseImpl::createObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBTransaction& transaction, WebExceptionCode& ec)
71 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_databaseBackend->createObjectStore(name, keyPath, autoIncrement, transaction.getIDBTransactionBackendInterface(), ec);
79 void WebIDBDatabaseImpl::deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec)
81 m_databaseBackend->deleteObjectStore(name, transaction.getIDBTransactionBackendInterface(), ec);
89 WebIDBTransaction* WebIDBDatabaseImpl::transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec) function in class:WebKit::WebIDBDatabaseImpl
92 RefPtr<IDBTransactionBackendInterface> transaction = m_databaseBackend->transaction(nameList.get(), mode, ec); local
93 if (!transaction) {
97 return new WebIDBTransactionImpl(transaction);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileProvider.java 116 ContactsTransaction transaction = getCurrentTransaction(); local
118 transaction.startTransactionForDb(db, ContactsProvider2.PROFILE_DB_TAG, this);
152 protected boolean yield(ContactsTransaction transaction) {
153 return mDelegate.yield(transaction);
AbstractContactsProvider.java 51 * Number of inserts performed in bulk to allow before yielding the transaction.
56 * The contacts transaction that is active in this thread.
66 * The database helper to serialize all transactions on. If non-null, any new transaction
68 * and initiate a transaction on that database. This should be used to ensure that operations
106 ContactsTransaction transaction = startTransaction(false); local
110 transaction.markDirty();
112 transaction.markSuccessful(false);
121 ContactsTransaction transaction = startTransaction(false); local
125 transaction.markDirty();
127 transaction.markSuccessful(false)
136 ContactsTransaction transaction = startTransaction(false); local
151 ContactsTransaction transaction = startTransaction(true); local
179 ContactsTransaction transaction = startTransaction(true); local
219 ContactsTransaction transaction = mTransactionHolder.get(); local
237 ContactsTransaction transaction = mTransactionHolder.get(); local
    [all...]

Completed in 259 milliseconds

1 2 3 4