HomeSort by relevance Sort by last modified time
    Searched full:transaction (Results 1 - 25 of 1512) 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.
DialogFilter.java 106 * @param transaction
109 SIPServerTransaction transaction) {
120 sipStack.addTransactionPendingAck(transaction);
122 transaction.sendResponse(sipResponse);
123 transaction.releaseSem();
126 transaction.releaseSem();
127 sipStack.removeTransaction(transaction);
135 * @param transaction
139 private void sendBadRequestResponse(SIPRequest sipRequest, SIPServerTransaction transaction,
150 sipStack.addTransactionPendingAck(transaction);
288 SIPServerTransaction transaction = (SIPServerTransaction) this.transactionChannel; local
1154 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
1309 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction_coordinator.cc 22 IndexedDBTransaction* transaction) {
23 DCHECK(transactions_.find(transaction) == transactions_.end());
24 transactions_[transaction] = transaction;
28 IndexedDBTransaction* transaction) {
29 DCHECK(transactions_.find(transaction) != transactions_.end());
31 queued_transactions_.insert(transaction);
36 IndexedDBTransaction* transaction) {
37 DCHECK(transactions_.find(transaction) != transactions_.end());
39 if (queued_transactions_.has(transaction)) {
98 IndexedDBTransaction* transaction = *it; local
    [all...]
indexed_db_fake_backing_store.cc 31 Transaction*,
36 bool IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
45 bool IndexedDBFakeBackingStore::CreateObjectStore(Transaction*,
54 bool IndexedDBFakeBackingStore::ClearObjectStore(Transaction*,
59 bool IndexedDBFakeBackingStore::DeleteRecord(Transaction*,
66 Transaction*,
73 Transaction*,
81 Transaction*,
90 bool IndexedDBFakeBackingStore::CreateIndex(Transaction*,
101 bool IndexedDBFakeBackingStore::DeleteIndex(Transaction*,
    [all...]
indexed_db_fake_backing_store.h 28 virtual bool UpdateIDBDatabaseMetaData(Transaction*,
31 virtual bool UpdateIDBDatabaseIntVersion(Transaction*,
36 virtual bool CreateObjectStore(Transaction*,
43 virtual bool ClearObjectStore(Transaction*,
46 virtual bool DeleteRecord(Transaction*,
50 virtual bool GetKeyGeneratorCurrentNumber(Transaction*,
54 virtual bool MaybeUpdateKeyGeneratorCurrentNumber(Transaction*,
60 virtual bool KeyExistsInObjectStore(Transaction*,
67 virtual bool CreateIndex(Transaction*,
75 virtual bool DeleteIndex(Transaction*,
    [all...]
indexed_db_backing_store.h 45 class CONTENT_EXPORT Transaction;
77 IndexedDBBackingStore::Transaction* transaction,
81 IndexedDBBackingStore::Transaction* transaction,
90 IndexedDBBackingStore::Transaction* transaction,
97 IndexedDBBackingStore::Transaction* transaction,
122 virtual bool GetRecord(IndexedDBBackingStore::Transaction* 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.");
  /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::__anon13780::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...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteTransactionListener.java 20 * A listener for transaction events.
24 * Called immediately after the transaction begins.
29 * Called immediately before commiting the transaction.
34 * Called if the transaction is about to be rolled back.

Completed in 1842 milliseconds

1 2 3 4 5 6 7 8 91011>>