Home
last modified time | relevance | path

Searched refs:GateKeeperMessage (Results 1 – 6 of 6) sorted by relevance

/system/gatekeeper/include/gatekeeper/
Dgatekeeper_messages.h76 struct GateKeeperMessage { struct
77 GateKeeperMessage() : error(ERROR_NONE) {} in GateKeeperMessage() function
78 GateKeeperMessage(gatekeeper_error_t error) : error(error) {} in GateKeeperMessage() argument
79 virtual ~GateKeeperMessage() {} in ~GateKeeperMessage() argument
137 struct VerifyRequest : public GateKeeperMessage { argument
155 struct VerifyResponse : public GateKeeperMessage {
170 struct EnrollRequest : public GateKeeperMessage {
195 struct EnrollResponse : public GateKeeperMessage {
Dgatekeeper.h208 failure_record_t *record, bool secure, GateKeeperMessage *response);
/system/core/trusty/gatekeeper/
Dtrusty_gatekeeper.h68 gatekeeper_error_t Send(uint32_t command, const GateKeeperMessage& request,
69 GateKeeperMessage* response);
Dtrusty_gatekeeper.cpp160 gatekeeper_error_t TrustyGateKeeperDevice::Send(uint32_t command, const GateKeeperMessage& request, in Send()
161 GateKeeperMessage *response) { in Send()
/system/gatekeeper/
Dgatekeeper_messages.cpp66 uint32_t GateKeeperMessage::GetSerializedSize() const { in GetSerializedSize()
79 uint32_t GateKeeperMessage::Serialize(uint8_t *buffer, const uint8_t *end) const { in Serialize()
107 gatekeeper_error_t GateKeeperMessage::Deserialize(const uint8_t *payload, const uint8_t *end) { in Deserialize()
129 void GateKeeperMessage::SetRetryTimeout(uint32_t retry_timeout) { in SetRetryTimeout()
Dgatekeeper.cpp279 failure_record_t *record, bool secure, GateKeeperMessage *response) { in ThrottleRequest()