/external/chromium_org/third_party/WebKit/ManualTests/inspector/ |
display-sql-null.html | 4 db.transaction(function(tx) {
|
/external/chromium_org/third_party/sqlite/src/test/ |
tt3_checkpoint.c | 26 ** another. Each read transaction lasts for 100 ms. 36 ** However, the overall transaction throughput will be lower for 44 /* Duration in ms of each read transaction */ 123 printf(" Transaction count: %d transactions\n", nInsert);
|
vtab4.test | 44 # in an implicit transaction. Each should result in a single call 79 # Ensure xBegin is not called more than once in a single transaction. 93 # Try a transaction with two virtual tables. 130 # Try an explicit ROLLBACK on a transaction with two open virtual tables.
|
tkt2920.test | 72 # The previous errors cancelled the transaction. 76 } {1 {cannot commit - no transaction is active}}
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupOutgoing.java | 92 final FragmentTransaction transaction = getFragmentManager().beginTransaction(); local 93 transaction.add(checkerFragment, AccountCheckSettingsFragment.TAG); 94 transaction.addToBackStack("back"); 95 transaction.commit();
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
AbstractRetryScheme.java | 18 package com.android.mms.transaction;
|
ReadRecTransaction.java | 18 package com.android.mms.transaction; 45 public class ReadRecTransaction extends Transaction implements Runnable{ 61 // Attach the transaction to the instance of RetryScheduler. 67 * @see com.android.mms.Transaction#process()
|
TransactionBundle.java | 18 package com.android.mms.transaction; 31 * Key for the transaction-type. 87 * @param uri The relevant URI for this transaction. Indicates the URL of the 98 * Constructor of a transaction bundle used for incoming bundle instances.
|
MmsPushOutboxMessages.java | 15 package com.android.mms.transaction; 37 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
|
Observable.java | 18 package com.android.mms.transaction; 25 * An interface to represent the state of an observable Transaction.
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/ |
HomeXLarge.java | 50 FragmentTransaction transaction = openFragmentTransaction(); local 51 transaction.add(R.id.contacts_list, mList); 52 transaction.add(R.id.contact_details, mDetails); 53 transaction.commit();
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ProfileProvider.java | 122 ContactsTransaction transaction = getCurrentTransaction(); local 124 transaction.startTransactionForDb(db, ContactsProvider2.PROFILE_DB_TAG, this); 157 protected boolean yield(ContactsTransaction transaction) { 158 return mDelegate.yield(transaction);
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_backing_store_unittest.cc | 53 IndexedDBBackingStore::Transaction transaction1(backing_store_); 63 IndexedDBBackingStore::Transaction transaction2(backing_store_); 88 IndexedDBBackingStore::Transaction transaction1(backing_store_); 120 IndexedDBBackingStore::Transaction transaction2(backing_store_); 164 IndexedDBBackingStore::Transaction transaction1(backing_store_); 264 IndexedDBBackingStore::Transaction transaction(backing_store_); 265 transaction.Begin(); 267 ok = backing_store_->CreateObjectStore(&transaction, 275 ok = backing_store_->CreateIndex(&transaction, [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBTransaction.cpp | 48 RefPtr<IDBTransaction> transaction(adoptRef(new IDBTransaction(context, id, objectStoreNames, mode, db, openDBRequest, IDBDatabaseMetadata()))); 49 transaction->suspendIfNeeded(); 50 return transaction.release(); 55 RefPtr<IDBTransaction> transaction(adoptRef(new IDBTransaction(context, id, Vector<String>(), IndexedDB::TransactionVersionChange, db, openDBRequest, previousMetadata))); 56 transaction->suspendIfNeeded(); 57 return transaction.release(); 133 // transaction abort. 194 ASSERT_WITH_MESSAGE(m_state != Finished, "A finished transaction tried to setActive(%s)", active ? "true" : "false"); 225 IDBTransaction::OpenCursorNotifier::OpenCursorNotifier(PassRefPtr<IDBTransaction> transaction, IDBCursor* cursor) 226 : m_transaction(transaction), [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPClientTransaction.java | 76 * Represents a client transaction. Implements the following state machines. (From RFC 3261) 124 * Figure 5: INVITE client transaction 168 * Figure 6: non-INVITE client transaction 185 // a SIP Client transaction may belong simultaneously to multiple 222 // If the transaction has terminated, 241 // Client transaction terminated. Kill connection if 268 // If this transaction has not 270 // Fire the transaction timer. 280 * Creates a new client transaction. 282 * @param newSIPStack Transaction stack this transaction belongs to [all...] |
/frameworks/base/docs/html/training/basics/fragments/ |
fragment-ui.jd | 60 <p>To perform a transaction such as add or 98 <p>You can perform multiple fragment transaction for the activity using the same {@link 158 <p class="note"><strong>Note:</strong> When you remove or replace a fragment and add the transaction 160 back to restore the fragment, it restarts. If you <em>do not</em> add the transaction to the back 172 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); 175 // and add the transaction to the back stack so the user can navigate back 176 transaction.replace(R.id.fragment_container, newFragment); 177 transaction.addToBackStack(null); 179 // Commit the transaction 180 transaction.commit() [all...] |
/external/chromium/chrome/browser/history/ |
archived_database.h | 51 // This assumes it is called from the init function inside a transaction. It 52 // may commit the transaction and start a new one if migration requires it.
|
/external/chromium_org/sync/engine/ |
build_commit_command.h | 30 // transaction as the GetCommitIdsCommand that fetched the set of items to be 63 // A pointer to a valid transaction not owned by this class.
|
/external/chromium_org/sync/internal_api/public/test/ |
test_user_share.h | 71 // Returns the directory's transaction observer. This transaction observer
|
/external/chromium_org/sync/syncable/ |
syncable_base_transaction.cc | 42 // transaction we would call the OnUnrecoverableError method. 65 // TODO(lipalani): Don't issue a good transaction if the directory has
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLTransactionBackendSync.cpp | 135 m_database->setLastErrorMessage("cannot begin transaction because the database is not open"); 142 // Set the maximum usage for this transaction if this transactions is not read-only. 158 m_database->setLastErrorMessage("unable to begin transaction", 186 m_database->setLastErrorMessage("failed to execute transaction callback"); 200 m_database->setLastErrorMessage("unable to commit transaction because the database is not open."); 211 // If the commit failed, the transaction will still be marked as "in progress" 214 m_database->setLastErrorMessage("unable to commit transaction", 226 // The commit was successful. If the transaction modified this database, notify the delegates.
|
/external/kernel-headers/original/asm-mips/dec/ |
ecc.h | 23 #define KN0X_EAR_CPU (1<<30) /* CPU/DMA transaction */ 24 #define KN0X_EAR_WRITE (1<<29) /* write/read transaction */
|
/external/kernel-headers/original/linux/usb/ |
f_mtp.h | 30 /* MTP transaction ID */ 47 /* MTP transaction ID for data header,
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowDialogFragment.java | 30 public int show(FragmentTransaction transaction, String tag) { 31 show(((TestFragmentTransaction)transaction).getManager(), tag);
|
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
WifiP2pServiceRequest.java | 55 * Service transaction ID. 92 * @param transId the transaction id 104 * Return transaction id. 106 * @return transaction id 114 * Set transaction id. 129 * | Length (2) | Type (1) | Transaction ID (1) | 226 * Not compare transaction id. 227 * Transaction id may be changed on each service discovery operation.
|