HomeSort by relevance Sort by last modified time
    Searched refs:currentLastTimestampProcessed (Results 1 - 2 of 2) sorted by null

  /packages/apps/Dialer/java/com/android/dialer/phonelookup/spam/
SpamPhoneLookup.java 53 @Nullable private Long currentLastTimestampProcessed;
91 currentLastTimestampProcessed = null;
111 currentLastTimestampProcessed =
112 currentLastTimestampProcessed == null
114 : Math.max(timestampMillis.get(), currentLastTimestampProcessed);
118 // If currentLastTimestampProcessed is null, it means none of the numbers in
120 // We should set currentLastTimestampProcessed to the current timestamp to avoid
122 if (currentLastTimestampProcessed == null) {
123 currentLastTimestampProcessed = System.currentTimeMillis();
148 PREF_LAST_TIMESTAMP_PROCESSED, Assert.isNotNull(currentLastTimestampProcessed))
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/phonelookup/cp2/
Cp2DefaultDirectoryPhoneLookup.java 77 @Nullable private Long currentLastTimestampProcessed;
441 currentLastTimestampProcessed = null;
544 if (currentLastTimestampProcessed != null) {
547 .putLong(PREF_LAST_TIMESTAMP_PROCESSED, currentLastTimestampProcessed)
614 if (currentLastTimestampProcessed == null
615 || currentLastTimestampProcessed < lastUpdatedTimestamp) {
616 currentLastTimestampProcessed = lastUpdatedTimestamp;
    [all...]

Completed in 391 milliseconds