Searched defs:EmptyKeymasterResponse (Results 1 – 2 of 2) sorted by relevance
203 struct EmptyKeymasterResponse : public KeymasterResponse { struct204 explicit EmptyKeymasterResponse(int32_t ver) : KeymasterResponse(ver) {} in EmptyKeymasterResponse() argument206 size_t NonErrorSerializedSize() const override { return 0; } in NonErrorSerializedSize()207 uint8_t* NonErrorSerialize(uint8_t* buf, const uint8_t*) const override { return buf; } in NonErrorSerialize()208 bool NonErrorDeserialize(const uint8_t**, const uint8_t*) override { return true; } in NonErrorDeserialize()
50 TEST(RoundTrip, EmptyKeymasterResponse) { in TEST() argument