Home
last modified time | relevance | path

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

/packages/apps/Email/provider_src/com/android/email/service/
DImapService.java476 int totalCountNeeded; in synchronizeMailboxGeneric() local
478 totalCountNeeded = remoteMessages.length + LOAD_MORE_MIN_INCREMENT; in synchronizeMailboxGeneric()
480 totalCountNeeded = remoteMessages.length; in synchronizeMailboxGeneric()
481 if (fullSync && totalCountNeeded < MINIMUM_MESSAGES_TO_SYNC) { in synchronizeMailboxGeneric()
482 totalCountNeeded = MINIMUM_MESSAGES_TO_SYNC; in synchronizeMailboxGeneric()
485 LogUtils.d(Logging.LOG_TAG, "need " + totalCountNeeded + " total"); in synchronizeMailboxGeneric()
487 final int additionalMessagesNeeded = totalCountNeeded - remoteMessages.length; in synchronizeMailboxGeneric()