HomeSort by relevance Sort by last modified time
    Searched full:transaction (Results 1 - 25 of 1579) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/
Timeout.java 5 TRANSACTION;
ServerTransaction.java 5 public interface ServerTransaction extends Transaction {
  /external/chromium_org/sql/
transaction.cc 5 #include "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 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...]
  /external/chromium/app/sql/
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...]
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...]
  /external/nist-sip/java/gov/nist/javax/sip/
ServerTransactionExt.java 8 * Return the canceled Invite transaction corresponding to an
9 * incoming CANCEL server transaction.
11 * @return -- the canceled Invite transaction.
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction_unittest.cc 31 void DummyOperation(IndexedDBTransaction* transaction) {}
47 scoped_refptr<IndexedDBTransaction> transaction = new IndexedDBTransaction( local
54 db_->TransactionCreated(transaction);
57 EXPECT_EQ(IndexedDBTransaction::STARTED, transaction->state());
58 EXPECT_FALSE(transaction->IsTimeoutTimerRunning());
61 transaction->ScheduleTask(base::Bind(
63 EXPECT_FALSE(transaction->IsTimeoutTimerRunning());
66 EXPECT_TRUE(transaction->IsTimeoutTimerRunning());
69 transaction->Abort();
70 EXPECT_EQ(IndexedDBTransaction::FINISHED, transaction->state())
99 scoped_refptr<IndexedDBTransaction> transaction = new IndexedDBTransaction( local
    [all...]
indexed_db_fake_backing_store.h 28 virtual bool UpdateIDBDatabaseIntVersion(Transaction*,
33 virtual bool CreateObjectStore(Transaction*,
40 virtual bool ClearObjectStore(Transaction*,
43 virtual bool DeleteRecord(Transaction*,
47 virtual bool GetKeyGeneratorCurrentNumber(Transaction*,
51 virtual bool MaybeUpdateKeyGeneratorCurrentNumber(Transaction*,
57 virtual bool KeyExistsInObjectStore(Transaction*,
64 virtual bool CreateIndex(Transaction*,
72 virtual bool DeleteIndex(Transaction*,
76 virtual bool PutIndexDataForRecord(Transaction*,
    [all...]
indexed_db_backing_store.h 45 class CONTENT_EXPORT Transaction;
81 IndexedDBBackingStore::Transaction* transaction,
90 IndexedDBBackingStore::Transaction* transaction,
97 IndexedDBBackingStore::Transaction* transaction,
122 virtual bool GetRecord(IndexedDBBackingStore::Transaction* transaction,
127 virtual bool PutRecord(IndexedDBBackingStore::Transaction* transaction
291 LevelDBTransaction* transaction() { return transaction_; } function in class:content::IndexedDBBackingStore::Transaction
    [all...]
indexed_db_transaction_coordinator.cc 21 scoped_refptr<IndexedDBTransaction> transaction) {
22 DCHECK(!queued_transactions_.count(transaction));
23 DCHECK(!started_transactions_.count(transaction));
24 DCHECK_EQ(IndexedDBTransaction::CREATED, transaction->state());
26 queued_transactions_.insert(transaction);
31 scoped_refptr<IndexedDBTransaction> transaction) {
32 if (queued_transactions_.count(transaction)) {
33 DCHECK(!started_transactions_.count(transaction));
34 queued_transactions_.erase(transaction);
36 DCHECK(started_transactions_.count(transaction));
94 IndexedDBTransaction* transaction = *it; local
105 scoped_refptr<IndexedDBTransaction> transaction = *it; local
    [all...]
indexed_db_fake_backing_store.cc 30 bool IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
39 bool IndexedDBFakeBackingStore::CreateObjectStore(Transaction*,
48 bool IndexedDBFakeBackingStore::ClearObjectStore(Transaction*,
53 bool IndexedDBFakeBackingStore::DeleteRecord(Transaction*,
60 Transaction*,
67 Transaction*,
75 Transaction*,
84 bool IndexedDBFakeBackingStore::CreateIndex(Transaction*,
95 bool IndexedDBFakeBackingStore::DeleteIndex(Transaction*,
101 bool IndexedDBFakeBackingStore::PutIndexDataForRecord(Transaction*,
    [all...]
indexed_db_index_writer.h 31 IndexedDBBackingStore::Transaction* transaction,
41 IndexedDBBackingStore::Transaction* transaction,
49 IndexedDBBackingStore::Transaction* transaction,
62 scoped_refptr<IndexedDBTransaction> transaction,
  /external/chromium_org/content/test/data/indexeddb/
transaction_not_blocked.js 20 debug('Creating new transaction.');
21 var transaction = db.transaction('store', 'readwrite');
22 transaction.onabort = unexpectedAbortCallback;
23 var objectStore = transaction.objectStore('store');
31 transaction.oncomplete = function() {
32 debug("transaction completed");
transaction_test.js 7 debug('The final transaction completed.');
13 fail('The final transaction should not abort.');
24 debug('The transaction was aborted.');
26 var finalTransaction = db.transaction(['employees'],
38 fail('The new transaction should not complete.');
43 debug('Added an employee inside the transaction.');
49 debug('Creating new transaction.');
50 window.newTransaction = db.transaction(['employees'],
63 // We are now in a set version transaction.
bug_90635.js 26 var transaction = openreq.transaction;
27 transaction.onabort = unexpectedAbortCallback;
50 var transaction = db.transaction(['store1', 'store2', 'store3'], 'readonly');
51 var store1 = transaction.objectStore('store1');
52 var store2 = transaction.objectStore('store2');
53 var store3 = transaction.objectStore('store3');
callback_accounting.js 20 var transaction = db1.transaction('store');
21 transaction.onabort = unexpectedAbortCallback;
23 debug("transaction created and looping");
28 transaction.objectStore('store').get(0).onsuccess = loop;
43 debug("ending transaction");
46 transaction.oncomplete = function() {
47 debug("transaction oncomplete");
transaction_get_test.js 8 debug("Accessing a committed transaction should throw");
9 var store = transaction.objectStore('storeName');
20 transaction.oncomplete = afterCommit;
31 debug("Using get in a transaction");
32 transaction = db.transaction('storeName');
33 //transaction.onabort = unexpectedErrorCallback;
34 store = transaction.objectStore('storeName');
transaction_run_forever.js 24 // We are now in a set version transaction.
36 debug('Creating new transaction.');
37 var transaction = db.transaction('store', 'readwrite');
38 transaction.oncomplete = unexpectedCompleteCallback;
39 transaction.onabort = unexpectedAbortCallback;
40 objectStore = transaction.objectStore('store');
57 debug("Looping infinitely within a transaction.");
  /external/chromium_org/content/browser/resources/indexed_db/
indexeddb_internals.css 51 .indexeddb-transaction-list {
56 .indexeddb-transaction-list th,
57 .indexeddb-transaction-list td {
63 td.indexeddb-transaction-scope {
68 .indexeddb-transaction-list th {
75 .indexeddb-transaction {
80 .indexeddb-transaction.created {
83 .indexeddb-transaction.started {
86 .indexeddb-transaction.running {
89 .indexeddb-transaction.blocked
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AbstractContactsProvider.java 45 /** Set true to enable detailed transaction logging. */
59 * Number of inserts performed in bulk to allow before yielding the transaction.
64 * The contacts transaction that is active in this thread.
74 * The database helper to serialize all transactions on. If non-null, any new transaction
76 * and initiate a transaction on that database. This should be used to ensure that operations
96 * The transaction listener used with {@link #mSerializeOnDbHelper}.
134 ContactsTransaction transaction = startTransaction(false); local
138 transaction.markDirty();
140 transaction.markSuccessful(false);
149 ContactsTransaction transaction = startTransaction(false) local
164 ContactsTransaction transaction = startTransaction(false); local
179 ContactsTransaction transaction = startTransaction(true); local
210 ContactsTransaction transaction = startTransaction(true); local
257 ContactsTransaction transaction = mTransactionHolder.get(); local
279 ContactsTransaction transaction = mTransactionHolder.get(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver_unittest.cc 26 HttpServerTransaction* transaction; member in struct:talk_base::__anon11853::HttpServerMonitor
30 : transaction(NULL), server_closed(false), connection_closed(false) {
40 ASSERT_FALSE(transaction);
41 transaction = t;
42 transaction->response.set_success();
43 transaction->response.setHeader(HH_CONNECTION, "Close");
46 ASSERT_EQ(transaction, t);
47 transaction = NULL;
65 EXPECT_FALSE(monitor.transaction);
81 ASSERT_TRUE(NULL != monitor.transaction);
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionService.java 18 package com.android.mms.transaction;
86 * the MMS transaction until the connection is established.</li>
94 * TransactionService when a Transaction is completed.
114 * when a Transaction is completed (TRANSACTION_COMPLETED_ACTION intents).
122 * when a Transaction is completed (TRANSACTION_COMPLETED_ACTION intents).
138 // How often to extend the use of the MMS APN while a transaction
144 private final ArrayList<Transaction> mProcessing = new ArrayList<Transaction>();
145 private final ArrayList<Transaction> mPending = new ArrayList<Transaction>();
421 Transaction transaction = (Transaction) observable; local
617 Transaction transaction = null; local
782 Transaction transaction = mPending.remove(0); local
    [all...]
  /external/chromium/net/ftp/
ftp_transaction.h 20 // Represents a single FTP transaction.
23 // Stops any pending IO and destroys the transaction object.
26 // Starts the FTP transaction (i.e., sends the FTP request).
28 // Returns OK if the transaction could be started synchronously, which means
32 // an IO error occurs. Any other return value indicates that the transaction
36 // request_info object alive until Destroy is called on the transaction.
38 // NOTE: The transaction is not responsible for deleting the callback object.
45 // Restarts the FTP transaction with authentication credentials.
50 // Once response info is available for the transaction, response data may be
58 // the error. Any other negative return value indicates that the transaction
    [all...]
  /external/chromium_org/net/ftp/
ftp_transaction.h 20 // Represents a single FTP transaction.
23 // Stops any pending IO and destroys the transaction object.
26 // Starts the FTP transaction (i.e., sends the FTP request).
28 // Returns OK if the transaction could be started synchronously, which means
32 // an IO error occurs. Any other return value indicates that the transaction
36 // request_info object alive until Destroy is called on the transaction.
38 // NOTE: The transaction is not responsible for deleting the callback object.
45 // Restarts the FTP transaction with authentication credentials.
49 // Once response info is available for the transaction, response data may be
57 // the error. Any other negative return value indicates that the transaction
    [all...]

Completed in 496 milliseconds

1 2 3 4 5 6 7 8 91011>>