Home
last modified time | relevance | path

Searched defs:DeleteKeyResponse (Results 1 – 2 of 2) sorted by relevance

/system/keymaster/include/keymaster/
Dandroid_keymaster_messages.h544 struct DeleteKeyResponse : public KeymasterResponse { struct
545 explicit DeleteKeyResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) {} in KeymasterResponse() argument
547 size_t NonErrorSerializedSize() const override { return 0; } in NonErrorSerializedSize()
548 uint8_t* NonErrorSerialize(uint8_t* buf, const uint8_t*) const override { return buf; } in NonErrorSerialize()
549 bool NonErrorDeserialize(const uint8_t**, const uint8_t*) override { return true; } in NonErrorDeserialize()
/system/keymaster/
Dandroid_keymaster_messages_test.cpp455 TEST(RoundTrip, DeleteKeyResponse) { in TEST() argument