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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/database/sqlite/
SQLiteTransactionListener.java 20 * A listener for transaction events.
24 * Called immediately after the transaction begins.
29 * Called immediately before commiting the transaction.
34 * Called if the transaction is about to be rolled back.
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/nist-sip/java/gov/nist/javax/sip/
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...]
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...]
  /external/chromium_org/third_party/sqlite/src/test/
fts2k.test 32 BEGIN TRANSACTION;
35 COMMIT TRANSACTION;
41 # transaction.
44 BEGIN TRANSACTION;
48 COMMIT TRANSACTION;
52 # Test that buffered inserts are seen within a transaction. This is
56 BEGIN TRANSACTION;
60 ROLLBACK TRANSACTION;
75 BEGIN TRANSACTION;
78 ROLLBACK TRANSACTION;
    [all...]
fts3ak.test 32 BEGIN TRANSACTION;
35 COMMIT TRANSACTION;
41 # transaction.
44 BEGIN TRANSACTION;
48 COMMIT TRANSACTION;
52 # Test that buffered inserts are seen within a transaction. This is
56 BEGIN TRANSACTION;
60 ROLLBACK TRANSACTION;
75 BEGIN TRANSACTION;
78 ROLLBACK TRANSACTION;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsTransaction.java 30 * A transaction for interacting with a Contacts provider. This is used to pass state around
31 * throughout the operations comprising the transaction, including which databases the overall
32 * transaction is involved in, and whether the operation being performed is a batch operation.
37 * Whether this transaction is encompassing a batch of operations. If we're in batch mode,
43 * The list of databases that have been enlisted in this transaction.
51 * The mapping of tags to databases involved in this transaction.
56 * Whether any actual changes have been made successfully in this transaction.
62 * lock on one of the databases that we started the transaction with (the yield code cleans
68 * Creates a new transaction object, optionally marked as a batch transaction
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.cc 280 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
281 if (!transaction)
283 DCHECK_EQ(transaction->mode(), indexed_db::TRANSACTION_VERSION_CHANGE);
297 transaction->ScheduleTask(
310 IndexedDBTransaction* transaction) {
313 transaction->BackingStoreTransaction(),
314 transaction->database()->id(),
319 transaction->Abort(IndexedDBDatabaseError(
330 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
331 if (!transaction)
359 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
417 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
472 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
480 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
489 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
501 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
718 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
872 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
945 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
988 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1079 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1138 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1188 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1599 scoped_refptr<IndexedDBTransaction> transaction = local
    [all...]
indexed_db_transaction_coordinator.h 27 void DidCreateTransaction(scoped_refptr<IndexedDBTransaction> transaction);
28 void DidFinishTransaction(scoped_refptr<IndexedDBTransaction> transaction);
31 bool IsActive(IndexedDBTransaction* transaction);
34 // Makes a snapshot of the transaction queue. For diagnostics only.
39 bool CanStartTransaction(IndexedDBTransaction* const transaction,
indexed_db_index_writer.cc 31 IndexedDBBackingStore::Transaction* transaction,
41 transaction,
67 IndexedDBBackingStore::Transaction* transaction,
72 bool ok = backing_store->PutIndexDataForRecord(transaction,
86 IndexedDBBackingStore::Transaction* transaction,
101 bool ok = backing_store->KeyExistsInIndex(transaction,
117 scoped_refptr<IndexedDBTransaction> transaction,
    [all...]
indexed_db_database.h 121 void TransactionCreated(scoped_refptr<IndexedDBTransaction> transaction);
122 void TransactionStarted(IndexedDBTransaction* transaction);
123 void TransactionFinished(IndexedDBTransaction* transaction);
124 void TransactionFinishedAndCompleteFired(IndexedDBTransaction* transaction);
125 void TransactionFinishedAndAbortFired(IndexedDBTransaction* transaction);
187 IndexedDBTransaction* transaction);
189 IndexedDBTransaction* transaction);
192 IndexedDBTransaction* transaction);
195 IndexedDBTransaction* transaction);
201 IndexedDBTransaction* transaction);
    [all...]
  /external/chromium_org/net/http/
http_transaction.h 26 // Represents a single HTTP transaction (i.e., a single request/response pair).
31 // Stops any pending IO and destroys the transaction object.
34 // Starts the HTTP transaction (i.e., sends the HTTP request).
36 // Returns OK if the transaction could be started synchronously, which means
40 // the transaction could not be started.
43 // request_info object alive until Destroy is called on the transaction.
45 // NOTE: The transaction is not responsible for deleting the callback object.
52 // Restarts the HTTP transaction, ignoring the last error. This call can
60 // NOTE: The transaction is not responsible for deleting the callback object.
64 // Restarts the HTTP transaction with a client certificate
    [all...]
  /packages/apps/Mms/src/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.
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...]
  /external/chromium_org/sync/syncable/
directory_change_delegate.h 16 // the releasing of the syncable transaction. The delegate performs work to
17 // 1. Calculate changes, depending on the source of the transaction
19 // 2. Perform final work while the transaction is held
21 // 3. Perform any work that should be done after the transaction is released.
38 // transaction.
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 76 javax.sip.Transaction, gov.nist.javax.sip.TransactionExt {
112 * INVITE transaction timeout timer
138 protected String transactionId; // Transaction Id.
183 // Parent stack for this transaction
186 // Original request that is being handled by this transaction
189 // Underlying channel being used to send messages for this transaction
212 // Transaction branch ID
215 // Method of the Request used to create the transaction.
218 // Sequence number of request used to create the transaction
221 // Current transaction stat
285 SIPTransaction transaction = SIPTransaction.this; local
    [all...]
  /external/chromium_org/chrome/browser/resources/image_loader/
cache.js 103 * @param {IDBTransaction=} opt_transaction Transaction to be reused. If not
108 var transaction = opt_transaction ||
109 this.db_.transaction(['settings'], 'readwrite');
110 var settingsStore = transaction.objectStore('settings');
120 * @param {IDBTransaction=} opt_transaction Transaction to be reused. If not
126 var transaction = opt_transaction ||
127 this.db_.transaction(['settings', 'metadata', 'data'], 'readwrite');
128 var settingsStore = transaction.objectStore('settings');
151 * @param {IDBTransaction=} opt_transaction Transaction to be reused. If not
157 var transaction = opt_transaction |
    [all...]
  /external/chromium/net/http/
http_transaction.h 22 // Represents a single HTTP transaction (i.e., a single request/response pair).
27 // Stops any pending IO and destroys the transaction object.
30 // Starts the HTTP transaction (i.e., sends the HTTP request).
32 // Returns OK if the transaction could be started synchronously, which means
36 // that the transaction could not be started.
39 // request_info object alive until Destroy is called on the transaction.
41 // NOTE: The transaction is not responsible for deleting the callback object.
48 // Restarts the HTTP transaction, ignoring the last error. This call can
56 // NOTE: The transaction is not responsible for deleting the callback object.
60 // Restarts the HTTP transaction with a client certificate
    [all...]
  /external/chromium_org/content/browser/resources/indexed_db/
indexeddb_internals.html 91 <table class="indexeddb-transaction-list">
94 <th title="Process ID of the tab or SharedWorker that created the transaction">
97 <th title="Transaction ID (unique within Process)">
100 <th title="Type of transaction">
103 <th title="Names of object stores used by the transaction">
112 <th title="Time since transaction creation">
115 <th title="Time since transaction started">
118 <th title="Status in the transaction queue">
122 <tr class="indexeddb-transaction"
126 <td class="indexeddb-transaction-pid
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
EventLogTags.logtags 7 # logged when a P2P transaction succeeds
9 # logged when a P2P transaction fails
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseSync.cpp 81 setLastErrorMessage("unable to changeVersion from within a transaction");
86 RefPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, changeVersionCallback, false); local
87 transaction->begin(exceptionState);
109 transaction->execute(exceptionState);
122 transaction->commit(exceptionState);
135 void DatabaseSync::transaction(PassOwnPtr<SQLTransactionSyncCallback> callback, ExceptionState& exceptionState) function in class:WebCore::DatabaseSync
145 void DatabaseSync::rollbackTransaction(PassRefPtr<SQLTransactionSync> transaction)
148 transaction->rollback();
158 setLastErrorMessage("unable to start a transaction from within a transaction");
163 RefPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, callback, readOnly); local
    [all...]
