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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DProfileProvider.java107 ContactsTransaction transaction = getCurrentTransaction();
109 transaction.startTransactionForDb(db, ContactsProvider2.PROFILE_DB_TAG, this);
142 protected boolean yield(ContactsTransaction transaction) { argument
143 return mDelegate.yield(transaction);
H A DAbstractContactsProvider.java60 /** Set true to enable detailed transaction logging. */
74 * Number of inserts performed in bulk to allow before yielding the transaction.
79 * The contacts transaction that is active in this thread.
89 * The database helper to serialize all transactions on. If non-null, any new transaction
91 * and initiate a transaction on that database. This should be used to ensure that operations
111 * The transaction listener used with {@link #mSerializeOnDbHelper}.
203 ContactsTransaction transaction = startTransaction(false);
207 transaction.markDirty();
209 transaction.markSuccessful(false);
223 ContactsTransaction transaction
409 yield(ContactsTransaction transaction) argument
[all...]
H A DContactsProvider2.java1427 * The thread-local holder of the active transaction. Shared between this and the profile
1450 // The active transaction context will switch depending on the operation being performed.
1451 // Both transaction contexts will be cleared out when a batch transaction is started, and
1452 // each will be processed separately when a batch transaction completes.
2138 * the database transaction monitor.
2372 protected boolean yield(ContactsTransaction transaction) { argument
2373 // If there's a profile transaction in progress, and we're yielding, we need to
2374 // end it. Unlike the Contacts DB yield (which re-starts a transaction at its
2376 // profile transaction, an
[all...]
/packages/apps/Dialer/java/com/android/incallui/
H A DInCallActivity.java508 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
509 hideInCallScreenFragment(transaction);
510 hideVideoCallScreenFragment(transaction);
511 transaction.commitAllowingStateLoss();
544 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
549 didChangeInCall = hideInCallScreenFragment(transaction);
550 didChangeVideo = hideVideoCallScreenFragment(transaction);
551 didChangeAnswer = showAnswerScreenFragment(transaction, shouldShowAnswerUi.call);
553 didChangeInCall = hideInCallScreenFragment(transaction);
554 didChangeVideo = showVideoCallScreenFragment(transaction, shouldShowVideoU
617 showAnswerScreenFragment(FragmentTransaction transaction, DialerCall call) argument
690 hideAnswerScreenFragment(FragmentTransaction transaction) argument
703 showInCallScreenFragment(FragmentTransaction transaction) argument
714 hideInCallScreenFragment(FragmentTransaction transaction) argument
726 showVideoCallScreenFragment(FragmentTransaction transaction, DialerCall call) argument
750 hideVideoCallScreenFragment(FragmentTransaction transaction) argument
[all...]

Completed in 457 milliseconds