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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 67 public int mMaxScreenLockTime;
231 mMaxScreenLockTime = 0;
257 if (mMaxScreenLockTime != otherPolicy.mMaxScreenLockTime) return false;
296 code += (mMaxScreenLockTime << 3);
317 mMaxScreenLockTime = cursor.getInt(CONTENT_MAX_SCREEN_LOCK_TIME_COLUMN);
347 values.put(PolicyColumns.MAX_SCREEN_LOCK_TIME, mMaxScreenLockTime);
420 appendPolicy(sb, "idle", mMaxScreenLockTime);
481 dest.writeInt(mMaxScreenLockTime);
511 mMaxScreenLockTime = in.readInt()
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 116 policy.mMaxScreenLockTime = maxScreenLockTime;
175 assertEquals(16, p4out.mMaxScreenLockTime);
201 assertEquals(6, p5out.mMaxScreenLockTime);
488 if (ps.mMaxScreenLockTime != policy.mMaxScreenLockTime) return false;
520 private final int mMaxScreenLockTime;
538 mMaxScreenLockTime = (int) ((flags & LegacyPolicySet.SCREEN_LOCK_TIME_MASK)

Completed in 58 milliseconds