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

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasPing.java 63 private long mPingDuration;
102 mPingDuration = account.mPingDuration;
103 if (mPingDuration == 0) {
104 mPingDuration = DEFAULT_PING_HEARTBEAT;
106 LogUtils.d(TAG, "initial ping duration " + mPingDuration + " account " + mAccountId);
123 mPingDuration = Math.max(MINIMUM_PING_HEARTBEAT,
124 mPingDuration - MAXIMUM_HEARTBEAT_INCREMENT);
126 " new duration " + mPingDuration + " account " + mAccountId);
131 mPingDuration = Math.min(MAXIMUM_PING_HEARTBEAT
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 144 public long mPingDuration;
275 mPingDuration = cursor.getLong(CONTENT_PING_DURATION_COLUMN);
378 return mPingDuration;
385 mPingDuration = value;
823 values.put(AccountColumns.PING_DURATION, mPingDuration);
    [all...]

Completed in 119 milliseconds