Searched defs:DeviceLockedRequest (Results 1 – 2 of 2) sorted by relevance
1029 struct DeviceLockedRequest : public KeymasterMessage { struct1030 explicit DeviceLockedRequest(int32_t ver) : KeymasterMessage(ver) {} in DeviceLockedRequest() function1031 explicit DeviceLockedRequest(int32_t ver, bool passwordOnly_, VerificationToken&& token_) in DeviceLockedRequest() argument1034 size_t SerializedSize() const override { return 1; } in SerializedSize()1035 uint8_t* Serialize(uint8_t* buf, const uint8_t* end) const override { in Serialize()1039 bool Deserialize(const uint8_t** buf_ptr, const uint8_t* end) override { in Deserialize()1045 bool passwordOnly;1046 VerificationToken token;
150 pub struct DeviceLockedRequest { struct151 pub password_only: bool,152 pub timestamp_token: Option<TimeStampToken>,