Home
last modified time | relevance | path

Searched refs:checkDirty (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/calllog/
DRefreshAnnotatedCallLogReceiver.java81 boolean checkDirty = intent.getBooleanExtra(IntentNames.EXTRA_CHECK_DIRTY, false); in onReceive()
82 refreshAnnotatedCallLog(checkDirty); in onReceive()
96 private void refreshAnnotatedCallLog(boolean checkDirty) { in refreshAnnotatedCallLog() argument
113 checkDirty in refreshAnnotatedCallLog()
121 logger.logImpression(getImpressionType(checkDirty, refreshResult)); in refreshAnnotatedCallLog()
134 futureTimer.applyTiming(future, new EventNameFromResultFunction(checkDirty)); in refreshAnnotatedCallLog()
153 private final boolean checkDirty; field in RefreshAnnotatedCallLogReceiver.EventNameFromResultFunction
155 private EventNameFromResultFunction(boolean checkDirty) { in EventNameFromResultFunction() argument
156 this.checkDirty = checkDirty; in EventNameFromResultFunction()
165 return checkDirty in apply()
[all …]
DRefreshAnnotatedCallLogWorker.java103 private ListenableFuture<RefreshResult> refresh(boolean checkDirty) { in refresh() argument
106 () -> checkDirtyAndRebuildIfNecessary(checkDirty), lightweightExecutorService); in refresh()
109 private ListenableFuture<RefreshResult> checkDirtyAndRebuildIfNecessary(boolean checkDirty) { in checkDirtyAndRebuildIfNecessary() argument
116 if (!checkDirty) { in checkDirtyAndRebuildIfNecessary()
/packages/apps/Dialer/java/com/android/dialer/calllog/notifier/
DRefreshAnnotatedCallLogNotifier.java74 public void notify(boolean checkDirty) { in notify() argument
75 LogUtil.i("RefreshAnnotatedCallLogNotifier.notify", "checkDirty = %s", checkDirty); in notify()
79 intent.putExtra(IntentNames.EXTRA_CHECK_DIRTY, checkDirty); in notify()