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

<<11121314151617181920>>

  /external/chromium_org/third_party/sqlite/src/test/
crash5.test 52 # Begin a transaction and evaluate a "CREATE INDEX" statement
59 # to later in the transaction, it may be written out to the database
67 # If the transaction is still active (it may not be if the malloc()
85 # the transaction was not rolled back, then the sqlite cache now
lock7.test 12 # Check that reading the database schema from within an active transaction
malloc3.test 53 # * The current transaction may be rolled back. In this case a hot-journal
74 # transaction rollback is required, all other vdbe's are aborted.
95 # READ_UNCOMMITTED query, we have to make sure the transaction or statement
126 # below) figures out if a transaction has been automatically rolled back.
130 # If a transaction has been automatically rolled back, then the driver
140 # * If a PREP block starts a transaction, it must finish it.
141 # * A PREP block may not close a transaction it did not start.
161 # back any active transaction if malloc() fails. It must rollback the statement
162 # transaction only.
166 # indicating if the statement may cause transaction rollback when malloc(
    [all...]
  /external/e2fsprogs/lib/ext2fs/
jfs_dat.h 43 #define JFS_FLAG_DELETED 4 /* block deleted by this transaction */
  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 11 FILES="error.c lock.c io.c transaction.c freelist.c \
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 25 * @param tid -- the transaction id
  /external/nist-sip/java/gov/nist/javax/sip/address/
RouterExt.java 37 * Record that a transaction failure occured for the given hop.
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionEventListener.java 40 * Invoked when an error has ocurred with a transaction.
  /external/nist-sip/java/javax/sip/
Dialog.java 21 Transaction getFirstTransaction();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentManagerTest.java 170 FragmentTransaction transaction = manager.beginTransaction(); local
173 transaction.add(new Fragment(), "tag");
174 transaction.commit();
176 assertSame(transaction, manager.getCommittedTransactions().get(0));
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCallback.java 66 * <p>If this callback is invoked while a reliable write transaction is
70 * the application must abort the reliable write transaction.
120 * Callback invoked when a reliable write transaction has been completed.
124 * transaction was executed successfully
  /libcore/luni/src/main/java/java/sql/
Savepoint.java 21 * A savepoint is an instant during the current transaction that can be utilized
  /packages/apps/Browser/src/com/android/browser/provider/
SQLiteContentProvider.java 67 * The equivalent of the {@link #insert} method, but invoked within a transaction.
73 * The equivalent of the {@link #update} method, but invoked within a transaction.
79 * The equivalent of the {@link #delete} method, but invoked within a transaction.
85 * Call this to add a URI to the list of URIs to be notified when the transaction
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupIncoming.java 172 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
173 transaction.add(checkerFragment, AccountCheckSettingsFragment.TAG);
174 transaction.addToBackStack("back");
175 transaction.commit();
  /packages/apps/Gallery2/src/com/android/photos/data/
SQLiteContentProvider.java 74 * transaction.
81 * transaction.
88 * transaction.
95 * transaction is committed.
  /packages/apps/Mms/src/com/android/mms/
MmsApp.java 37 import com.android.mms.transaction.MessagingNotification;
38 import com.android.mms.transaction.MmsSystemEventReceiver;
39 import com.android.mms.transaction.SmsReceiver;
40 import com.android.mms.transaction.SmsReceiverService;
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageSender.java 18 package com.android.mms.transaction;
PrivilegedSmsReceiver.java 17 package com.android.mms.transaction;
  /packages/apps/Mms/tests/src/com/android/mms/util/
SmsReceiverServiceTests.java 21 import com.android.mms.transaction.SmsReceiverService;
  /external/bluetooth/bluedroid/btif/src/
btif_rc.c 130 rc_transaction_t transaction[MAX_TRANSACTIONS_PER_SESSION]; member in struct:__anon688
623 rc_transaction_t *transaction=NULL; local
624 transaction=get_transaction_by_lbl(pmeta_msg->label);
625 if(NULL!=transaction)
1564 rc_transaction_t *transaction = NULL; local
1628 rc_transaction_t *transaction = get_transaction_by_lbl(lbl); local
    [all...]
  /external/chromium_org/chrome/browser/history/
history_database.h 50 // A simple class for scoping a history database transaction. This does not
97 // Transactions on the history database. Use the Transaction object above
99 // and only commit when the outermost transaction is committed. This means
100 // that it is impossible to rollback a specific transaction. We could roll
101 // back the outermost transaction if any inner one is rolled back, but it
185 // This assumes it is called from the init function inside a transaction. It
186 // may commit the transaction and start a new one if migration requires it.
  /frameworks/base/core/java/android/webkit/
CacheManager.java 258 * Starts a cache transaction. Returns true if this is the only running
259 * transaction. Otherwise, this transaction is nested inside currently
262 * @return true if this is the only running transaction
271 * Ends the innermost cache transaction and returns whether this was the
272 * only running transaction.
274 * @return true if this was the only running transaction
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.cpp 45 PassRefPtr<IDBRequest> IDBRequest::create(ExecutionContext* context, PassRefPtr<IDBAny> source, IDBTransaction* transaction)
47 RefPtr<IDBRequest> request(adoptRef(new IDBRequest(context, source, transaction)));
50 if (transaction)
51 transaction->registerRequest(request.get());
55 IDBRequest::IDBRequest(ExecutionContext* context, PassRefPtr<IDBAny> source, IDBTransaction* transaction)
58 , m_transaction(transaction)
137 onError(DOMError::create(AbortError, "The transaction was aborted, so the request cannot be fulfilled."));
418 // that do not have a transaction, then this will not work and we need
450 // Possibly abort the transaction. This must occur after unregistering (so this request
457 // If this was the last request in the transaction's list, it may commit here
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.h 60 // transaction. The format of this file is like the main file, with
89 // The overall transaction works like this:
93 // - When the transaction is finished:
262 // transaction.
266 // Cache the set of deleted chunks during a transaction, applied on
  /external/chromium/chrome/browser/webdata/
web_database.cc 10 #include "app/sql/transaction.h"
107 sql::Transaction transaction(&db_);
108 if (!transaction.Begin())
141 return transaction.Commit() ? sql::INIT_OK : sql::INIT_FAILURE;

Completed in 508 milliseconds

<<11121314151617181920>>