Home
last modified time | relevance | path

Searched refs:error_msg_ (Results 1 – 2 of 2) 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()
42 if (other.error_msg_) { in KeystoreResponse()
43 error_msg_ = std::make_unique<String16>(*other.error_msg_); in KeystoreResponse()
52 const String16* error_msg() const { return error_msg_.get(); } in error_msg()
56 std::unique_ptr<String16> error_msg_; member
/system/security/keystore/
DKeystoreResponse.cpp32 return in->readString16(&error_msg_); in readFromParcel()
38 return out->writeString16(error_msg_); in writeToParcel()