Home
last modified time | relevance | path

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

/system/keymaster/include/keymaster/
Dandroid_keymaster_messages.h118 struct KeymasterResponse : public KeymasterMessage { struct
119 explicit KeymasterResponse(int32_t ver) in KeymasterResponse() argument
201 template <typename T> struct SupportedResponse : public KeymasterResponse {
203 : KeymasterResponse(ver), results(nullptr), results_length(0) {} in SupportedResponse()
283 struct GenerateKeyResponse : public KeymasterResponse {
284 explicit GenerateKeyResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) { in KeymasterResponse() function
320 struct GetKeyCharacteristicsResponse : public KeymasterResponse {
322 : KeymasterResponse(ver) {} in KeymasterResponse() function
352 struct BeginOperationResponse : public KeymasterResponse {
353 explicit BeginOperationResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) {} in KeymasterResponse() function
[all …]
/system/core/trusty/keymaster/include/trusty_keymaster/ipc/
Dtrusty_keymaster_ipc.h36 keymaster::KeymasterResponse* rsp);
/system/core/trusty/keymaster/ipc/
Dtrusty_keymaster_ipc.cpp146 keymaster::KeymasterResponse* rsp) { in trusty_keymaster_send()
/system/core/trusty/keymaster/include/trusty_keymaster/legacy/
Dtrusty_keymaster_device.h88 KeymasterResponse* response);
/system/core/trusty/keymaster/
DTrustyKeymaster.cpp56 KeymasterResponse* rsp) { in ForwardCommand()
/system/keymaster/android_keymaster/
Dandroid_keymaster_messages.cpp71 size_t KeymasterResponse::SerializedSize() const { in SerializedSize()
78 uint8_t* KeymasterResponse::Serialize(uint8_t* buf, const uint8_t* end) const { in Serialize()
85 bool KeymasterResponse::Deserialize(const uint8_t** buf_ptr, const uint8_t* end) { in Deserialize()
/system/keymaster/tests/
Dandroid_keymaster_messages_test.cpp50 struct EmptyKeymasterResponse : public KeymasterResponse {
51 explicit EmptyKeymasterResponse(int32_t ver) : KeymasterResponse(ver) {} in EmptyKeymasterResponse()