Home
last modified time | relevance | path

Searched refs:mPasswordTokenHandle (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyData.java187 long mPasswordTokenHandle = 0; field in DevicePolicyData
373 if (policyData.mPasswordTokenHandle != 0) { in store()
375 out.attributeLong(null, ATTR_VALUE, policyData.mPasswordTokenHandle); in store()
580 policy.mPasswordTokenHandle = parser.getAttributeLong(null, ATTR_VALUE); in load()
704 pw.print("mPasswordTokenHandle="); pw.println(Long.toHexString(mPasswordTokenHandle)); in dump()
DDevicePolicyManagerService.java10147 if (policyData.mPasswordTokenHandle != 0) {
10148 mLockPatternUtils.removeEscrowToken(policyData.mPasswordTokenHandle, userId);
10149 policyData.mPasswordTokenHandle = 0;
19291 policy.mPasswordTokenHandle = addEscrowToken(
19292 token, policy.mPasswordTokenHandle, userId);
19294 return policy.mPasswordTokenHandle != 0;
19351 if (policy.mPasswordTokenHandle != 0) {
19352 result = resetEscrowToken(policy.mPasswordTokenHandle, userId);
19353 policy.mPasswordTokenHandle = 0;
19392 return isResetPasswordTokenActiveForUserLocked(policy.mPasswordTokenHandle, userId);
[all …]