Searched defs:transaction (Results 1 - 8 of 8) sorted by relevance

/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/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/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);
326 String s = transaction(builder.toString());
/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/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/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.cpp210 Vector<ComposerState> transaction; local
224 transaction = mComposerStates;
241 sm->setTransactionState(transaction, displayTransaction, flags);
288 // Resizing a surface makes the transaction synchronous.

Completed in 272 milliseconds