Searched refs:transaction (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerActivity.java64 FragmentTransaction transaction = getFragmentManager().beginTransaction();
66 transaction.replace(R.id.content_frame, fragment);
67 transaction.addToBackStack("PreferenceFragment");
68 transaction.commit();
78 FragmentTransaction transaction = getFragmentManager().beginTransaction();
84 transaction.replace(R.id.content_frame, fragment);
85 transaction.addToBackStack("PreferenceFragment");
86 transaction.commit();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteSession.java41 * 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
950 recycleTransaction(Transaction transaction) argument
[all...]
/frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
H A DLeanbackSettingsFragment.java118 final FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
122 transaction
127 transaction
131 transaction.commit();
140 final FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
146 transaction.add(R.id.settings_preference_fragment_container, new DummyFragment());
148 transaction.remove(preferenceFragment);
150 transaction
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java337 ServerTransaction transaction = event.getServerTransaction();
338 if (transaction == null) {
342 return transaction;
353 ServerTransaction transaction = getServerTransaction(event);
362 transaction.sendResponse(response);
363 return transaction;
519 public static String getCallId(Transaction transaction) { argument
520 return ((transaction != null) ? getCallId(transaction.getRequest())
H A DSipSessionGroup.java423 ISipSessionListener listener, ServerTransaction transaction,
426 newSession.mServerTransaction = transaction;
741 "cannot initiate a new transaction to execute: "
867 if (SSI_DBG) log("not the current transaction; current="
871 if (SSI_DBG) log("transaction terminated: " + toString(current));
874 // no transaction; shouldn't be here; ignored
879 private String toString(Transaction transaction) { argument
880 if (transaction == null) return "null";
881 Request request = transaction.getRequest();
882 Dialog dialog = transaction
422 createNewSession(RequestEvent event, ISipSessionListener listener, ServerTransaction transaction, int newState) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java1227 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1228 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
1229 transaction.replace(com.android.internal.R.id.prefs, f);
1230 transaction.commitAllowingStateLoss();
1326 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1327 transaction.replace(com.android.internal.R.id.prefs, fragment);
1329 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
1330 transaction.addToBackStack(BACK_STACK_PREFS);
1332 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
1334 transaction
[all...]
/frameworks/base/core/java/android/app/
H A DDialogFragment.java85 * 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
243 * Display the dialog, adding the fragment using an existing transaction
244 * and then committing the transaction.
245 * @param transaction An existing transaction in which to add the fragment.
248 * @return Returns the identifier of the committed transaction, a
251 show(FragmentTransaction transaction, String tag) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java125 * is a convenience for explicitly creating a transaction, adding the
127 * <em>not</em> add the transaction to the back stack. When the fragment
128 * is dismissed, a new transaction will be executed to remove it from
143 * Display the dialog, adding the fragment using an existing transaction
144 * and then committing the transaction.
145 * @param transaction An existing transaction in which to add the fragment.
148 * @return Returns the identifier of the committed transaction, as per
151 public int show(FragmentTransaction transaction, String tag) { argument
154 transaction
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp220 Vector<ComposerState> transaction; local
234 transaction = mComposerStates;
251 sm->setTransactionState(transaction, displayTransaction, flags);
298 // Resizing a surface makes the transaction synchronous.
/frameworks/av/media/mtp/
H A DMtpServer.cpp171 MtpTransactionID transaction = mRequest.getTransactionID(); local
200 mData.setTransactionID(transaction);
214 mResponse.setTransactionID(transaction);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java1035 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1038 transaction.remove(oldFragment);
1041 transaction.add(R.id.embedded_content_container, newFragment, FRAGMENT_TAG);
1043 transaction.commitAllowingStateLoss();

Completed in 2082 milliseconds