OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:auth_token_length
(Results
1 - 10
of
10
) sorted by null
/system/core/gatekeeperd/
SoftGateKeeperDevice.h
69
uint8_t **auth_token, uint32_t *
auth_token_length
, bool *request_reenroll);
SoftGateKeeperDevice.cpp
74
uint32_t provided_password_length, uint8_t **auth_token, uint32_t *
auth_token_length
,
99
if (auth_token != NULL &&
auth_token_length
!= NULL) {
101
*
auth_token_length
= response.auth_token.length;
gatekeeperd.cpp
191
uint32_t
auth_token_length
;
local
194
&auth_token, &
auth_token_length
, request_reenroll);
200
uint8_t **auth_token, uint32_t *
auth_token_length
, bool *request_reenroll) {
221
provided_password, provided_password_length, auth_token,
auth_token_length
,
228
provided_password, provided_password_length, auth_token,
auth_token_length
,
239
provided_password, provided_password_length, auth_token,
auth_token_length
,
243
if (ret == 0 && *auth_token != NULL && *
auth_token_length
> 0) {
249
status_t ret = service->addAuthToken(*auth_token, *
auth_token_length
);
IGateKeeperService.h
88
uint8_t **auth_token, uint32_t *
auth_token_length
, bool *request_reenroll) = 0;
/system/core/trusty/gatekeeper/
trusty_gatekeeper.h
63
uint32_t provided_password_length, uint8_t **auth_token, uint32_t *
auth_token_length
,
115
uint8_t **auth_token, uint32_t *
auth_token_length
, bool *request_reenroll);
trusty_gatekeeper.cpp
126
uint8_t **auth_token, uint32_t *
auth_token_length
, bool *request_reenroll) {
148
if (auth_token != NULL &&
auth_token_length
!= NULL) {
150
*
auth_token_length
= response.auth_token.length;
218
uint32_t provided_password_length, uint8_t **auth_token, uint32_t *
auth_token_length
,
228
auth_token,
auth_token_length
, request_reenroll);
/hardware/libhardware/include/hardware/
gatekeeper.h
128
* -
auth_token_length
: on success, the length in bytes of the authentication
129
* token assigned to *auth_token will be assigned to *
auth_token_length
144
uint8_t **auth_token, uint32_t *
auth_token_length
, bool *request_reenroll);
/system/core/fingerprintd/
FingerprintDaemonProxy.h
53
void notifyKeystore(const uint8_t *auth_token, const size_t
auth_token_length
);
FingerprintDaemonProxy.cpp
107
void FingerprintDaemonProxy::notifyKeystore(const uint8_t *auth_token, const size_t
auth_token_length
) {
108
if (auth_token != NULL &&
auth_token_length
> 0) {
114
status_t ret = service->addAuthToken(auth_token,
auth_token_length
);
/frameworks/base/services/core/jni/
com_android_server_fingerprint_FingerprintService.cpp
71
static void notifyKeystore(uint8_t *auth_token, size_t
auth_token_length
) {
72
if (auth_token != NULL &&
auth_token_length
> 0) {
78
status_t ret = service->addAuthToken(auth_token,
auth_token_length
);
Completed in 863 milliseconds