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

<<11121314151617181920>>

  /frameworks/base/services/java/com/android/server/wm/
WindowToken.java 61 // Set to true when this token is in a pending transaction where it
65 // Set to true when this token is in a pending transaction where it
69 // Set to true when this token is in a pending transaction where its
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipSession.java 24 * transaction not within a dialog.
36 /** When session is ready to initiate a call or transaction. */
115 * @param session the session object that carries out the transaction
123 * @param session the session object that carries out the transaction
134 * @param session the session object that carries out the transaction
160 * @param session the session object that carries out the transaction
180 * @param session the session object that carries out the transaction
191 * @param session the session object that carries out the transaction
202 * @param session the session object that carries out the transaction
210 * @param session the session object that carries out the transaction
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
DialogFragment.java 113 * is a convenience for explicitly creating a transaction, adding the
115 * <em>not</em> add the transaction to the back stack. When the fragment
116 * is dismissed, a new transaction will be executed to remove it from
131 * Display the dialog, adding the fragment using an existing transaction
132 * and then committing the transaction.
133 * @param transaction An existing transaction in which to add the fragment.
136 * @return Returns the identifier of the committed transaction, as per
139 public int show(FragmentTransaction transaction, String tag) {
142 transaction.add(this, tag)
    [all...]
  /libcore/luni/src/main/java/javax/sql/
DataSource.java 42 * <li><i>Distributed transaction {@code DataSource} ("XADataSource")</i>:
44 * transactions which typically require an intermediary transaction manager
46 * capabilities as well as distributed transaction capabilities.</li>
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
PolicyServiceProxy.java 115 throw new IllegalStateException("PolicyService transaction failed");
123 throw new IllegalStateException("PolicyService transaction failed");
134 throw new IllegalStateException("PolicyService transaction failed");
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteDatabaseTest.java 171 // Test a single-level transaction.
184 // Test a rolled-back transaction.
196 // it should throw IllegalStateException if we end a non-existent transaction.
203 // it should throw IllegalStateException if a set a non-existent transaction as clean.
212 // it should throw IllegalStateException if we mark a transaction as clean twice.
218 // it should throw IllegalStateException if we begin a transaction after marking the
230 // Test a two-level transaction.
247 // Test rolling back an inner transaction.
259 // Test rolling back an outer transaction.
669 // Make sure that things work outside an explicit transaction
    [all...]
  /external/chromium/net/http/
http_transaction_unittest.h 31 // mock transaction data
74 // returns the mock transaction for the given URL
77 // Add/Remove a mock transaction that can be accessed via FindMockTransaction.
104 // use this class to test completely consuming a transaction
150 // This transaction class inspects the available set of mock transactions to
216 // read the transaction completely
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database.cc 11 #include "sql/transaction.h"
83 sql::Transaction transaction(db_.get());
84 if (!transaction.Begin())
125 bool success = transaction.Commit();
283 sql::Transaction migration(db_.get());
  /external/chromium_org/third_party/sqlite/src/test/
tkt3718.test 66 # caused the statement transaction belonging to the INSERT statement to
88 # statement transaction belonging to the INSERT statement to be rolled back.
120 # transaction can be successfully committed or reverted without
121 # affecting the parent statement transaction.
153 # The next set of tests, tkt3718-3.*, test that a statement transaction
154 # that has a committed statement transaction nested inside of it can
attach2.test 99 # start a transaction on test.db even though test2.db is locked.
117 # when the write failed in the previous test, the transaction should
120 # Update for version 3: A transaction is no longer rolled back if a
132 } {1 {cannot commit - no transaction is active}}
334 # correctly when a multi-file transaction is committed or rolled back.
368 # Check that a database cannot be ATTACHed or DETACHed during a transaction.
378 } {1 {cannot ATTACH database within transaction}}
384 } {1 {cannot DETACH database within transaction}}
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 182 Transaction Trans(Pass.TA);
229 Transaction Trans(TA);
234 Transaction Trans(TA);
240 Transaction Trans(TA);
243 Transaction Trans(TA);
256 Transaction Trans(pass.TA);
TransformActions.cpp 25 /// Rewrites happen in "transactions"; if one rewrite in the transaction cannot
26 /// be done (e.g. it resides in a macro) all rewrites in the transaction are
186 "Cannot start a transaction in the middle of another one");
191 assert(IsInTransaction && "No transaction started");
198 // Verify that all actions are possible otherwise abort the whole transaction.
280 assert(IsInTransaction && "No transaction started");
286 assert(IsInTransaction && "Actions only allowed during a transaction");
296 assert(IsInTransaction && "Actions only allowed during a transaction");
306 assert(IsInTransaction && "Actions only allowed during a transaction");
314 assert(IsInTransaction && "Actions only allowed during a transaction");
    [all...]
  /cts/tests/tests/security/jni/
