Searched refs:callerIsBatch (Results 1 – 2 of 2) sorted by relevance
160 public void markSuccessful(boolean callerIsBatch) { in markSuccessful() argument161 if (!mBatch || callerIsBatch) { in markSuccessful()185 public void finish(boolean callerIsBatch) { in finish() argument188 callerIsBatch, new RuntimeException("ContactsTransaction.finish")); in finish()190 if (!mBatch || callerIsBatch) { in finish()
301 private ContactsTransaction startTransaction(boolean callerIsBatch) { in startTransaction() argument304 " callerIsBatch=" + callerIsBatch, new RuntimeException("startTransaction")); in startTransaction()308 transaction = new ContactsTransaction(callerIsBatch); in startTransaction()323 private void endTransaction(boolean callerIsBatch) { in endTransaction() argument326 " callerIsBatch=" + callerIsBatch, new RuntimeException("endTransaction")); in endTransaction()329 if (transaction != null && (!transaction.isBatch() || callerIsBatch)) { in endTransaction()335 transaction.finish(callerIsBatch); in endTransaction()