Home
last modified time | relevance | path

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

/system/security/keystore/include/keystore/
DKeystoreResponse.h34 : response_code_(response_code), error_msg_(std::make_unique<String16>(error_msg)) {} in KeystoreResponse()
36 : response_code_(response_code), error_msg_() {} in KeystoreResponse()
39 : response_code_(rc.getErrorCode()), error_msg_() {} in KeystoreResponse()
41 : response_code_(other.response_code_), error_msg_() { in KeystoreResponse()
51 int response_code() const { return response_code_; } in response_code()
55 int response_code_;
/system/core/gatekeeperd/
DGateKeeperResponse.cpp38 response_code_ = ResponseCode(in->readInt32()); in readFromParcel()
39 if (response_code_ == ResponseCode::OK) { in readFromParcel()
52 } else if (response_code_ == ResponseCode::RETRY) { in readFromParcel()
62 out->writeInt32(int32_t(response_code_)); in writeToParcel()
63 if (response_code_ == ResponseCode::OK) { in writeToParcel()
75 } else if (response_code_ == ResponseCode::RETRY) { in writeToParcel()
/system/core/gatekeeperd/include/gatekeeper/
DGateKeeperResponse.h36 : response_code_(response_code), in response_code_() function
62 ResponseCode response_code() const { return response_code_; } in response_code()
64 void response_code(ResponseCode response_code) { response_code_ = response_code; } in response_code()
75 ResponseCode response_code_;
/system/security/keystore/
DKeystoreResponse.cpp30 auto rc = in->readInt32(&response_code_); in readFromParcel()
36 auto rc = out->writeInt32(response_code_); in writeToParcel()