HomeSort by relevance Sort by last modified time
    Searched refs:transaction (Results 101 - 125 of 211) sorted by null

1 2 3 45 6 7 8 9

  /external/webkit/Source/WebCore/storage/
IDBIndex.cpp 44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction)
47 , m_transaction(transaction)
IDBObjectStore.h 51 static PassRefPtr<IDBObjectStore> create(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore, IDBTransaction* transaction)
53 return adoptRef(new IDBObjectStore(idbObjectStore, transaction));
Database.h 62 void transaction(PassRefPtr<SQLTransactionCallback>, PassRefPtr<SQLTransactionErrorCallback>, PassRefPtr<VoidCallback> successCallback);
IDBRequest.h 56 PassRefPtr<IDBTransaction> transaction() const;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionStack.java 150 // Hiwater mark for client transaction table. These defaults can be
333 // Set to true if the client CANCEL transaction should be checked before sending
359 // is not tracked. If you want to track the original transaction you need to specify
452 // Create the transaction collections
564 * Retrieve a transaction from our table of transactions with pending retransmission alerts.
567 * @return -- the RetransmissionAlert enabled transaction corresponding to the given dialog
623 * Create a dialog and add this transaction to it.
625 * @param transaction -- tx to add to the dialog.
628 public SIPDialog createDialog(SIPTransaction transaction) {
632 if (transaction instanceof SIPClientTransaction)
983 SIPTransaction transaction = (SIPTransaction) li.next(); local
993 SIPTransaction transaction = (SIPTransaction) li.next(); local
1604 SIPTransaction transaction = (SIPTransaction) transactionErrorEvent.getSource(); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 196 tdb_off_t recovery_start; /* offset of transaction recovery region */
246 struct tdb_transaction *transaction; member in struct:tdb_context
582 get the transaction lock
591 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_lock: failed to get transaction lock\n"));
600 release the transaction lock
1171 if ((tdb->transaction == NULL) && (tdb->map_ptr != NULL)) {
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 1133 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
1223 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
1262 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
IDBDatabaseBackendProxy.h 52 virtual PassRefPtr<WebCore::IDBTransactionBackendInterface> transaction(WebCore::DOMStringList* storeNames, unsigned short mode, WebCore::ExceptionCode&);
  /packages/apps/Mms/src/com/android/mms/transaction/
NotificationTransaction.java 18 package com.android.mms.transaction;
20 import static com.android.mms.transaction.TransactionState.FAILED;
21 import static com.android.mms.transaction.TransactionState.INITIALIZED;
22 import static com.android.mms.transaction.TransactionState.SUCCESS;
66 * retrieval</b> response. The transaction service, upon succesful
67 * completion of this transaction, will trigger a retrieve transaction
70 public class NotificationTransaction extends Transaction implements Runnable {
97 // Attach the transaction to the instance of RetryScheduler.
123 * @see com.google.android.mms.pdu.Transaction#process(
    [all...]
ProgressCallbackEntity.java 18 package com.android.mms.transaction;
SimFullReceiver.java 18 package com.android.mms.transaction;
SmsReceiver.java 18 package com.android.mms.transaction;
TransactionBundle.java 18 package com.android.mms.transaction;
29 * Key for the transaction-type.
85 * @param uri The relevant URI for this transaction. Indicates the URL of the
96 * Constructor of a transaction bundle used for incoming bundle instances.
ReadRecTransaction.java 18 package com.android.mms.transaction;
45 public class ReadRecTransaction extends Transaction {
60 // Attach the transaction to the instance of RetryScheduler.
66 * @see com.android.mms.Transaction#process()
SmsRejectedReceiver.java 17 package com.android.mms.transaction;
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 27 import com.android.mms.transaction.SmsMessageSender;
  /external/bluetooth/bluez/test/
avtest.c 77 uint8_t transaction:4; member in struct:avdtp_header
94 uint8_t transaction:4; member in struct:avdtp_start_header
103 uint8_t transaction:4; member in struct:avdtp_continue_header
110 uint8_t transaction:4; member in struct:avctp_header
118 uint8_t transaction:4; member in struct:avdtp_header
135 uint8_t transaction:4; member in struct:avdtp_start_header
144 uint8_t transaction:4; member in struct:avdtp_continue_header
150 uint8_t transaction:4; member in struct:avctp_header
184 printf("TL %d PT %d CR %d IPID %d PID 0x%04x\n", hdr->transaction,
190 printf("TL %d PT %d MT %d SI %d\n", hdr->transaction,
    [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipHelper.java 48 import javax.sip.Transaction;
339 ServerTransaction transaction = event.getServerTransaction(); local
340 if (transaction == null) {
344 return transaction;
355 ServerTransaction transaction = getServerTransaction(event); local
364 transaction.sendResponse(response);
365 return transaction;
512 if (source instanceof Transaction) {
513 return getCallId(((Transaction) source));
521 public static String getCallId(Transaction transaction)
    [all...]
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 214 SQLiteTransaction transaction(database);
256 transaction.commit();
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 362 SQLTransaction transaction(dbhandle);
363 if (SQLITE_OK != transaction.BeginExclusive())
431 return (SQLITE_OK == transaction.Commit());
435 SQLTransaction transaction(load_dbhandle_);
436 if (SQLITE_OK != transaction.BeginExclusive()) {
501 transaction.Rollback();
516 transaction.Rollback();
525 // COMMIT TRANSACTION rolls back on failure.
526 if (SQLITE_OK == transaction.Commit())
529 transaction.Rollback()
    [all...]
  /frameworks/base/core/java/android/app/
DialogFragment.java 85 * transaction is popped, the current DialogFragment and its Dialog will be
87 * DialogFragment will take care of popping the transaction of the Dialog
216 * is a convenience for explicitly creating a transaction, adding the
218 * <em>not</em> add the transaction to the back stack. When the fragment
219 * is dismissed, a new transaction will be executed to remove it from
234 * Display the dialog, adding the fragment using an existing transaction
235 * and then committing the transaction.
236 * @param transaction An existing transaction in which to add the fragment.
239 * @return Returns the identifier of the committed transaction, as pe
    [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...]
  /external/e2fsprogs/e2fsck/
revoke.c 20 * transaction's revoked blocks to the journal
22 * + Recovery: during recovery we record the transaction ID of all
29 * single transaction:
33 * cancel the revoke before the transaction commits.
40 * in the current transaction, so any revoke for that block in the
41 * transaction must have happened after the block was journaled and so
78 journal replay, this involves recording the transaction ID of the
79 last transaction to revoke this block. */
263 * crash after this current transaction commits. Any subsequent
264 * metadata writes of the buffer in this transaction cancel th
    [all...]
  /external/bluetooth/bluez/tools/
avinfo.c 145 uint8_t transaction:4; member in struct:avdtp_header
197 uint8_t transaction:4; member in struct:avdtp_header
435 static int transaction = 0; local
439 header->transaction = transaction;
445 transaction = (transaction + 1) % 16;
  /external/dbus/bus/
activation.c 1049 add_restore_pending_to_transaction (BusTransaction *transaction,
1064 !bus_transaction_add_cancel_hook (transaction, restore_pending, d,
1071 _dbus_verbose ("Saved pending activation to be restored if the transaction fails\n");
1079 BusTransaction *transaction,
1125 if (!bus_transaction_send_from_driver (transaction, entry->connection, message))
1148 BusTransaction *transaction,
1213 BusTransaction *transaction; local
    [all...]

Completed in 621 milliseconds

1 2 3 45 6 7 8 9