HomeSort by relevance Sort by last modified time
    Searched full:transaction (Results 201 - 225 of 1512) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2TransactionTest.java 69 // Make sure we only COMMIT on the contacts DB, but there was no transaction on the
79 // Even though we only touched the profile DB, we also start and finish a transaction
103 // Make sure we only COMMIT on the contacts DB, but there was no transaction on the
113 // Even though we only touched the profile DB, we also start and finish a transaction
134 // Make sure we only COMMIT on the contacts DB, but there was no transaction on the
143 // Even though we only touched the profile DB, we also start and finish a transaction
159 // Make sure we only COMMIT on the contacts DB, but there was no transaction on the
169 // Even though we only touched the profile DB, we also start and finish a transaction
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmlec.h 74 * lecid, transaction id
82 uint32_t tran_id; /* transaction id */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmlec.h 74 * lecid, transaction id
82 uint32_t tran_id; /* transaction id */
  /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/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)) {
RetrieveTransaction.java 18 package com.android.mms.transaction;
60 public class RetrieveTransaction extends Transaction implements Runnable {
94 // Attach the transaction to the instance of RetryScheduler.
122 * @see com.android.mms.transaction.Transaction#process()
146 // Mark this transaction as failed to prevent duplicate
166 // Since it's not critical, it won't fail the transaction.
185 // Don't mark the transaction as failed if we failed to send it.
270 // If the Transaction-ID isn't set in the M-Retrieve.conf, it means
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.cpp 49 PassRefPtr<IDBRequest> IDBRequest::create(ScriptExecutionContext* context, PassRefPtr<IDBAny> source, IDBTransaction* transaction)
51 RefPtr<IDBRequest> request(adoptRef(new IDBRequest(context, source, IDBDatabaseBackendInterface::NormalTask, transaction)));
54 if (transaction)
55 transaction->registerRequest(request.get());
59 PassRefPtr<IDBRequest> IDBRequest::create(ScriptExecutionContext* context, PassRefPtr<IDBAny> source, IDBDatabaseBackendInterface::TaskType taskType, IDBTransaction* transaction)
61 RefPtr<IDBRequest> request(adoptRef(new IDBRequest(context, source, taskType, transaction)));
64 if (transaction)
65 transaction->registerRequest(request.get());
69 IDBRequest::IDBRequest(ScriptExecutionContext* context, PassRefPtr<IDBAny> source, IDBDatabaseBackendInterface::TaskType taskType, IDBTransaction* transaction)
73 , m_transaction(transaction)
118 PassRefPtr<IDBTransaction> IDBRequest::transaction() const function in class:WebCore::IDBRequest
    [all...]
  /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
244 // Returns the last transaction created by
246 // created yet, or the last transaction has been destroyed, or
247 // ClearLastTransaction() has been called and a new transaction
253 // Makes last_transaction() return NULL until the next transaction
277 // 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"
614 sql::Transaction transaction(db_.get());
615 if (!transaction.Begin())
623 return transaction.Commit();
730 sql::Transaction transaction(db_.get());
731 if (!transaction.Begin())
739 return transaction.Commit();
797 sql::Transaction transaction(db_.get())
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_provider_backend.h 21 #include "sql/transaction.h"
157 // The scoped transaction for AndroidProviderBackend.
160 // thumbnail database and could be a nesting transaction, if so, rolling back
161 // of this transaction will cause the exsting and subsequent nesting
164 // Commit() is used to commit the transaction, otherwise the transaction will
165 // be rolled back when the object is out of scope. This transaction could
166 // failed even the commit() is called if it is in a transaction that has been
167 // rolled back or the subsequent transaction in the same outermost
168 // 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.
  /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"
192 <receiver android:name=".transaction.PushReceiver"
199 <receiver android:name=".transaction.MmsPushOutboxMessages"
205 <receiver android:name=".transaction.MmsSystemEventReceiver">
228 <receiver android:name=".transaction.PrivilegedSmsReceiver"
236 <receiver android:name=".transaction.SmsReceiver">
241 <action android:name="com.android.mms.transaction.MESSAGE_SENT" />
250 <receiver android:name=".transaction.MessageStatusReceiver">
252 <action android:name="com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED" /
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_transaction.cc 136 LevelDBTransaction::TreeIterator::Create(LevelDBTransaction* transaction) {
137 return make_scoped_ptr(new TreeIterator(transaction));
200 LevelDBTransaction::TreeIterator::TreeIterator(LevelDBTransaction* transaction)
201 : tree_(&transaction->tree_), transaction_(transaction) {}
205 scoped_refptr<LevelDBTransaction> transaction) {
206 return make_scoped_ptr(new TransactionIterator(transaction));
210 scoped_refptr<LevelDBTransaction> transaction)
211 : transaction_(transaction),

Completed in 783 milliseconds

1 2 3 4 5 6 7 891011>>