SQLTransactionCoordinator.cpp 40 static String getDatabaseIdentifier(SQLTransactionBackend* transaction)
42 DatabaseBackend* database = transaction->database();
71 void SQLTransactionCoordinator::acquireLock(SQLTransactionBackend* transaction)
75 String dbIdentifier = getDatabaseIdentifier(transaction);
84 info.pendingTransactions.append(transaction);
88 void SQLTransactionCoordinator::releaseLock(SQLTransactionBackend* transaction)
93 String dbIdentifier = getDatabaseIdentifier(transaction);
99 if (transaction->isReadOnly()) {
100 ASSERT(info.activeReadTransactions.contains(transaction));
101 info.activeReadTransactions.remove(transaction);
137 RefPtr<SQLTransactionBackend> transaction = info.pendingTransactions.first(); local
    [all...]
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app.js 65 request.transaction.onabort = unexpectedAbortCallback;
166 var transaction = db.transaction(['user-events'], 'readwrite');
167 var store = transaction.objectStore('user-events');
178 transaction.onabort = unexpectedAbortCallback;
179 transaction.oncomplete = function () {
204 var transaction = db.transaction(['user-events'], 'readonly');
205 transaction.onabort = unexpectedAbortCallback;
206 var store = transaction.objectStore('user-events')
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_change_listener.h 15 // the releasing of the syncable transaction. The listener performs work to
16 // 1. Calculate changes, depending on the source of the transaction
18 // 2. Perform final work while the transaction is held
20 // 3. Perform any work that should be done after the transaction is released.
  /external/chromium_org/content/test/data/indexeddb/
transaction_get_test.html 3 <title>IndexedDB transaction get test</title>

Completed in 693 milliseconds

12 3 4 5 6 7 8 91011>>