Home
last modified time | relevance | path

Searched refs:response_code (Results 1 – 4 of 4) sorted by relevance

/system/security/keystore/include/keystore/
DKeystoreResponse.h33 explicit KeystoreResponse(const int response_code, const String16& error_msg) in KeystoreResponse()
34 : response_code_(response_code), error_msg_(error_msg) {} in KeystoreResponse()
35 explicit KeystoreResponse(const int response_code) in KeystoreResponse()
36 : response_code_(response_code), error_msg_() {} in KeystoreResponse()
46 int response_code() const { return response_code_; } in response_code() function
/system/core/gatekeeperd/include/gatekeeper/
DGateKeeperResponse.h34 GateKeeperResponse(ResponseCode response_code, int32_t timeout = 0,
36 : response_code_(response_code), in response_code_() argument
62 ResponseCode response_code() const { return response_code_; } in response_code() function
64 void response_code(ResponseCode response_code) { response_code_ = response_code; } in response_code() function
/system/core/trusty/storage/proxy/
Drpmb.c208 uint8_t response_code = 0; in check_scsi_sense() local
219 response_code = 0x7f & sense_buf[0]; in check_scsi_sense()
221 if (response_code < 0x70 || response_code > 0x73) { in check_scsi_sense()
222 ALOGE("Invalid SCSI sense response code: %hhu\n", response_code); in check_scsi_sense()
226 if (response_code >= 0x72) { in check_scsi_sense()
/system/core/gatekeeperd/
Dgatekeeperd.cpp219 if (gkResponse->response_code() == GKResponseCode::OK && !gkResponse->should_reenroll()) { in enroll()
235 if (!status.isOk() || verifyResponse.response_code() != GKResponseCode::OK) { in enroll()
300 if (gkResponse->response_code() == GKResponseCode::OK) { in verifyChallenge()