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

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasPing.java 57 private long mPingDuration;
95 mPingDuration = account.mPingDuration;
96 if (mPingDuration == 0) {
97 mPingDuration = DEFAULT_PING_HEARTBEAT;
99 LogUtils.d(TAG, "initial ping duration " + mPingDuration + " account " + getAccountId());
116 mPingDuration = Math.max(MINIMUM_PING_HEARTBEAT,
117 mPingDuration - MAXIMUM_HEARTBEAT_INCREMENT);
119 " new duration " + mPingDuration + " account " + getAccountId());
124 mPingDuration = Math.min(MAXIMUM_PING_HEARTBEAT
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 144 public long mPingDuration;
277 mPingDuration = cursor.getLong(CONTENT_PING_DURATION_COLUMN);
380 return mPingDuration;
387 mPingDuration = value;
825 values.put(AccountColumns.PING_DURATION, mPingDuration);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 318 assertEquals(caller + " mPingDuration", expect.mPingDuration, actual.mPingDuration);

Completed in 41 milliseconds