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

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasPing.java 59 private long mPingDuration;
97 mPingDuration = account.mPingDuration;
98 if (mPingDuration == 0) {
99 mPingDuration = DEFAULT_PING_HEARTBEAT;
101 LogUtils.d(TAG, "initial ping duration " + mPingDuration + " account " + getAccountId());
118 mPingDuration = Math.max(MINIMUM_PING_HEARTBEAT,
119 mPingDuration - MAXIMUM_HEARTBEAT_INCREMENT);
121 " new duration " + mPingDuration + " account " + getAccountId());
126 mPingDuration = Math.min(MAXIMUM_PING_HEARTBEAT
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
AccountTest.java 58 assertEquals(77, a.mPingDuration);
93 before.mPingDuration = 77;
113 assertEquals(before.mPingDuration, after.mPingDuration);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 141 public long mPingDuration;
275 mPingDuration = cursor.getLong(CONTENT_PING_DURATION_COLUMN);
389 return mPingDuration;
396 mPingDuration = value;
745 values.put(AccountColumns.PING_DURATION, mPingDuration);
775 json.put(AccountColumns.PING_DURATION, mPingDuration);
813 a.mPingDuration = json.optInt(AccountColumns.PING_DURATION, 0);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 309 assertEquals(caller + " mPingDuration", expect.mPingDuration, actual.mPingDuration);

Completed in 198 milliseconds