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

1 2 3 4 5 6

  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
MainActivity.java 76 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); local
79 // and add the transaction to the back stack so the user can navigate back
80 transaction.replace(R.id.fragment_container, newFragment);
81 transaction.addToBackStack(null);
83 // Commit the transaction
84 transaction.commit();
  /external/chromium_org/content/test/data/indexeddb/
transaction_not_blocked.js 20 debug('Creating new transaction.');
21 var transaction = db.transaction('store', 'readwrite');
22 transaction.onabort = unexpectedAbortCallback;
23 var objectStore = transaction.objectStore('store');
31 transaction.oncomplete = function() {
32 debug("transaction completed");
callback_accounting.js 20 var transaction = db1.transaction('store');
21 transaction.onabort = unexpectedAbortCallback;
23 debug("transaction created and looping");
28 transaction.objectStore('store').get(0).onsuccess = loop;
43 debug("ending transaction");
46 transaction.oncomplete = function() {
47 debug("transaction oncomplete");
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBPendingTransactionMonitor.cpp 44 void IDBPendingTransactionMonitor::addNewTransaction(PassRefPtr<IDBTransaction> transaction)
46 transactions()->append(transaction);
53 RefPtr<IDBTransaction> transaction = list->at(i); local
54 transaction->setActive(false);
  /external/nist-sip/java/gov/nist/javax/sip/
EventWrapper.java 37 protected SIPTransaction transaction; field in class:EventWrapper
39 EventWrapper(EventObject sipEvent, SIPTransaction transaction) {
41 this.transaction = transaction;
DialogFilter.java 106 * @param transaction
109 SIPServerTransaction transaction) {
120 sipStack.addTransactionPendingAck(transaction);
122 transaction.sendResponse(sipResponse);
123 transaction.releaseSem();
126 transaction.releaseSem();
127 sipStack.removeTransaction(transaction);
135 * @param transaction
139 private void sendBadRequestResponse(SIPRequest sipRequest, SIPServerTransaction transaction,
150 sipStack.addTransactionPendingAck(transaction);
288 SIPServerTransaction transaction = (SIPServerTransaction) this.transactionChannel; local
1154 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
1309 SIPClientTransaction transaction = (SIPClientTransaction) this.transactionChannel; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageSender.java 18 package com.android.mms.transaction;
Observer.java 18 package com.android.mms.transaction;
21 * An interface for observing the state of a Transaction.
PrivilegedSmsReceiver.java 17 package com.android.mms.transaction;
AbstractRetryScheme.java 18 package com.android.mms.transaction;
MessageStatusReceiver.java 18 package com.android.mms.transaction;
26 "com.android.mms.transaction.MessageStatusReceiver.MESSAGE_STATUS_RECEIVED";
DefaultRetryScheme.java 18 package com.android.mms.transaction;
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.
SimFullReceiver.java 18 package com.android.mms.transaction;
TransactionState.java 18 package com.android.mms.transaction;
24 * be known by the observers of transactions. To encapsulate Transaction-
29 * Result code indicates the Transaction has not started.
33 * Result code indicates the Transaction successfully complete.
37 * Result code indicates the Transaction failed.
53 * @return Current state of the Transaction.
60 * To set the state of transaction. This method is only invoked by
63 * @param state The current state of transaction.
73 * To represent the result uri of transaction such as uri of MM.
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceFragmentActivity.java 36 FragmentTransaction transaction = getFragmentManager().beginTransaction() local
38 transaction.commit();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SQLTransactionCustom.cpp 90 SQLTransaction* transaction = V8SQLTransaction::toNative(args.Holder()); local
113 transaction->executeSQL(statement, sqlValues, callback, errorCallback, es);
V8SQLTransactionSyncCustom.cpp 89 SQLTransactionSync* transaction = V8SQLTransactionSync::toNative(args.Holder()); local
92 v8::Handle<v8::Value> result = toV8Fast(transaction->executeSQL(statement, sqlValues, es), args, transaction);
  /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/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();
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionCoordinator.cpp 44 static String getDatabaseIdentifier(SQLTransactionBackend* transaction)
46 DatabaseBackend* database = transaction->database();
75 void SQLTransactionCoordinator::acquireLock(SQLTransactionBackend* transaction)
79 String dbIdentifier = getDatabaseIdentifier(transaction);
88 info.pendingTransactions.append(transaction);
92 void SQLTransactionCoordinator::releaseLock(SQLTransactionBackend* transaction)
97 String dbIdentifier = getDatabaseIdentifier(transaction);
103 if (transaction->isReadOnly()) {
104 ASSERT(info.activeReadTransactions.contains(transaction));
105 info.activeReadTransactions.remove(transaction);
141 RefPtr<SQLTransactionBackend> transaction = info.pendingTransactions.first(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver_unittest.cc 26 HttpServerTransaction* transaction; member in struct:talk_base::__anon13780::HttpServerMonitor
30 : transaction(NULL), server_closed(false), connection_closed(false) {
40 ASSERT_FALSE(transaction);
41 transaction = t;
42 transaction->response.set_success();
43 transaction->response.setHeader(HH_CONNECTION, "Close");
46 ASSERT_EQ(transaction, t);
47 transaction = NULL;
65 EXPECT_FALSE(monitor.transaction);
81 ASSERT_TRUE(NULL != monitor.transaction);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorPanel.java 124 FragmentTransaction transaction = null; local
130 transaction = getChildFragmentManager().beginTransaction();
136 transaction = getFragmentManager().beginTransaction();
141 transaction.setCustomAnimations(android.R.anim.fade_in, android.R.anim.fade_out);
146 transaction.replace(R.id.state_panel_container, statePanel, StatePanel.FRAGMENT_TAG);
153 transaction.remove(statePanel);
156 transaction.commit();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java 139 FragmentTransaction transaction = getChildFragmentManager().beginTransaction(); local
141 transaction.setCustomAnimations(R.anim.slide_in_right, R.anim.slide_out_right);
143 transaction.setCustomAnimations(R.anim.slide_in_left, R.anim.slide_out_left);
145 transaction.replace(R.id.category_panel_container, category, CategoryPanel.FRAGMENT_TAG);
146 transaction.commitAllowingStateLoss();
260 FragmentTransaction transaction = null; local
265 transaction = getChildFragmentManager().beginTransaction();
270 transaction = getFragmentManager().beginTransaction();
279 transaction.replace(R.id.state_panel_container, statePanel, StatePanel.FRAGMENT_TAG);
284 transaction.remove(statePanel)
    [all...]

Completed in 676 milliseconds

1 2 3 4 5 6