HomeSort by relevance Sort by last modified time
    Searched refs:transaction (Results 26 - 50 of 211) sorted by null

12 3 4 5 6 7 8 9

  /external/webkit/Source/WebKit/chromium/src/
IDBObjectStoreBackendProxy.cpp 77 void IDBObjectStoreBackendProxy::get(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
79 // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
81 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
85 void IDBObjectStoreBackendProxy::put(PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBKey> key, PutMode putMode, PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
87 // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
89 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
93 void IDBObjectStoreBackendProxy::deleteFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
95 // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
97 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
101 void IDBObjectStoreBackendProxy::clear(PassRefPtr<IDBCallbacks> callbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec
    [all...]
  /external/dbus/bus/
services.h 45 BusTransaction *transaction,
58 BusTransaction *transaction,
64 BusTransaction *transaction,
74 BusTransaction *transaction,
78 BusTransaction *transaction,
82 BusTransaction *transaction,
dispatch.h 32 dbus_bool_t bus_dispatch_matches (BusTransaction *transaction,
connection.h 61 BusTransaction *transaction,
67 BusTransaction *transaction,
117 /* transaction API so we can send or not send a block of messages as a whole */
122 BusContext* bus_transaction_get_context (BusTransaction *transaction);
123 BusConnections* bus_transaction_get_connections (BusTransaction *transaction);
124 dbus_bool_t bus_transaction_send (BusTransaction *transaction,
127 dbus_bool_t bus_transaction_send_from_driver (BusTransaction *transaction,
130 dbus_bool_t bus_transaction_send_error_reply (BusTransaction *transaction,
134 void bus_transaction_cancel_and_free (BusTransaction *transaction);
135 void bus_transaction_execute_and_free (BusTransaction *transaction);
    [all...]
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceFragmentActivity.java 36 FragmentTransaction transaction = getFragmentManager().beginTransaction() local
38 transaction.commit();
  /external/webkit/Source/WebCore/bindings/js/
JSCustomSQLStatementErrorCallback.cpp 43 bool JSSQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLError* error)
54 args.append(toJS(exec, transaction));
  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
MainActivity.java 76 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
79 // and add the transaction to the back stack so the user can navigate back
80 transaction.replace(R.id.fragment_container, newFragment);
81 transaction.addToBackStack(null);
83 // Commit the transaction
84 transaction.commit();
  /external/webkit/LayoutTests/storage/
execute-sql-args.js 44 function tryExecuteSql(transaction, parameterList)
47 eval('transaction.executeSql(' + parameterList + ')');
54 function runTransactionTest(transaction, parameterList, expectException)
56 var exception = tryExecuteSql(transaction, parameterList);
70 function runTransactionTests(transaction)
73 runTransactionTest(transaction, expectNoException[i], false);
75 runTransactionTest(transaction, expectException[i], true);
85 db.transaction(runTransactionTests);
read-and-write-transactions-dont-run-together.js 22 var transactionFunction = (readOnly ? db.readTransaction : db.transaction);
26 log("Read transaction starting while write transaction in progress.");
32 log("Write transaction starting while another transaction in progress.");
39 log((readOnly ? "Read" : "Write") + " transaction failed: " + error.message);
47 log("Transaction successful.");
73 db1.transaction(function(tx) {
multiple-transactions.js 13 db.transaction(function(tx) {
14 log("Transaction 1 Started");
16 log("Transaction 1 Errored - " + err);
19 log("Transaction 1 Succeeded");
23 db.transaction(function(tx) {
24 log("Transaction 2 Started");
26 log("Transaction 2 Errored - " + err);
29 log("Transaction 2 Succeeded");
  /packages/apps/Mms/src/com/android/mms/transaction/
PrivilegedSmsReceiver.java 17 package com.android.mms.transaction;
MessageStatusReceiver.java 18 package com.android.mms.transaction;
26 "com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED";
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.
  /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...]
IDBDatabaseBackendImpl.cpp 113 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; local
114 if (!transaction->scheduleTask(createCallbackTask(&IDBDatabaseBackendImpl::createObjectStoreInternal, database, objectStore, transaction),
124 void IDBDatabaseBackendImpl::createObjectStoreInternal(ScriptExecutionContext*, PassRefPtr<IDBDatabaseBackendImpl> database, PassRefPtr<IDBObjectStoreBackendImpl> objectStore, PassRefPtr<IDBTransactionBackendInterface> transaction)
129 transaction->abort();
134 transaction->didCompleteTaskEvents();
150 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; local
151 if (!transaction->scheduleTask(createCallbackTask(&IDBDatabaseBackendImpl::deleteObjectStoreInternal, database, objectStore, transaction),
159 void IDBDatabaseBackendImpl::deleteObjectStoreInternal(ScriptExecutionContext*, PassRefPtr<IDBDatabaseBackendImpl> database, PassRefPtr<IDBObjectStoreBackendImpl> objectStore, PassRefPtr<IDBTransactionBackendInterface> transaction)
186 RefPtr<IDBTransactionBackendInterface> transaction = IDBTransactionBackendImpl::create(objectStoreNames.get(), IDBTransaction::VERSION_CHANGE, this); local
206 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendImpl::transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode& ec) function in class:WebCore::IDBDatabaseBackendImpl
    [all...]
IDBObjectStoreBackendImpl.cpp 84 void IDBObjectStoreBackendImpl::get(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
89 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::getInternal, objectStore, key, callbacks)))
132 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; local
135 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::putInternal, objectStore, value, key, putMode, callbacks, transaction)))
202 void IDBObjectStoreBackendImpl::putInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectStore, PassRefPtr<SerializedScriptValue> prpValue, PassRefPtr<IDBKey> prpKey, PutMode putMode, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBTransactionBackendInterface> transaction)
240 // Before this point, don't do any mutation. After this point, rollback the transaction in case of error.
245 transaction->abort();
257 transaction->abort();
264 transaction->abort()
457 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; local
    [all...]
IDBIndexBackendImpl.cpp 71 void IDBIndexBackendImpl::openCursorInternal(ScriptExecutionContext*, PassRefPtr<IDBIndexBackendImpl> index, PassRefPtr<IDBKeyRange> range, unsigned short untypedDirection, IDBCursorBackendInterface::CursorType cursorType, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBTransactionBackendInterface> transaction)
96 RefPtr<IDBObjectStoreBackendInterface> objectStore = transaction->objectStore(index->m_storeName, ec);
99 RefPtr<IDBCursorBackendInterface> cursor = IDBCursorBackendImpl::create(backingStoreCursor.get(), direction, cursorType, transaction.get(), objectStore.get());
108 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; local
109 if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, IDBCursorBackendInterface::IndexCursor, callbacks, transaction)))
118 RefPtr<IDBTransactionBackendInterface> transaction = transactionPtr; local
119 if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, IDBCursorBackendInterface::IndexKeyCursor, callbacks, transaction)))
143 void IDBIndexBackendImpl::get(PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec
    [all...]
IDBCursor.cpp 42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
44 return adoptRef(new IDBCursor(backend, request, source, transaction));
47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
51 , m_transaction(transaction)
  /external/chromium/net/http/
http_cache_unittest.cc 4749 MockTransaction transaction = kSimpleGET_Transaction; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 144 // transaction
152 + " transaction "
153 + eventWrapper.transaction
160 // transaction already exists. If the listener chose
193 "transaction already exists! " + tx);
199 "transaction already exists!!");
205 // new transaction
206 SIPServerTransaction st = (SIPServerTransaction) eventWrapper.transaction;
210 // Set up a pointer to the transaction.
211 sipRequest.setTransaction(eventWrapper.transaction);
    [all...]
SipProviderImpl.java 71 import javax.sip.Transaction;
168 public void handleEvent(EventObject sipEvent, SIPTransaction transaction) {
172 + transaction + "this.sipListener = "
185 EventWrapper eventWrapper = new EventWrapper(sipEvent, transaction);
284 "Transaction already assigned to request");
286 throw new TransactionUnavailableException ("Cannot create client transaction for " + Request.ACK);
312 "Transaction already exists!");
338 "could not find existing transaction for "
349 "Cannot resolve next hop -- transaction unavailable");
352 "Cannot resolve next hop -- transaction unavailable", ex)
457 SIPServerTransaction transaction = null; local
902 SIPTransaction transaction = (SIPTransaction) transactionErrorEvent local
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteSession.java 41 * at most one read-write transaction is performed at a time. When WAL is not
51 * has its own session object and therefore its own transaction state independent
64 * There are two kinds of transaction: implicit transactions and explicit
67 * An implicit transaction is created whenever a database operation is requested
68 * and there is no explicit transaction currently in progress. An implicit transaction
72 * An explicit transaction is started by calling {@link #beginTransaction} and
73 * specifying the desired transaction mode. Once an explicit transaction has begun,
74 * all subsequent database operations will be performed as part of that transaction
345 Transaction transaction = obtainTransaction(transactionMode, transactionListener); local
936 Transaction transaction = mTransactionPool; local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomSQLStatementErrorCallback.cpp 46 bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLError* error)
59 v8::Handle<v8::Value> transactionHandle = toV8(transaction);
  /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();

Completed in 665 milliseconds

12 3 4 5 6 7 8 9