HomeSort by relevance Sort by last modified time
    Searched defs:Transaction (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/sql/
transaction.cc 5 #include "sql/transaction.h"
12 Transaction::Transaction(Connection* connection)
17 Transaction::~Transaction() {
22 bool Transaction::Begin() {
23 DCHECK(!is_open_) << "Beginning a transaction twice!";
28 void Transaction::Rollback() {
29 DCHECK(is_open_) << "Attempting to roll back a nonexistent transaction. "
35 bool Transaction::Commit()
    [all...]
transaction.h 15 class SQL_EXPORT Transaction {
17 // Creates the scoped transaction object. You MUST call Begin() to begin the
18 // transaction. If you have begun a transaction and not committed it, the
19 // constructor will roll back the transaction. If you want to commit, you
24 explicit Transaction(Connection* connection);
25 ~Transaction();
27 // Returns true when there is a transaction that has been successfully begun.
30 // Begins the transaction. This uses the default sqlite "deferred" transaction
    [all...]
  /art/test/Transaction/
Transaction.java 17 public class Transaction {
  /external/clang/lib/ARCMigrate/
Internals.h 123 class Transaction {
128 Transaction(TransformActions &TA) : TA(TA), Aborted(false) {
132 ~Transaction() {
  /external/nist-sip/java/javax/sip/
Transaction.java 6 public interface Transaction extends Serializable {
  /art/runtime/
transaction.h 39 class Transaction {
41 Transaction();
42 ~Transaction();
74 // Abort transaction by undoing all recorded changes.
192 DISALLOW_COPY_AND_ASSIGN(Transaction);
transaction.cc 17 #include "transaction.h"
33 Transaction::Transaction() : log_lock_("transaction log lock", kTransactionLogLock) {
37 Transaction::~Transaction() {
51 LOG(INFO) << "Transaction::~Transaction"
60 void Transaction::RecordWriteField32(mirror::Object* obj, MemberOffset field_offset, uint32_t value,
68 void Transaction::RecordWriteField64(mirror::Object* obj, MemberOffset field_offset, uint64_t value
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
leveldb_wrapper.h 44 typedef std::pair<Operation, std::string> Transaction;
45 typedef std::map<std::string, Transaction, SliceComparator>
  /external/chromium_org/net/disk_cache/blockfile/
rankings.cc 34 // entry is to be inserted or removed from the list, a transaction object should
36 // finishing the operation, the transaction record (stored as part of the user
38 class Transaction {
44 Transaction(volatile disk_cache::LruData* data, disk_cache::Addr addr,
46 ~Transaction();
49 DISALLOW_COPY_AND_ASSIGN(Transaction);
52 Transaction::Transaction(volatile disk_cache::LruData* data,
55 DCHECK(!data_->transaction);
59 data_->transaction = addr.value()
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_backing_store.h 120 class CONTENT_EXPORT Transaction {
122 explicit Transaction(IndexedDBBackingStore* backing_store);
123 virtual ~Transaction();
147 LevelDBTransaction* transaction() { return transaction_.get(); } function in class:content::IndexedDBBackingStore::Transaction
275 Transaction* transaction,
288 Transaction* transaction_;
357 IndexedDBBackingStore::Transaction* transaction,
372 IndexedDBBackingStore::Transaction* transaction
    [all...]
indexed_db_backing_store.cc 183 static void PutBool(LevelDBTransaction* transaction,
188 transaction->Put(key, &buffer);
222 static void PutInt(LevelDBTransaction* transaction,
228 transaction->Put(key, &buffer);
248 static void PutVarInt(LevelDBTransaction* transaction,
253 transaction->Put(key, &buffer);
275 static void PutString(LevelDBTransaction* transaction,
280 transaction->Put(key, &buffer);
283 static void PutIDBKeyPath(LevelDBTransaction* transaction,
288 transaction->Put(key, &buffer)
357 scoped_refptr<LevelDBTransaction> transaction = local
1318 scoped_refptr<LevelDBTransaction> transaction = local
1424 scoped_ptr<LevelDBDirectTransaction> transaction = local
2417 scoped_refptr<LevelDBTransaction> transaction = local
    [all...]
  /external/chromium_org/net/http/
http_cache_transaction.cc 182 // A cache transaction hit in cache (data was present and not stale)
312 HttpCache::Transaction::Transaction(
343 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders ==
347 io_callback_ = base::Bind(&Transaction::OnIOComplete,
351 HttpCache::Transaction::~Transaction() {
374 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len,
390 bool HttpCache::Transaction::AddTruncatedFlag() {
411 LoadState HttpCache::Transaction::GetWriterLoadState() const
    [all...]
http_cache_transaction.h 5 // This file declares HttpCache::Transaction, a private class of HttpCache so
28 // This is the transaction that is returned by the HttpCache transaction
30 class HttpCache::Transaction : public HttpTransaction {
32 // The transaction has the following modes, which apply to how it may access
35 // o If the mode of the transaction is NONE, then it is in "pass through"
36 // mode and all methods just forward to the inner network transaction.
38 // o If the mode of the transaction is only READ, then it may only read from
41 // o If the mode of the transaction is only WRITE, then it may only write to
44 // o If the mode of the transaction is READ_WRITE, then the transaction ma
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 

Completed in 692 milliseconds