Home
last modified time | relevance | path

Searched refs:ExportKeyResponse (Results 1 – 6 of 6) sorted by relevance

/system/keymaster/include/keymaster/
Dandroid_keymaster.h72 void ExportKey(const ExportKeyRequest& request, ExportKeyResponse* response);
Dandroid_keymaster_messages.h507 struct ExportKeyResponse : public KeymasterResponse { struct
508 explicit ExportKeyResponse(int32_t ver = MAX_MESSAGE_VERSION)
510 ~ExportKeyResponse() { delete[] key_data; } in ~ExportKeyResponse() argument
/system/keymaster/
Dandroid_keymaster_messages.cpp376 void ExportKeyResponse::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
382 size_t ExportKeyResponse::NonErrorSerializedSize() const { in NonErrorSerializedSize()
386 uint8_t* ExportKeyResponse::NonErrorSerialize(uint8_t* buf, const uint8_t* end) const { in NonErrorSerialize()
390 bool ExportKeyResponse::NonErrorDeserialize(const uint8_t** buf_ptr, const uint8_t* end) { in NonErrorDeserialize()
Dandroid_keymaster_messages_test.cpp432 TEST(RoundTrip, ExportKeyResponse) { in TEST() argument
434 ExportKeyResponse msg(ver); in TEST()
438 UniquePtr<ExportKeyResponse> deserialized(round_trip(ver, msg, 11)); in TEST()
688 GARBAGE_TEST(ExportKeyResponse);
Dandroid_keymaster.cpp358 void AndroidKeymaster::ExportKey(const ExportKeyRequest& request, ExportKeyResponse* response) { in ExportKey()
Dsoft_keymaster_device.cpp1014 ExportKeyResponse response; in export_key()