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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/content/public/browser/
session_storage_namespace.h 36 // a transaction log of operations on the session storage namespace since
37 // this function has been called. Transaction logging will be restricted
41 // When transaction logging for a process is no longer required, the log
62 // Determines whether the transaction log for the process specified can
  /external/chromium_org/content/test/data/indexeddb/
cursor_prefetch.js 19 window.trans = event.target.transaction;
27 var trans = db.transaction(['store'], 'readwrite');
38 // Let the transaction finish.
46 var trans = db.transaction(['store'], 'readwrite');
59 return; // Let the transaction finish.
79 var trans = db.transaction(['store'], 'readwrite');
100 return; // Let the transaction finish.
129 var trans = db.transaction(['store'], 'readwrite');
143 return; // Let the transaction finish.
163 // Make sure transaction terminates anyway
    [all...]
quota_test.js 59 debug("Starting new transaction.");
61 var trans = db.transaction(['test123'], 'readwrite');
80 debug("Transaction finished.");
92 done("Transaction aborted. Data added: " + displaySize(dataAdded));
  /external/chromium_org/net/url_request/
url_request_job_unittest.cc 92 MockTransaction transaction(kGZip_Transaction);
93 transaction.test_mode = TEST_MODE_SYNC_ALL;
94 AddMockTransaction(&transaction);
103 RemoveMockTransaction(&transaction);
  /external/chromium_org/sync/internal_api/public/
user_share.h 21 // This encompasses all pieces required to build transaction objects on the
base_transaction.h 23 // the transaction. These transaction classes wrap identically named classes in
  /external/chromium_org/third_party/sqlite/src/test/
tkt3093.test 48 # busy callback, commit the transaction in db. This should clear
62 # Start a write transaction on db.
74 # Verify that everything worked as expected. The db transaction should
75 # have gone first and added entry 2. Then the db2 transaction would have
avtrans.test 65 set v [catch {execsql {BEGIN TRANSACTION}} msg]
69 set v [catch {execsql {COMMIT TRANSACTION}} msg]
73 set v [catch {execsql {BEGIN TRANSACTION 'foo'}} msg]
77 set v [catch {execsql {ROLLBACK TRANSACTION 'foo'}} msg]
142 execsql {END TRANSACTION}
176 } {1 {cannot commit - no transaction is active}}
182 } {1 {cannot rollback - no transaction is active}}
185 BEGIN TRANSACTION;
202 BEGIN TRANSACTION;
205 } {1 {cannot start a transaction within a transaction}
    [all...]
trans.test 63 set v [catch {execsql {BEGIN TRANSACTION}} msg]
67 set v [catch {execsql {COMMIT TRANSACTION}} msg]
71 set v [catch {execsql {BEGIN TRANSACTION 'foo'}} msg]
75 set v [catch {execsql {ROLLBACK TRANSACTION 'foo'}} msg]
140 execsql {END TRANSACTION}
175 } {1 {cannot commit - no transaction is active}}
181 } {1 {cannot rollback - no transaction is active}}
184 BEGIN TRANSACTION;
201 BEGIN TRANSACTION;
204 } {1 {cannot start a transaction within a transaction}
    [all...]
  /external/chromium_org/tools/page_cycler/database/pseudo-random-transactions/
index.html 53 db.transaction(
61 db.transaction(
69 db.transaction(
77 db.transaction(
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AccountManager.java 12 * @param challengedTransaction - the transaction that is being challenged.
AuthenticationHelper.java 38 * the transaction established by the challenged request
41 * transaction.
48 * @return a transaction containing a re-originated request with the
51 * if we get an exception white creating the new transaction
SecureAccountManager.java 11 * @param challengedTransaction - the transaction that is being challenged.
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionErrorEvent.java 32 * An event that indicates that a transaction has encountered an error.
50 * This event ID indicates that the transaction has timed out.
71 * Creates a transaction error event.
73 * @param sourceTransaction Transaction which is raising the error.
package.html 5 <li>SIPServerTransaction -- an implementation of the Server Transaction State Machine (Chapter 17 of RFC 3261).
  /frameworks/base/core/java/android/os/
IBinder.java 33 * call coming in to a Binder object, respectively. This transaction API
52 * <p>The system maintains a pool of transaction threads in each process that
56 * it sends the transaction to process B. The next available pool thread in
57 * B receives the incoming transaction, calls Binder.onTransact() on the target
64 * if process A performs a transaction to process B, and process B while
65 * handling that transaction calls transact() on an IBinder that is implemented
67 * transaction to finish will take care of calling Binder.onTransact() on the
88 * The first transaction code available for user commands.
92 * The last transaction code available for user commands.
97 * IBinder protocol transaction code: pingBinder()
    [all...]
  /external/chromium_org/chrome/browser/webdata/
keyword_table.cc 24 #include "sql/transaction.h"
346 sql::Transaction transaction(db_);
347 return transaction.Begin() &&
375 transaction.Commit();
388 sql::Transaction transaction(db_);
389 if (!transaction.Begin())
407 return transaction.Commit();
411 sql::Transaction transaction(db_)
    [all...]
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceFragmentActivity.java 36 FragmentTransaction transaction = getFragmentManager().beginTransaction() local
38 transaction.commit();
  /external/chromium_org/third_party/WebKit/ManualTests/
database-threading-stress-test-2.html 18 db.transaction(function(tx) {
35 db.transaction(function(tx) {
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseTask.cpp 155 // Starts a transaction that will report its results via a callback.
157 DatabaseBackend::DatabaseTransactionTask::DatabaseTransactionTask(PassRefPtr<SQLTransactionBackend> transaction)
158 : DatabaseTask(Database::from(transaction->database()), 0)
159 , m_transaction(transaction)
174 // If the task is being destructed without the transaction ever being run,
176 // transaction a chance to clean up since it may not have been able to
179 // Transaction phase 2 cleanup. See comment on "What happens if a
180 // transaction is interrupted?" at the top of SQLTransactionBackend.cpp.
SQLStatement.cpp 73 bool SQLStatement::performCallback(SQLTransaction* transaction)
75 ASSERT(transaction);
85 // because then we need to jump to the transaction error callback.
88 callbackError = errorCallback->handleEvent(transaction, error.get());
91 callbackError = !callback->handleEvent(transaction, resultSet.get());
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusReceiver.java 18 package com.android.mms.transaction;
26 "com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED";
  /external/chromium/chrome/browser/history/
top_sites_database.cc 6 #include "app/sql/transaction.h"
146 sql::Transaction transaction(db_.get());
147 transaction.Begin();
157 transaction.Commit();
222 sql::Transaction transaction(db_.get());
223 transaction.Begin();
225 transaction.Commit();
228 // Caller should have a transaction open
    [all...]
archived_database.cc 8 #include "app/sql/transaction.h"
45 sql::Transaction transaction(&db_);
46 if (!transaction.Begin()) {
72 return transaction.Commit();
  /external/chromium_org/content/browser/indexed_db/
indexed_db_cursor.cc 20 IndexedDBTransaction* transaction)
23 transaction_(transaction),
60 IndexedDBTransaction* /*transaction*/) {
75 IndexedDBTransaction* /*transaction*/) {
104 IndexedDBTransaction* /*transaction*/) {

Completed in 1492 milliseconds

1 2 3 4 56 7 8 91011>>