/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atmlec.h | 74 * lecid, transaction id 82 uint32_t tran_id; /* transaction id */
|
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/ |
SlidingFragments.java | 95 * two fragments in the transaction. 111 FragmentTransaction transaction = getFragmentManager().beginTransaction(); 112 transaction.setCustomAnimations(R.animator.slide_fragment_in, 0, 0, 114 transaction.add(R.id.move_to_back_container, mTextFragment); 115 transaction.addToBackStack(null); 116 transaction.commit();
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
database_string_table_unittest.cc | 10 #include "sql/transaction.h" 141 // Wrap the lookups in a transaction to improve performance. 142 sql::Transaction transaction(&db_); 144 transaction.Begin(); 150 transaction.Commit();
|
/external/chromium_org/chrome/browser/history/ |
shortcuts_database.cc | 15 #include "sql/transaction.h" 177 // Perform the upgrade in a transaction to ensure it doesn't happen 179 sql::Transaction transaction(&db_); 180 transaction.Begin(); 196 transaction.Commit();
|
/external/chromium_org/sql/ |
meta_table.cc | 12 #include "sql/transaction.h" 101 s.Clear(); // Clear potential automatic transaction for Raze(). 125 sql::Transaction transaction(db_); 126 if (!transaction.Begin()) 142 return transaction.Commit();
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
httpserver.h | 69 // the document can be set to NULL. Note that the transaction object is still 74 // An HTTP request has been made, and is available in the transaction object. 75 // Populate the transaction's response, and then return the object via the 76 // Respond method. Note that during this time, ownership of the transaction 80 void Respond(HttpServerTransaction* transaction); 105 void Respond(HttpServerTransaction* transaction);
|
/external/chromium_org/third_party/sqlite/src/test/ |
interrupt.test | 106 # Ticket #594. If an interrupt occurs in the middle of a transaction 107 # and that transaction is later rolled back, the internal schema tables do 110 # UPDATE: Interrupting a DML statement in the middle of a transaction now 111 # causes the transaction to roll back. Leaving the transaction open after 138 } {1 {cannot rollback - no transaction is active}}
|
savepoint2.test | 79 # transaction. In all cases open savepoint "one", which may or may 80 # not be a transaction savepoint, depending on whether or not a real 81 # transaction has been opened. 133 # database and COMMIT the open transaction, so that the next iteration 136 # The transaction being committed here may have been opened normally using 137 # "BEGIN", or may have been opened using a transaction savepoint created
|
notify2.test | 34 # transaction consists of 3 operations. Each operation is either a read 37 # error is returned the current transaction is rolled back immediately. 41 # that sqlite3_blocking_step() resulted in higher transaction throughput. 106 # Each transaction does 3 operations. Each operation is either a read 129 # Execute the SQL transaction. 143 # Hit an SQLITE_LOCKED error. Rollback the current transaction. 153 # No error occured. Check that any SELECT statements in the transaction
|
/external/nist-sip/java/gov/nist/javax/sip/ |
NistSipMessageFactoryImpl.java | 75 // If the transaction has already been created 76 // then set the transaction channel. 104 // Tr is null if a transaction is not mapped. 109 "Found Transaction " + tr + " for " + sipResponse); 114 // spurious response. This was moved up from the transaction 119 "Dropping response - null transaction state");
|
/frameworks/base/docs/html/training/basics/fragments/ |
communicating.jd | 154 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); 157 // and add the transaction to the back stack so the user can navigate back 158 transaction.replace(R.id.fragment_container, newFragment); 159 transaction.addToBackStack(null); 161 // Commit the transaction 162 transaction.commit();
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
TransactionSettings.java | 18 package com.android.mms.transaction; 32 * Container of transaction settings. Instances of this class are contained 33 * within Transaction instances to allow overriding of the default APN 62 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) { 76 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) { 140 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
|
/external/chromium_org/third_party/sqlite/src/src/ |
test_journal.c | 40 ** Starting a Transaction: 42 ** When a write-transaction is started, the contents of the database is 51 ** The start of a write-transaction is deemed to have occurred when a 61 ** write-transaction was initialized. The success of the comparison 68 ** write-transaction was initialized. This set comprises the page-numbers 79 ** transaction was started (i.e. the database file is growing), then 81 ** the start of the transaction. 83 ** c) That if the page being written did exist when the transaction 85 ** leaf page at the start of the transaction, or else must have 88 ** Closing a Transaction [all...] |
vacuum.c | 110 sqlite3SetString(pzErrMsg, db, "cannot VACUUM from within a transaction"); 135 ** (possibly synchronous) transaction opened on the main database before 161 ** locked (as there was more than one active statement when the transaction 202 /* Begin a transaction */ 267 ** transaction open on the vacuum database, but not on the main database. 268 ** Open a btree level transaction on the main database. This allows a 270 ** transaction is then committed, so the SQL level never knows it was 271 ** opened for writing. This way, the SQL transaction used to create the 323 /* Currently there is an SQL level transaction open on the vacuum 325 ** was committed at the btree level). So it safe to end the transaction [all...] |
/external/chromium_org/net/http/ |
http_transaction_unittest.h | 34 // mock transaction data 80 // returns the mock transaction for the given URL 83 // Add/Remove a mock transaction that can be accessed via FindMockTransaction. 110 // use this class to test completely consuming a transaction 158 // This transaction class inspects the available set of mock transactions to 252 // Returns the last transaction created by 254 // created yet, or the last transaction has been destroyed, or 255 // ClearLastTransaction() has been called and a new transaction 261 // Makes last_transaction() return NULL until the next transaction 285 // read the transaction completel [all...] |
/external/kernel-headers/original/linux/ |
dmaengine.h | 56 * enum dma_status - DMA transaction status 57 * @DMA_SUCCESS: transaction completed successfully 58 * @DMA_IN_PROGRESS: transaction not yet processed 59 * @DMA_ERROR: transaction failed 70 * @memcpy_count: transaction counter 174 * @device_memcpy_complete: poll the status of an IOAT DMA transaction 299 * dma_async_memcpy_complete - poll for transaction completion 301 * @cookie: transaction identifier to check status of 317 * @cookie: transaction identifier to test status of 318 * @last_complete: last know completed transaction [all...] |
/external/chromium_org/webkit/browser/appcache/ |
appcache_database.cc | 15 #include "sql/transaction.h" 619 sql::Transaction transaction(db_.get()); 620 if (!transaction.Begin()) 628 return transaction.Commit(); 735 sql::Transaction transaction(db_.get()); 736 if (!transaction.Begin()) 744 return transaction.Commit(); 802 sql::Transaction transaction(db_.get()) [all...] |
/external/chromium_org/chrome/browser/history/android/ |
android_provider_backend.h | 21 #include "sql/transaction.h" 159 // The scoped transaction for AndroidProviderBackend. 162 // thumbnail database and could be a nesting transaction, if so, rolling back 163 // of this transaction will cause the exsting and subsequent nesting 166 // Commit() is used to commit the transaction, otherwise the transaction will 167 // be rolled back when the object is out of scope. This transaction could 168 // failed even the commit() is called if it is in a transaction that has been 169 // rolled back or the subsequent transaction in the same outermost 170 // transaction would be rolled back latter [all...] |
/external/chromium/chrome/browser/history/ |
history_database.h | 42 // A simple class for scoping a history database transaction. This does not 79 // Transactions on the history database. Use the Transaction object above 81 // and only commit when the outermost transaction is committed. This means 82 // that it is impossible to rollback a specific transaction. We could roll 83 // back the outermost transaction if any inner one is rolled back, but it 159 // This assumes it is called from the init function inside a transaction. It 160 // may commit the transaction and start a new one if migration requires it.
|
/external/chromium_org/content/browser/dom_storage/ |
dom_storage_host.cc | 219 DOMStorageNamespace::TransactionRecord transaction; 220 transaction.transaction_type = transaction_type; 221 transaction.origin = origin; 222 transaction.page_url = page_url; 223 transaction.key = key; 224 transaction.value = value; 225 ns->AddTransaction(render_process_id_, transaction);
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_transaction.cc | 59 IndexedDBBackingStore::Transaction* backing_store_transaction) 170 // front-end is notified, as the transaction completion unblocks 203 // TransactionCoordinator has started this transaction. 252 // front-end is notified, as the transaction completion unblocks 268 "Internal error committing transaction.")); 319 // The transaction may have been aborted while processing tasks. 334 ASCIIToUTF16("Transaction timed out due to inactivity.")));
|
/frameworks/native/include/gui/ |
SurfaceComposerClient.h | 101 // All composer parameters must be changed within a transaction 102 // several surfaces can be updated in one transaction, all changes are 103 // committed at once when the transaction is closed. 106 //! Open a composer transaction on all active SurfaceComposerClients. 109 //! Close a composer transaction on all active SurfaceComposerClients. 112 //! Flag the currently open transaction as an animation transaction.
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
SipHelper.java | 48 import javax.sip.Transaction; 337 ServerTransaction transaction = event.getServerTransaction(); local 338 if (transaction == null) { 342 return transaction; 353 ServerTransaction transaction = getServerTransaction(event); local 362 transaction.sendResponse(response); 363 return transaction; 510 if (source instanceof Transaction) { 511 return getCallId(((Transaction) source)); 519 public static String getCallId(Transaction transaction) [all...] |
/packages/apps/Mms/ |
AndroidManifest.xml | 56 <service android:name=".transaction.TransactionService" 59 <service android:name=".transaction.SmsReceiverService" 194 <receiver android:name=".transaction.PushReceiver" 201 <receiver android:name=".transaction.MmsPushOutboxMessages" 207 <receiver android:name=".transaction.MmsSystemEventReceiver"> 230 <receiver android:name=".transaction.PrivilegedSmsReceiver" 238 <receiver android:name=".transaction.SmsReceiver"> 243 <action android:name="com.android.mms.transaction.MESSAGE_SENT" /> 252 <receiver android:name=".transaction.MessageStatusReceiver"> 254 <action android:name="com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED" / [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBTransaction.cpp | 47 RefPtr<IDBTransaction> transaction(adoptRef(new IDBTransaction(context, id, objectStoreNames, mode, db, openDBRequest, IDBDatabaseMetadata()))); 48 transaction->suspendIfNeeded(); 49 return transaction.release(); 54 RefPtr<IDBTransaction> transaction(adoptRef(new IDBTransaction(context, id, Vector<String>(), IndexedDB::TransactionVersionChange, db, openDBRequest, previousMetadata))); 55 transaction->suspendIfNeeded(); 56 return transaction.release(); 119 // transaction abort. 180 ASSERT_WITH_MESSAGE(m_state != Finished, "A finished transaction tried to setActive(%s)", active ? "true" : "false"); 372 ASSERT_WITH_MESSAGE(m_state != Finished, "A finished transaction tried to enqueue an event of type %s.", event->type().string().utf8().data());
|