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

  /external/chromium/app/sql/
transaction.cc 5 #include "app/sql/transaction.h"
12 Transaction::Transaction(Connection* connection)
17 Transaction::~Transaction() {
22 bool Transaction::Begin() {
24 NOTREACHED() << "Beginning a transaction twice!";
31 void Transaction::Rollback() {
33 NOTREACHED() << "Attempting to roll back a nonexistent transaction. "
41 bool Transaction::Commit()
    [all...]
transaction.h 15 class 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
21 explicit Transaction(Connection* connection);
22 ~Transaction();
24 // Returns true when there is a transaction that has been successfully begun.
27 // Begins the transaction. This uses the default sqlite "deferred" transaction
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBBackingStore.h 101 class Transaction : public RefCounted<Transaction> {
107 virtual PassRefPtr<Transaction> createTransaction() = 0;
  /external/nist-sip/java/javax/sip/
Transaction.java 6 public interface Transaction extends Serializable {
  /external/clang/lib/ARCMigrate/
Internals.h 120 class Transaction {
125 Transaction(TransformActions &TA) : TA(TA), Aborted(false) {
129 ~Transaction() {
  /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/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/net/http/
http_cache_transaction.cc 102 HttpCache::Transaction::Transaction(HttpCache* cache)
124 io_callback_(this, &Transaction::OnIOComplete)),
126 cache_callback_(new CancelableCompletionCallback<Transaction>(
127 this, &Transaction::OnIOComplete))),
129 write_headers_callback_(new CancelableCompletionCallback<Transaction>(
130 this, &Transaction::OnIOComplete))) {
131 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders ==
136 HttpCache::Transaction::~Transaction() {
    [all...]
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...]
  /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 57 private static class Transaction {
67 Transaction(String pattern, String[] responses) {
73 Transaction(int otherType) {
96 private ArrayList<Transaction> mPairs = new ArrayList<Transaction>();
121 Transaction pair = new Transaction(pattern, responses);
139 mPairs.add(new Transaction(Transaction.ACTION_CLIENT_CLOSE));
143 mPairs.add(new Transaction(Transaction.ACTION_IO_EXCEPTION))
    [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/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 3330 milliseconds