android_security_cts_LoadEffectLibraryTest.cpp 30 * Checks that no IAudioFlinger binder transaction manages to load an effect library
53 // test 100 IAudioFlinger binder transaction values and check that none corresponds
  /external/chromium/chrome/common/
sqlite_utils.h 54 // Note: the constructor does NOT Begin a transaction.
63 // onset of a transaction. This avoids SQLITE_BUSY errors, without
111 // The following virtual methods provide notification of true transaction
112 // boundaries as they are crossed by a top nested transaction.
125 // Returns the current top nested transaction associated with this site
131 // Sets or clears the top nested transaction associated with this site
144 // Really there is only one transaction, the top transaction.
146 // A nested transaction commits with respect to the top transaction
    [all...]
  /external/chromium_org/chrome/browser/history/
archived_database.h 61 // This assumes it is called from the init function inside a transaction. It
62 // may commit the transaction and start a new one if migration requires it.
  /external/chromium_org/chrome/browser/net/
dns_probe_runner.h 61 void OnTransactionComplete(net::DnsTransaction* transaction,
74 // The transaction started in |RunProbe| for the DNS probe. Reset once the
  /external/chromium_org/chrome/browser/sync/glue/
change_processor.h 47 // performed while holding a [Read/Write]Transaction lock or may interact
48 // with another thread, which might itself be waiting on the transaction lock,
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_transaction.cc 127 LevelDBTransaction::DataIterator::Create(LevelDBTransaction* transaction) {
128 return make_scoped_ptr(new DataIterator(transaction));
176 LevelDBTransaction::DataIterator::DataIterator(LevelDBTransaction* transaction)
177 : data_(&transaction->data_),
182 scoped_refptr<LevelDBTransaction> transaction) {
183 return make_scoped_ptr(new TransactionIterator(transaction));
187 scoped_refptr<LevelDBTransaction> transaction)
188 : transaction_(transaction),
  /external/chromium_org/sql/
sql.gyp 34 'transaction.cc',
35 'transaction.h',
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.h 47 static PassRefPtr<IDBIndex> create(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction)
49 return adoptRef(new IDBIndex(metadata, objectStore, transaction));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransaction.cpp 122 WTF_LOG(StorageAPI, "Scheduling %s for transaction %p\n", nameForSQLTransactionState(nextState), this);
134 // Transaction Step 11 - Rollback the transaction.
142 // Spec 4.3.2 4: Invoke the transaction callback with the new SQLTransaction object
150 // Spec 4.3.2 5: If the transaction callback was null or raised an exception, jump to the error callback
164 // error to have occurred in this transaction.
182 // Spec 4.3.2.10: Rollback the transaction.
188 // Spec 4.3.2.6.6 and 4.3.2.6.3: If the statement callback went wrong, jump to the transaction error callback
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree_perf.tcl 37 set btree_time [time {db transaction {
48 set rtree_time [time {db transaction {
  /frameworks/av/media/mtp/
MtpDevice.h 50 // current transaction ID
59 // to ensure only one MTP transaction at a time
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
SendConf.java 84 * Get X-Mms-Transaction-Id field value.
93 * Set X-Mms-Transaction-Id field value.
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIFailureInfo.java 35 -- transaction not permitted or supported
60 * Transaction is not supported

Completed in 1483 milliseconds

<<11121314151617181920>>