/external/chromium_org/content/test/data/indexeddb/ |
transaction_not_blocked.html | 3 <title>IndexedDB transaction test</title>
|
transaction_run_forever.html | 3 <title>IndexedDB transaction that runs forever</title>
|
transaction_test.html | 3 <title>IndexedDB transaction test</title>
|
/external/chromium_org/sync/internal_api/public/ |
read_transaction.h | 24 // Start a new read-only transaction on the specified repository. 28 // Resume the middle of a transaction. Will not close transaction. 41 void* operator new(size_t size); // Transaction is meant for stack use only.
|
write_transaction.h | 31 // Start a new read/write transaction. 35 // is changed by the transaction, or syncer::syncable::kInvalidTransaction 36 // if not after transaction is closed. This constructor is used for model 42 // Provide access to the syncable transaction from the API WriteNode. 54 void* operator new(size_t size); // Transaction is meant for stack use only.
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseBackend.cpp | 86 // Transaction phase 1 cleanup. See comment on "What happens if a 87 // transaction is interrupted?" at the top of SQLTransactionBackend.cpp. 88 RefPtr<SQLTransactionBackend> transaction; local 90 transaction = m_transactionQueue.takeFirst(); 91 transaction->notifyDatabaseThreadIsShuttingDown(); 102 PassRefPtr<SQLTransactionBackend> DatabaseBackend::runTransaction(PassRefPtr<SQLTransaction> transaction, 113 RefPtr<SQLTransactionBackend> transactionBackend = SQLTransactionBackend::create(this, transaction, wrapper, readOnly); 131 RefPtr<SQLTransactionBackend> transaction; local 134 transaction = m_transactionQueue.takeFirst(); 136 if (transaction && databaseContext()->databaseThread()) [all...] |
ChangeVersionWrapper.cpp | 44 bool ChangeVersionWrapper::performPreflight(SQLTransactionBackend* transaction) 46 ASSERT(transaction && transaction->database()); 48 DatabaseBackend* database = transaction->database(); 68 bool ChangeVersionWrapper::performPostflight(SQLTransactionBackend* transaction) 70 ASSERT(transaction && transaction->database()); 72 DatabaseBackend* database = transaction->database(); 88 void ChangeVersionWrapper::handleCommitFailedAfterPostflight(SQLTransactionBackend* transaction) 90 transaction->database()->setCachedVersion(m_oldVersion) [all...] |
/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;
|
ResponseEventExt.java | 31 * Set the original transaction for a forked response. 33 * @param originalTransaction - the original transaction for which this response event is a fork. 40 * Get the original transaction for which this is a forked response. 41 * Note that this transaction can be in a TERMINATED state.
|
TransactionExt.java | 8 import javax.sip.Transaction; 10 public interface TransactionExt extends Transaction { 13 * Get the Sip Provider associated with this transaction 51 * @throw UnsupportedOperationException if this is not a secure client transaction. 58 *@throw UnsupportedOperationException if this is not a secure client transaction. 66 * @throw UnsupportedOperationException if this is not a secure client transaction.
|
/external/nist-sip/java/javax/sip/ |
Transaction.java | 6 public interface Transaction extends Serializable {
|
/external/chromium_org/net/http/ |
http_cache_unittest.cc | 731 // Tests that disk failures after the transaction has started don't cause the 845 // Force this transaction to read from the cache. 846 MockTransaction transaction(kSimpleGET_Transaction); 847 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; 851 RunTransactionTestAndGetTiming(cache.http_cache(), transaction, log.bound(), 884 // force this transaction to read from the cache 885 MockTransaction transaction(kSimpleGET_Transaction); 886 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; 888 MockHttpRequest request(transaction); 915 // force this transaction to read from the cache if vali 5651 MockTransaction transaction = kSimpleGET_Transaction; local [all...] |
/external/chromium/app/sql/ |
transaction_unittest.cc | 7 #include "app/sql/transaction.h" 45 sql::Transaction t(&db()); 63 sql::Transaction t(&db()); 75 sql::Transaction t2(&db()); 87 // Rolling back any part of a transaction should roll back all of them. 91 // Outermost transaction. 93 sql::Transaction outer(&db()); 99 sql::Transaction inner1(&db()); 113 sql::Transaction inner2(&db()); 126 sql::Transaction inner3(&db()) [all...] |
/external/chromium_org/sql/ |
transaction_unittest.cc | 9 #include "sql/transaction.h" 43 sql::Transaction t(&db()); 61 sql::Transaction t(&db()); 73 sql::Transaction t2(&db()); 85 // Rolling back any part of a transaction should roll back all of them. 89 // Outermost transaction. 91 sql::Transaction outer(&db()); 97 sql::Transaction inner1(&db()); 111 sql::Transaction inner2(&db()); 124 sql::Transaction inner3(&db()) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/ |
networktransaction_unittest.py | 40 transaction = NetworkTransaction() 41 self.assertEqual(transaction.run(lambda: 42), 42) 47 transaction = NetworkTransaction() 51 transaction.run(lambda: self._raise_exception()) 70 transaction = NetworkTransaction(initial_backoff_seconds=0) 71 self.assertEqual(transaction.run(lambda: self._raise_500_error()), 42) 79 transaction = NetworkTransaction(convert_404_to_None=True) 80 self.assertEqual(transaction.run(lambda: self._raise_404_error()), None) 84 transaction = NetworkTransaction(initial_backoff_seconds=60*60, timeout_seconds=60) 88 transaction.run(lambda: self._raise_500_error() [all...] |
/external/chromium_org/third_party/sqlite/src/doc/ |
pager-invariants.txt | 10 the transaction has been written into the rollback journal and 13 (b) The page was a freelist leaf page at the start of the transaction. 16 the database file at the start of the transaction. 24 transaction other than the update of the transaction sequence 30 transaction. 54 equivalent to the database file at the beginning of the transaction. 56 (8) When a transaction is rolled back, the xTruncate method of the VFS 58 the beginning of the transaction. (In some VFSes, the xTruncate 70 of every transaction [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
ISipSessionListener.aidl | 30 * @param session the session object that carries out the transaction 37 * @param session the session object that carries out the transaction 47 * @param session the session object that carries out the transaction 70 * @param session the session object that carries out the transaction 86 * @param session the session object that carries out the transaction 95 * @param session the session object that carries out the transaction 105 * @param session the session object that carries out the transaction 112 * @param session the session object that carries out the transaction 120 * @param session the session object that carries out the transaction 130 * @param session the session object that carries out the transaction [all...] |
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_backing_store.cc | 102 static void PutBool(LevelDBTransaction* transaction, 107 transaction->Put(key, &buffer); 125 static void PutInt(LevelDBTransaction* transaction, 131 transaction->Put(key, &buffer); 149 static void PutVarInt(LevelDBTransaction* transaction, 154 transaction->Put(key, &buffer); 173 static void PutString(LevelDBTransaction* transaction, 178 transaction->Put(key, &buffer); 181 static void PutIDBKeyPath(LevelDBTransaction* transaction, 186 transaction->Put(key, &buffer) 253 scoped_refptr<LevelDBTransaction> transaction = new LevelDBTransaction(db); local 763 scoped_refptr<LevelDBTransaction> transaction = local 817 scoped_ptr<LevelDBWriteOnlyTransaction> transaction = local [all...] |
/external/chromium_org/sync/syncable/ |
syncable_write_transaction.h | 23 // Constructor used for getting back transaction version after making sync 24 // API changes to one model. If model is changed by the transaction, 25 // the new transaction version of the model and modified nodes will be saved 26 // in |transaction_version| upon destruction of the transaction. If model is 58 // Stores new transaction version of changed model and nodes if model is
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
database-threading-stress-test.html | 28 db.transaction(function (tx) 45 db.transaction(function(tx) 57 document.getElementById("transactionCount").innerHTML = "Current Transaction Count: " + highestId; 63 db.transaction(function(tx) { 81 <pre id="transactionCount">Current Transaction Count: 0</pre>
|
/external/chromium/net/http/ |
http_cache_transaction.h | 5 // This file declares HttpCache::Transaction, a private class of HttpCache so 27 // This is the transaction that is returned by the HttpCache transaction 29 class HttpCache::Transaction : public HttpTransaction { 31 // The transaction has the following modes, which apply to how it may access 34 // o If the mode of the transaction is NONE, then it is in "pass through" 35 // mode and all methods just forward to the inner network transaction. 37 // o If the mode of the transaction is only READ, then it may only read from 40 // o If the mode of the transaction is only WRITE, then it may only write to 43 // o If the mode of the transaction is READ_WRITE, then the transaction ma [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
tclsqlite.test | 38 } {1 {bad option "bogus": must be authorizer, backup, busy, cache, changes, close, collate, collation_needed, commit_hook, complete, copy, enable_load_extension, errorcode, eval, exists, function, incrblob, interrupt, last_insert_rowid, nullvalue, onecolumn, profile, progress, rekey, restore, rollback_hook, status, timeout, total_changes, trace, transaction, unlock_notify, update_hook, version, or wal_hook}} 363 # Tests for the new transaction method 366 db transaction {} 369 db transaction deferred {} 372 db transaction immediate {} 375 db transaction exclusive {} 378 set rc [catch {db transaction xyzzy {}} msg] 380 } {1 {bad transaction type "xyzzy": must be deferred, exclusive, or immediate}} 382 set rc [catch {db transaction {error test-error}} msg] 386 db transaction { [all...] |
lock3.test | 41 execsql {BEGIN DEFERRED TRANSACTION} 43 execsql {END TRANSACTION} 52 execsql {BEGIN IMMEDIATE TRANSACTION} 59 execsql {END TRANSACTION} 67 execsql {BEGIN EXCLUSIVE TRANSACTION} 74 execsql {END TRANSACTION}
|
/external/chromium_org/tools/page_cycler/indexed_db/basic_insert/ |
index.html | 63 var transaction = db.transaction(['store'], 'readwrite'); 64 transaction.oncomplete = insertsDone; 65 transaction.onabort = function(e) { 66 console.log("readwrite transaction aborted"); 69 var objectStore = transaction.objectStore('store');
|
/external/chromium_org/net/dns/ |
mdns_client.h | 22 // Represents a one-time record lookup. A transaction takes one 30 // Used to signify what type of result the transaction has recieved. 34 // The transaction is done. Applies to non-single-valued transactions. Is 35 // called when the transaction has finished (this is the last call to the 39 // called when the transaction has finished without finding any results. 44 // Called when an NSec record is read for this transaction's 46 // and name for this transaction. 52 // Transaction should return only one result, and stop listening after it. 67 // Destroying the transaction cancels it. 70 // Start the transaction. Return true on success. Cache-based transaction [all...] |