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 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...]

Completed in 64 milliseconds