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

/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/base/core/java/android/preference/
H A DPreferenceActivity.java1139 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1140 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
1141 transaction.replace(com.android.internal.R.id.prefs, f);
1142 transaction.commitAllowingStateLoss();
1229 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1230 transaction.replace(com.android.internal.R.id.prefs, fragment);
1232 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
1233 transaction.addToBackStack(BACK_STACK_PREFS);
1235 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
1237 transaction
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java339 ServerTransaction transaction = event.getServerTransaction();
340 if (transaction == null) {
344 return transaction;
355 ServerTransaction transaction = getServerTransaction(event);
364 transaction.sendResponse(response);
365 return transaction;
521 public static String getCallId(Transaction transaction) { argument
522 return ((transaction != null) ? getCallId(transaction.getRequest())
H A DSipSessionGroup.java424 ISipSessionListener listener, ServerTransaction transaction,
427 newSession.mServerTransaction = transaction;
716 "cannot initiate a new transaction to execute: "
841 Log.d(TAG, "not the current transaction; current="
845 Log.d(TAG, "transaction terminated: " + toString(current));
848 // no transaction; shouldn't be here; ignored
853 private String toString(Transaction transaction) { argument
854 if (transaction == null) return "null";
855 Request request = transaction.getRequest();
856 Dialog dialog = transaction
423 createNewSession(RequestEvent event, ISipSessionListener listener, ServerTransaction transaction, int newState) argument
[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
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, a
242 show(FragmentTransaction transaction, String tag) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java113 * 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) { argument
142 transaction
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DInstaller.java148 private synchronized String transaction(String cmd) { method in class:Installer
183 String res = transaction(cmd);
343 String s = transaction(builder.toString());
/frameworks/av/media/mtp/
H A DMtpServer.cpp169 MtpTransactionID transaction = mRequest.getTransactionID(); local
198 mData.setTransactionID(transaction);
212 mResponse.setTransactionID(transaction);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp190 Vector<ComposerState> transaction; local
196 transaction = mComposerStates;
213 sm->setTransactionState(transaction, displayTransaction, flags);
260 // Resizing a surface makes the transaction synchronous.

Completed in 687 milliseconds