OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPasswordHistory
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
LegacyPolicySet.java
76
policy.
mPasswordHistory
= (int) ((flags & PASSWORD_HISTORY_MASK) >> PASSWORD_HISTORY_SHIFT);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java
65
public int
mPasswordHistory
;
234
mPasswordHistory
= 0;
260
if (
mPasswordHistory
!= otherPolicy.
mPasswordHistory
) return false;
299
code += (
mPasswordHistory
<< 15);
314
mPasswordHistory
= cursor.getInt(CONTENT_PASSWORD_HISTORY_COLUMN);
344
values.put(PolicyColumns.PASSWORD_HISTORY,
mPasswordHistory
);
418
appendPolicy(sb, "hist",
mPasswordHistory
);
478
dest.writeInt(
mPasswordHistory
);
508
mPasswordHistory
= in.readInt()
[
all
...]
/packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java
119
policy.
mPasswordHistory
= passwordHistory;
177
assertEquals(5, p4out.
mPasswordHistory
);
203
assertEquals(5, p5out.
mPasswordHistory
);
485
if (ps.
mPasswordHistory
!= policy.
mPasswordHistory
) return false;
523
private final int
mPasswordHistory
;
543
mPasswordHistory
= (int) ((flags & LegacyPolicySet.PASSWORD_HISTORY_MASK)
/packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java
126
aggregate.
mPasswordHistory
= Integer.MIN_VALUE;
158
if (policy.
mPasswordHistory
> 0) {
159
aggregate.
mPasswordHistory
=
160
Math.max(policy.
mPasswordHistory
, aggregate.
mPasswordHistory
);
184
if (aggregate.
mPasswordHistory
== Integer.MIN_VALUE) aggregate.
mPasswordHistory
= 0;
366
if (policy.
mPasswordHistory
> 0) {
367
if (dpm.getPasswordHistoryLength(mAdminName) < policy.
mPasswordHistory
) {
431
dpm.setPasswordHistoryLength(mAdminName, aggregatePolicy.
mPasswordHistory
);
[
all
...]
/packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java
196
policy.
mPasswordHistory
= 3;
/packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java
598
if (policy.
mPasswordHistory
> 0) {
[
all
...]
Completed in 595 milliseconds