Home
last modified time | relevance | path

Searched refs:KeymasterResponse (Results 1 – 3 of 3) sorted by relevance

/system/keymaster/include/keymaster/
Dandroid_keymaster_messages.h106 struct KeymasterResponse : public KeymasterMessage { struct
107 explicit KeymasterResponse(int32_t ver) in KeymasterResponse() function
189 template <typename T> struct SupportedResponse : public KeymasterResponse {
191 : KeymasterResponse(ver), results(nullptr), results_length(0) {} in SupportedResponse()
272 struct GenerateKeyResponse : public KeymasterResponse {
273 explicit GenerateKeyResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) { in KeymasterResponse() function
309 struct GetKeyCharacteristicsResponse : public KeymasterResponse {
311 : KeymasterResponse(ver) {} in KeymasterResponse() function
341 struct BeginOperationResponse : public KeymasterResponse {
342 explicit BeginOperationResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) {} in KeymasterResponse() function
[all …]
/system/keymaster/
Dandroid_keymaster_messages.cpp53 size_t KeymasterResponse::SerializedSize() const { in SerializedSize()
60 uint8_t* KeymasterResponse::Serialize(uint8_t* buf, const uint8_t* end) const { in Serialize()
67 bool KeymasterResponse::Deserialize(const uint8_t** buf_ptr, const uint8_t* end) { in Deserialize()
Dandroid_keymaster_messages_test.cpp50 struct EmptyKeymasterResponse : public KeymasterResponse {
51 EmptyKeymasterResponse(int32_t ver) : KeymasterResponse(ver) {} in EmptyKeymasterResponse()