HomeSort by relevance Sort by last modified time
    Searched defs:transaction (Results 76 - 100 of 138) sorted by null

1 2 34 5 6

  /external/e2fsprogs/debugfs/
logdump.c 344 tid_t transaction; local
389 transaction = be32_to_cpu(jsb->s_sequence);
392 fprintf(out_file, "Journal starts at block %u, transaction %u\n",
393 blocknr, transaction);
418 if (sequence != transaction) {
421 sequence, transaction, blocknr);
436 transaction);
440 transaction++;
448 transaction);
467 tid_t transaction)
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteSession.java 41 * at most one read-write transaction is performed at a time. When WAL is not
51 * has its own session object and therefore its own transaction state independent
64 * There are two kinds of transaction: implicit transactions and explicit
67 * An implicit transaction is created whenever a database operation is requested
68 * and there is no explicit transaction currently in progress. An implicit transaction
72 * An explicit transaction is started by calling {@link #beginTransaction} and
73 * specifying the desired transaction mode. Once an explicit transaction has begun,
74 * all subsequent database operations will be performed as part of that transaction
345 Transaction transaction = obtainTransaction(transactionMode, transactionListener); local
936 Transaction transaction = mTransactionPool; local
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 210 Vector<ComposerState> transaction; local
224 transaction = mComposerStates;
241 sm->setTransactionState(transaction, displayTransaction, flags);
288 // Resizing a surface makes the transaction synchronous.
  /packages/apps/Mms/src/com/android/mms/transaction/
HttpUtils.java 18 package com.android.mms.transaction;
50 private static final String TAG = LogTag.TRANSACTION;
101 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
162 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
163 Log.d(LogTag.TRANSACTION,
310 if (Log.isLoggable(LogTag.TRANSACTION, Log.DEBUG)) {
NotificationPlayer.java 22 package com.android.mms.transaction;
RetryScheduler.java 18 package com.android.mms.transaction;
73 Transaction t = (Transaction) observable;
75 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
136 // Send Transaction case
159 // Notification Transaction case
174 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
270 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
295 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
SmsReceiverService.java 18 package com.android.mms.transaction;
79 "com.android.mms.transaction.MESSAGE_SENT";
85 "com.android.mms.transaction.SEND_MESSAGE";
87 "com.android.mms.transaction.SEND_INACTIVE_MESSAGE";
113 // if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE) || LogTag.DEBUG_SEND) {
169 // if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE) || LogTag.DEBUG_SEND) {
186 * Handle incoming transaction requests.
193 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
201 if (Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE)) {
271 Log.isLoggable(LogTag.TRANSACTION, Log.VERBOSE))
    [all...]
MessagingNotification.java 18 package com.android.mms.transaction;
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 1184 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
1277 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
1316 FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java 356 final FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
357 transaction.hide(mDialpadFragment);
358 transaction.commit();
810 final FragmentTransaction transaction = getFragmentManager().beginTransaction(); local
811 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
815 transaction.remove(mSmartDialSearchFragment);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java 343 final FragmentTransaction transaction = fragmentManager.beginTransaction(); local
379 transaction.add(R.id.tab_pager, mFavoritesFragment, FAVORITE_TAG);
380 transaction.add(R.id.tab_pager, mAllFragment, ALL_TAG);
381 transaction.add(R.id.tab_pager, mGroupsFragment, GROUPS_TAG);
393 transaction.hide(mFavoritesFragment);
394 transaction.hide(mAllFragment);
395 transaction.hide(mGroupsFragment);
423 transaction.hide(mContactDetailFragment);
425 transaction.hide(mGroupDetailFragment);
433 transaction.commitAllowingStateLoss()
    [all...]
  /external/chromium/net/disk_cache/
disk_format.h 75 CacheAddr transaction; // In-flight operation target. member in struct:disk_cache::LruData
  /frameworks/av/media/mtp/
MtpServer.cpp 169 MtpTransactionID transaction = mRequest.getTransactionID(); local
198 mData.setTransactionID(transaction);
212 mResponse.setTransactionID(transaction);
    [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/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...]
  /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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 297 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
298 transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
299 transaction.commitAllowingStateLoss();
314 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
315 transaction.remove(getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG));
316 transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
317 transaction.commit();
341 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
342 transaction.setCustomAnimations(R.anim.slide_in_right, R.anim.slide_out_left);
345 panel.show(transaction, InfoPanel.FRAGMENT_TAG)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 76 javax.sip.Transaction, gov.nist.javax.sip.TransactionExt {
112 * INVITE transaction timeout timer
138 protected String transactionId; // Transaction Id.
183 // Parent stack for this transaction
186 // Original request that is being handled by this transaction
189 // Underlying channel being used to send messages for this transaction
212 // Transaction branch ID
215 // Method of the Request used to create the transaction.
218 // Sequence number of request used to create the transaction
221 // Current transaction stat
285 SIPTransaction transaction = SIPTransaction.this; local
    [all...]
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/bluetooth/bluedroid/btif/src/
btif_rc.c 130 rc_transaction_t transaction[MAX_TRANSACTIONS_PER_SESSION]; member in struct:__anon3402
596 rc_transaction_t *transaction=NULL; local
597 transaction=get_transaction_by_lbl(pmeta_msg->label);
598 if(NULL!=transaction)
1537 rc_transaction_t *transaction = NULL; local
1601 rc_transaction_t *transaction = get_transaction_by_lbl(lbl); local
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.cc 39 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
53 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
75 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
91 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
104 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
120 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
136 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
152 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
168 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE;
184 virtual void Perform(IndexedDBTransaction* transaction) OVERRIDE
632 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
676 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
701 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
746 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
789 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
797 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
806 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
818 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1015 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1164 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1238 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1263 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1339 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1393 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1436 IndexedDBTransaction* transaction = GetTransaction(transaction_id); local
1634 scoped_refptr<IndexedDBTransaction> transaction = new IndexedDBTransaction( local
1815 scoped_refptr<IndexedDBTransaction> transaction = local
    [all...]
indexed_db_backing_store.cc 89 static void PutBool(LevelDBTransaction* transaction,
94 transaction->Put(key, &buffer);
112 static void PutInt(LevelDBTransaction* transaction,
118 transaction->Put(key, &buffer);
136 static void PutVarInt(LevelDBTransaction* transaction,
141 transaction->Put(key, &buffer);
160 static void PutString(LevelDBTransaction* transaction,
165 transaction->Put(key, &buffer);
168 static void PutIDBKeyPath(LevelDBTransaction* transaction,
173 transaction->Put(key, &buffer)
238 scoped_refptr<LevelDBTransaction> transaction = new LevelDBTransaction(db); local
772 scoped_refptr<LevelDBTransaction> transaction = new LevelDBTransaction(db); local
810 scoped_refptr<LevelDBTransaction> transaction = local
865 scoped_ptr<LevelDBWriteOnlyTransaction> transaction = local
    [all...]
  /external/chromium_org/net/http/
http_cache_unittest.cc 714 // Tests that disk failures after the transaction has started don't cause the
828 // Force this transaction to read from the cache.
829 MockTransaction transaction(kSimpleGET_Transaction);
830 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE;
834 RunTransactionTestAndGetTiming(cache.http_cache(), transaction, log.bound(),
867 // force this transaction to read from the cache
868 MockTransaction transaction(kSimpleGET_Transaction);
869 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE;
871 MockHttpRequest request(transaction);
898 // force this transaction to read from the cache if vali
5480 MockTransaction transaction = kSimpleGET_Transaction; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 510 int transaction = 0; local
607 wpa_printf(MSG_DEBUG, "SCARD: Could not begin transaction: "
611 transaction = 1;
684 wpa_printf(MSG_DEBUG, "SCARD: Could not end transaction: "
691 if (transaction)
    [all...]
  /external/chromium/net/http/
http_cache_unittest.cc 4749 MockTransaction transaction = kSimpleGET_Transaction; local
    [all...]

Completed in 1722 milliseconds

1 2 34 5 6