HomeSort by relevance Sort by last modified time
    Searched defs:applyingBatch (Results 1 - 6 of 6) sorted by null

  /frameworks/ex/common/java/com/android/common/content/
SQLiteContentProvider.java 90 private boolean applyingBatch() {
97 boolean applyingBatch = applyingBatch();
98 if (!applyingBatch) {
150 boolean applyingBatch = applyingBatch();
151 if (!applyingBatch) {
178 boolean applyingBatch = applyingBatch();
179 if (!applyingBatch) {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/
AnnotatedCallLogContentProvider.java 81 private final ThreadLocal<Boolean> applyingBatch = new ThreadLocal<>();
85 return applyingBatch.get() != null && applyingBatch.get();
332 applyingBatch.set(true);
376 applyingBatch.set(false);
  /packages/apps/Dialer/java/com/android/dialer/phonelookup/database/
PhoneLookupHistoryContentProvider.java 75 private final ThreadLocal<Boolean> applyingBatch = new ThreadLocal<>();
79 return applyingBatch.get() != null && applyingBatch.get();
281 applyingBatch.set(true);
305 applyingBatch.set(false);
  /packages/apps/Gallery2/src/com/android/photos/data/
SQLiteContentProvider.java 111 private boolean applyingBatch() {
119 boolean applyingBatch = applyingBatch();
120 if (!applyingBatch) {
162 boolean applyingBatch = applyingBatch();
163 if (!applyingBatch) {
186 boolean applyingBatch = applyingBatch();
187 if (!applyingBatch) {
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
SQLiteContentProvider.java 86 protected boolean applyingBatch() {
93 boolean applyingBatch = applyingBatch();
95 if (!applyingBatch) {
148 boolean applyingBatch = applyingBatch();
150 if (!applyingBatch) {
181 boolean applyingBatch = applyingBatch();
183 if (!applyingBatch) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 242 protected boolean applyingBatch() {
425 applyingBatch() ? mCallingUid.get() : Binder.getCallingUid();
427 mStats.incrementInsertStats(callingUid, applyingBatch());
438 applyingBatch() ? mCallingUid.get() : Binder.getCallingUid();
440 mStats.incrementInsertStats(callingUid, applyingBatch());
451 applyingBatch() ? mCallingUid.get() : Binder.getCallingUid();
453 mStats.incrementInsertStats(callingUid, applyingBatch());
    [all...]

Completed in 194 milliseconds