HomeSort by relevance Sort by last modified time
    Searched defs:Transaction (Results 1 - 24 of 24) 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 38 class Transaction {
40 Transaction();
41 ~Transaction();
73 // Abort transaction by undoing all recorded changes.
191 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...]
  /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_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...]
  /frameworks/base/core/java/android/database/sqlite/
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...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 55 private static class Transaction {
65 Transaction(String pattern, String[] responses) {
71 Transaction(int otherType) {
94 private ArrayList<Transaction> mPairs = new ArrayList<Transaction>();
127 Transaction pair = new Transaction(pattern, responses);
145 mPairs.add(new Transaction(Transaction.ACTION_CLIENT_CLOSE));
149 mPairs.add(new Transaction(Transaction.ACTION_IO_EXCEPTION))
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_backing_store.h 68 class CONTENT_EXPORT Transaction;
131 IndexedDBBackingStore::Transaction* transaction,
146 IndexedDBBackingStore::Transaction* transaction,
153 IndexedDBBackingStore::Transaction* transaction,
188 IndexedDBBackingStore::Transaction* transaction,
194 IndexedDBBackingStore::Transaction* transaction
425 LevelDBTransaction* transaction() { return transaction_; } function in class:content::IndexedDBBackingStore::Transaction
    [all...]
indexed_db_backing_store.cc 182 static void PutBool(LevelDBTransaction* transaction,
187 transaction->Put(key, &buffer);
221 static void PutInt(LevelDBTransaction* transaction,
227 transaction->Put(key, &buffer);
247 static void PutVarInt(LevelDBTransaction* transaction,
252 transaction->Put(key, &buffer);
274 static void PutString(LevelDBTransaction* transaction,
279 transaction->Put(key, &buffer);
282 static void PutIDBKeyPath(LevelDBTransaction* transaction,
287 transaction->Put(key, &buffer)
356 scoped_refptr<LevelDBTransaction> transaction = local
1279 scoped_refptr<LevelDBTransaction> transaction = local
1385 scoped_ptr<LevelDBDirectTransaction> transaction = local
2369 scoped_refptr<LevelDBTransaction> transaction = local
    [all...]
  /external/chromium_org/net/http/
http_cache_transaction.cc 70 // A cache transaction hit in cache (data was present and not stale)
193 HttpCache::Transaction::Transaction(
220 io_callback_(base::Bind(&Transaction::OnIOComplete,
225 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders ==
230 HttpCache::Transaction::~Transaction() {
253 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len,
269 bool HttpCache::Transaction::AddTruncatedFlag() {
290 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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
scardssp.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 

Completed in 775 milliseconds