HomeSort by relevance Sort by last modified time
    Searched defs:mPingDuration (Results 1 - 2 of 2) 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/emailcommon/src/com/android/emailcommon/provider/
Account.java 141 public long mPingDuration;
281 mPingDuration = cursor.getLong(CONTENT_PING_DURATION_COLUMN);
395 return mPingDuration;
402 mPingDuration = value;
751 values.put(AccountColumns.PING_DURATION, mPingDuration);
781 json.put(AccountColumns.PING_DURATION, mPingDuration);
819 a.mPingDuration = json.optInt(AccountColumns.PING_DURATION, 0);
    [all...]

Completed in 407 milliseconds