Home
last modified time | relevance | path

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

/system/keymaster/include/keymaster/
Dandroid_keymaster_messages.h1029 struct DeviceLockedRequest : public KeymasterMessage { struct
1030 explicit DeviceLockedRequest(int32_t ver) : KeymasterMessage(ver) {} in DeviceLockedRequest() function
1031 explicit DeviceLockedRequest(int32_t ver, bool passwordOnly_, VerificationToken&& token_) in DeviceLockedRequest() argument
1034 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;
/system/keymint/wire/src/
Dtypes.rs150 pub struct DeviceLockedRequest { struct
151 pub password_only: bool,
152 pub timestamp_token: Option<TimeStampToken>,