Searched refs:mLastCheckedTime (Results 1 – 1 of 1) sorted by relevance
51 private GregorianCalendar mLastCheckedTime; // Time we last checked our feeds. field in RssService79 mLastCheckedTime = new GregorianCalendar(); in onCreate()80 mLastCheckedTime.setTimeInMillis(pref.getLong(LAST_CHECKED_PREFERENCE, 0)); in onCreate()124 nextCheckTime = (GregorianCalendar) mLastCheckedTime.clone(); in queryIfPeriodicRefreshRequired()126 …mLogger.info("last checked time:" + mLastCheckedTime.toString() + " Next checked time: " + nextCh… in queryIfPeriodicRefreshRequired()128 if(mLastCheckedTime.before(nextCheckTime)) { in queryIfPeriodicRefreshRequired()132 …long timeTillNextUpdate = mLastCheckedTime.getTimeInMillis() - GregorianCalendar.getInstance().get… in queryIfPeriodicRefreshRequired()154 mLastCheckedTime.setTimeInMillis(System.currentTimeMillis()); in queryRssItems()