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

12 3 4 5

  /external/chromium_org/components/precache/core/
precache_database.cc 12 #include "sql/transaction.h"
82 sql::Transaction transaction(db_.get());
83 if (!transaction.Begin()) {
84 // Do nothing if unable to begin a transaction.
107 transaction.Commit();
119 sql::Transaction transaction(db_.get());
120 if (!transaction.Begin()) {
121 // Do nothing if unable to begin a transaction
    [all...]
  /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/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 182 Transaction Trans(Pass.TA);
229 Transaction Trans(TA);
234 Transaction Trans(TA);
240 Transaction Trans(TA);
243 Transaction Trans(TA);
256 Transaction Trans(pass.TA);
Internals.h 120 class Transaction {
125 Transaction(TransformActions &TA) : TA(TA), Aborted(false) {
129 ~Transaction() {
TransARCAssign.cpp 57 Transaction Trans(Pass.TA);
TransGCCalls.cpp 59 Transaction Trans(TA);
TransUnusedInitDelegate.cpp 55 Transaction Trans(Pass.TA);
TransZeroOutPropsInDealloc.cpp 71 Transaction Trans(TA);
84 Transaction Trans(Pass.TA);
93 Transaction Trans(Pass.TA);
TransUnbridgedCasts.cpp 193 Transaction Trans(Pass.TA);
198 Transaction &Trans) {
269 Transaction Trans(Pass.TA);
292 Transaction Trans(Pass.TA);
305 Transaction Trans(Pass.TA);
TransAPIUses.cpp 96 Transaction Trans(Pass.TA);
TransBlockObjCVariable.cpp 143 Transaction Trans(Pass.TA);
  /external/chromium_org/net/http/
http_cache_transaction.h 5 // This file declares HttpCache::Transaction, a private class of HttpCache so
29 // This is the transaction that is returned by the HttpCache transaction
31 class HttpCache::Transaction : public HttpTransaction {
33 // The transaction has the following modes, which apply to how it may access
36 // o If the mode of the transaction is NONE, then it is in "pass through"
37 // mode and all methods just forward to the inner network transaction.
39 // o If the mode of the transaction is only READ, then it may only read from
42 // o If the mode of the transaction is only WRITE, then it may only write to
45 // o If the mode of the transaction is READ_WRITE, then the transaction ma
    [all...]
  /external/chromium_org/content/browser/indexed_db/
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_backing_store_unittest.cc 51 IndexedDBBackingStore::Transaction transaction1(backing_store_);
61 IndexedDBBackingStore::Transaction transaction2(backing_store_);
86 IndexedDBBackingStore::Transaction transaction1(backing_store_);
118 IndexedDBBackingStore::Transaction transaction2(backing_store_);
162 IndexedDBBackingStore::Transaction transaction1(backing_store_);
262 IndexedDBBackingStore::Transaction transaction(backing_store_);
263 transaction.Begin();
265 ok = backing_store_->CreateObjectStore(&transaction,
273 ok = backing_store_->CreateIndex(&transaction,
    [all...]
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...]
  /packages/apps/Mms/src/com/android/mms/transaction/
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/chrome/browser/history/
archived_database.cc 8 #include "app/sql/transaction.h"
45 sql::Transaction transaction(&db_);
46 if (!transaction.Begin()) {
72 return transaction.Commit();
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...]
  /external/chromium_org/chrome/browser/history/
archived_database.cc 10 #include "sql/transaction.h"
54 sql::Transaction transaction(&db_);
55 if (!transaction.Begin())
74 return transaction.Commit();
  /external/nist-sip/java/javax/sip/
Dialog.java 21 Transaction getFirstTransaction();
  /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...]
  /external/chromium_org/content/test/data/indexeddb/
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/net/disk_cache/
rankings.cc 27 // entry is to be inserted or removed from the list, a transaction object should
29 // finishing the operation, the transaction record (stored as part of the user
31 class Transaction {
37 Transaction(volatile disk_cache::LruData* data, disk_cache::Addr addr,
39 ~Transaction();
42 DISALLOW_COPY_AND_ASSIGN(Transaction);
45 Transaction::Transaction(volatile disk_cache::LruData* data,
48 DCHECK(!data_->transaction);
52 data_->transaction = addr.value()
    [all...]
  /external/chromium_org/net/disk_cache/
rankings.cc 31 // entry is to be inserted or removed from the list, a transaction object should
33 // finishing the operation, the transaction record (stored as part of the user
35 class Transaction {
41 Transaction(volatile disk_cache::LruData* data, disk_cache::Addr addr,
43 ~Transaction();
46 DISALLOW_COPY_AND_ASSIGN(Transaction);
49 Transaction::Transaction(volatile disk_cache::LruData* data,
52 DCHECK(!data_->transaction);
56 data_->transaction = addr.value()
    [all...]
  /external/chromium_org/components/webdata/common/
web_database.cc 11 #include "sql/transaction.h"
91 sql::Transaction transaction(&db_);
92 if (!transaction.Begin())
120 return transaction.Commit() ? sql::INIT_OK : sql::INIT_FAILURE;

Completed in 437 milliseconds

12 3 4 5