Home
last modified time | relevance | path

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

/system/keymaster/include/keymaster/
Dandroid_keymaster_messages.h559 struct DeleteKeyResponse : public KeymasterResponse { struct
560 explicit DeleteKeyResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) {} in KeymasterResponse() argument
562 size_t NonErrorSerializedSize() const override { return 0; } in NonErrorSerializedSize()
563 uint8_t* NonErrorSerialize(uint8_t* buf, const uint8_t*) const override { return buf; } in NonErrorSerialize()
564 bool NonErrorDeserialize(const uint8_t**, const uint8_t*) override { return true; } in NonErrorDeserialize()
/system/keymaster/tests/
Dandroid_keymaster_messages_test.cpp455 TEST(RoundTrip, DeleteKeyResponse) { in TEST() argument