Home
last modified time | relevance | path

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

/system/keymaster/include/keymaster/
Dandroid_keymaster_messages.h689 struct ConfigureResponse : public KeymasterResponse { struct
690 explicit ConfigureResponse(int32_t ver = MAX_MESSAGE_VERSION) : KeymasterResponse(ver) {} in KeymasterResponse() argument
692 size_t NonErrorSerializedSize() const override { return 0; } in NonErrorSerializedSize()
693 uint8_t* NonErrorSerialize(uint8_t* buf, const uint8_t*) const override { return buf; } in NonErrorSerialize()
694 bool NonErrorDeserialize(const uint8_t**, const uint8_t*) override { return true; } in NonErrorDeserialize()
/system/keymaster/tests/
Dandroid_keymaster_messages_test.cpp525 TEST(RoundTrip, ConfigureResponse) { in TEST() argument