Home
last modified time | relevance | path

Searched refs:request_reenroll (Results 1 – 10 of 10) sorted by relevance

/system/core/gatekeeperd/
DSoftGateKeeperDevice.cpp75 bool *request_reenroll) { in verify() argument
104 if (request_reenroll != NULL) { in verify()
105 *request_reenroll = response.request_reenroll; in verify()
DIGateKeeperService.cpp88 bool request_reenroll = false; in onTransact() local
91 &request_reenroll); in onTransact()
97 reply->writeInt32(request_reenroll ? 1 : 0); in onTransact()
124 bool request_reenroll = false; in onTransact() local
127 &out, &outSize, &request_reenroll); in onTransact()
132 reply->writeInt32(request_reenroll ? 1 : 0); in onTransact()
Dgatekeeperd.cpp254 … const uint8_t *provided_password, uint32_t provided_password_length, bool *request_reenroll) { in verify() argument
259 &auth_token, &auth_token_length, request_reenroll); in verify()
267 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll) { in verifyChallenge() argument
295 [&ret, request_reenroll, auth_token, auth_token_length] in verifyChallenge()
303 if (request_reenroll != nullptr) { in verifyChallenge()
304 *request_reenroll = (rsp.code == GatekeeperStatusCode::STATUS_REENROLL); in verifyChallenge()
322 request_reenroll); in verifyChallenge()
326 if (request_reenroll != nullptr) *request_reenroll = true; in verifyChallenge()
333 request_reenroll); in verifyChallenge()
DIGateKeeperService.h76 bool *request_reenroll) = 0;
89 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll) = 0;
DSoftGateKeeperDevice.h69 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll);
/system/core/trusty/gatekeeper/
Dtrusty_gatekeeper.cpp128 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll) { in Verify() argument
155 if (request_reenroll != NULL) { in Verify()
156 *request_reenroll = response.request_reenroll; in Verify()
221 bool *request_reenroll) { in verify() argument
230 auth_token, auth_token_length, request_reenroll); in verify()
Dtrusty_gatekeeper.h64 bool *request_reenroll);
115 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll);
/system/gatekeeper/
Dgatekeeper_messages.cpp202 this->request_reenroll = false; in VerifyResponse()
206 request_reenroll = false; in VerifyResponse()
222 return serialized_buffer_size(auth_token) + sizeof(request_reenroll); in nonErrorSerializedSize()
227 memcpy(buffer, &request_reenroll, sizeof(request_reenroll)); in nonErrorSerialize()
240 if (payload + sizeof(request_reenroll) > end) { in nonErrorDeserialize()
244 memcpy(&request_reenroll, payload, sizeof(request_reenroll)); in nonErrorDeserialize()
Dgatekeeper.cpp154 response->request_reenroll = true; in Verify()
/system/gatekeeper/include/gatekeeper/
Dgatekeeper_messages.h167 bool request_reenroll; member