Searched defs:EmptyKeymasterResponse (Results 1 – 2 of 2) sorted by relevance
188 struct EmptyKeymasterResponse : public KeymasterResponse { struct189 explicit EmptyKeymasterResponse(int32_t ver) : KeymasterResponse(ver) {} in EmptyKeymasterResponse() function191 size_t NonErrorSerializedSize() const override { return 0; } in NonErrorSerializedSize()192 uint8_t* NonErrorSerialize(uint8_t* buf, const uint8_t*) const override { return buf; } in NonErrorSerialize()193 bool NonErrorDeserialize(const uint8_t**, const uint8_t*) override { return true; } in NonErrorDeserialize()
49 TEST(RoundTrip, EmptyKeymasterResponse) { in TEST() argument