Searched refs:transaction (Results 1 - 10 of 10) 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/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.java1219 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1220 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
1221 transaction.replace(com.android.internal.R.id.prefs, f);
1222 transaction.commitAllowingStateLoss();
1318 FragmentTransaction transaction = getFragmentManager().beginTransaction();
1319 transaction.replace(com.android.internal.R.id.prefs, fragment);
1321 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
1322 transaction.addToBackStack(BACK_STACK_PREFS);
1324 transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
1326 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
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.java124 * is a convenience for explicitly creating a transaction, adding the
126 * <em>not</em> add the transaction to the back stack. When the fragment
127 * is dismissed, a new transaction will be executed to remove it from
142 * Display the dialog, adding the fragment using an existing transaction
143 * and then committing the transaction.
144 * @param transaction An existing transaction in which to add the fragment.
147 * @return Returns the identifier of the committed transaction, as per
150 public int show(FragmentTransaction transaction, String tag) { argument
153 transaction
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java305 FragmentTransaction transaction = getFragmentManager().beginTransaction();
309 transaction.remove(oldFragment);
316 transaction.add(newFragment, FRAGMENT_TAG_ADD_PRINTER_DIALOG);
317 transaction.commit();
H A DPrintActivity.java929 FragmentTransaction transaction = getFragmentManager().beginTransaction();
932 transaction.remove(oldFragment);
935 transaction.add(R.id.embedded_content_container, newFragment, FRAGMENT_TAG);
937 transaction.commit();
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp211 Vector<ComposerState> transaction; local
225 transaction = mComposerStates;
242 sm->setTransactionState(transaction, displayTransaction, flags);
289 // 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);

Completed in 2806 milliseconds