Searched refs:callerIsBatch (Results 1 - 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsTransaction.java157 * @param callerIsBatch Whether this is being performed in the context of a batch operation.
160 public void markSuccessful(boolean callerIsBatch) { argument
161 if (!mBatch || callerIsBatch) {
182 * @param callerIsBatch Whether this is being performed in the context of a batch operation.
185 public void finish(boolean callerIsBatch) { argument
187 Log.i(AbstractContactsProvider.TAG, "ContactsTransaction.finish callerIsBatch=" +
188 callerIsBatch, new RuntimeException("ContactsTransaction.finish"));
190 if (!mBatch || callerIsBatch) {
H A DAbstractContactsProvider.java250 * @param callerIsBatch Whether the caller is operating in batch mode.
252 private ContactsTransaction startTransaction(boolean callerIsBatch) { argument
255 " callerIsBatch=" + callerIsBatch, new RuntimeException("startTransaction"));
259 transaction = new ContactsTransaction(callerIsBatch);
272 * @param callerIsBatch Whether the caller is operating in batch mode.
274 private void endTransaction(boolean callerIsBatch) { argument
277 " callerIsBatch=" + callerIsBatch, new RuntimeException("endTransaction"));
280 if (transaction != null && (!transaction.isBatch() || callerIsBatch)) {
[all...]

Completed in 45 milliseconds