OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:currentpasswordhandle
(Results
1 - 6
of
6
) sorted by null
/system/core/gatekeeperd/
IGateKeeperService.cpp
37
const uint8_t *
currentPasswordHandle
=
39
if (!
currentPasswordHandle
) currentPasswordHandleSize = 0;
53
int ret = enroll(uid,
currentPasswordHandle
, currentPasswordHandleSize,
79
const uint8_t *
currentPasswordHandle
=
81
if (!
currentPasswordHandle
) currentPasswordHandleSize = 0;
89
int ret = verify(uid, (uint8_t *)
currentPasswordHandle
,
112
const uint8_t *
currentPasswordHandle
=
114
if (!
currentPasswordHandle
) currentPasswordHandleSize = 0;
125
int ret = verifyChallenge(uid, challenge, (uint8_t *)
currentPasswordHandle
,
/frameworks/base/core/java/android/service/gatekeeper/
IGateKeeperService.aidl
34
* @param
currentPasswordHandle
The previously enrolled handle, or null if none
36
* If provided, must verify against the
currentPasswordHandle
.
41
GateKeeperResponse enroll(int uid, in byte[]
currentPasswordHandle
, in byte[] currentPassword,
/hardware/interfaces/gatekeeper/1.0/default/
Gatekeeper.cpp
56
const hidl_vec<uint8_t>&
currentPasswordHandle
,
66
currentPasswordHandle
.data(),
currentPasswordHandle
.size(),
Gatekeeper.h
48
const hidl_vec<uint8_t>&
currentPasswordHandle
,
/hardware/interfaces/gatekeeper/1.0/
IGatekeeper.hal
26
* passed in
currentPasswordHandle
, and current password must be passed in
28
*
currentPasswordHandle
.
32
* @param
currentPasswordHandle
The currently enrolled password handle the user
53
vec<uint8_t>
currentPasswordHandle
,
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
FakeGateKeeperService.java
93
public GateKeeperResponse enroll(int uid, byte[]
currentPasswordHandle
, byte[] currentPassword,
95
if (
currentPasswordHandle
!= null) {
96
VerifyHandle handle = new VerifyHandle(
currentPasswordHandle
);
Completed in 156 milliseconds