HomeSort by relevance Sort by last modified time
    Searched refs:gatekeeper_error_t (Results 1 - 6 of 6) sorted by null

  /system/gatekeeper/include/gatekeeper/
gatekeeper_messages.h 37 } gatekeeper_error_t; typedef in namespace:gatekeeper
78 GateKeeperMessage(gatekeeper_error_t error) : error(error) {}
98 gatekeeper_error_t Deserialize(const uint8_t *payload, const uint8_t *end);
128 virtual gatekeeper_error_t nonErrorDeserialize(const uint8_t *, const uint8_t *) {
132 gatekeeper_error_t error;
148 virtual gatekeeper_error_t nonErrorDeserialize(const uint8_t *payload, const uint8_t *end);
164 virtual gatekeeper_error_t nonErrorDeserialize(const uint8_t *payload, const uint8_t *end);
178 virtual gatekeeper_error_t nonErrorDeserialize(const uint8_t *payload, const uint8_t *end);
205 virtual gatekeeper_error_t nonErrorDeserialize(const uint8_t *payload, const uint8_t *end);
  /system/core/gatekeeperd/tests/
gatekeeper_test.cpp 50 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, response.error);
62 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_INVALID, response.error);
75 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, enroll_response.error);
82 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, response.error);
105 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, enroll_response.error);
118 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, response.error);
134 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, enroll_response.error);
143 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, response.error);
159 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, enroll_response.error);
166 ASSERT_EQ(::gatekeeper::gatekeeper_error_t::ERROR_NONE, response.error)
    [all...]
  /system/core/trusty/gatekeeper/
trusty_gatekeeper.h 68 gatekeeper_error_t Send(uint32_t command, const GateKeeperMessage& request,
71 gatekeeper_error_t Send(const EnrollRequest& request, EnrollResponse *response) {
75 gatekeeper_error_t Send(const VerifyRequest& request, VerifyResponse *response) {
trusty_gatekeeper.cpp 108 gatekeeper_error_t error = Send(request, &response);
140 gatekeeper_error_t error = Send(request, &response);
160 gatekeeper_error_t TrustyGateKeeperDevice::Send(uint32_t command, const GateKeeperMessage& request,
  /system/gatekeeper/tests/
gatekeeper_messages_test.cpp 62 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_NONE,
91 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_NONE,
122 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_NONE,
154 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_NONE,
178 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_NONE,
207 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_NONE,
219 msg.error = gatekeeper::gatekeeper_error_t::ERROR_INVALID;
224 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_INVALID,
230 msg.error = gatekeeper::gatekeeper_error_t::ERROR_INVALID;
235 ASSERT_EQ(gatekeeper::gatekeeper_error_t::ERROR_INVALID
    [all...]
  /system/gatekeeper/
gatekeeper_messages.cpp 48 static inline gatekeeper_error_t read_from_buffer(const uint8_t **buffer, const uint8_t *end,
107 gatekeeper_error_t GateKeeperMessage::Deserialize(const uint8_t *payload, const uint8_t *end) {
115 error = static_cast<gatekeeper_error_t>(header->error);
172 gatekeeper_error_t VerifyRequest::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) {
173 gatekeeper_error_t error = ERROR_NONE;
226 gatekeeper_error_t VerifyResponse::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) {
231 gatekeeper_error_t err = read_from_buffer(&payload, end, &auth_token);
297 gatekeeper_error_t EnrollRequest::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) {
298 gatekeeper_error_t ret;
356 gatekeeper_error_t EnrollResponse::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end)
    [all...]

Completed in 548 milliseconds