HomeSort by relevance Sort by last modified time
    Searched defs:gatekeeper (Results 1 - 17 of 17) sorted by null

  /system/core/trusty/gatekeeper/
module.cpp 25 using gatekeeper::TrustyGateKeeperDevice;
34 TrustyGateKeeperDevice *gatekeeper = new TrustyGateKeeperDevice(module); local
35 if (gatekeeper == NULL) return -ENOMEM;
36 *device = gatekeeper->hw_device();
51 .name = "Trusty GateKeeper HAL",
trusty_gatekeeper.h 20 #include <hardware/gatekeeper.h>
21 #include <gatekeeper/gatekeeper_messages.h>
25 namespace gatekeeper { namespace
trusty_gatekeeper.cpp 31 namespace gatekeeper { namespace
175 ALOGE("error (%d) calling gatekeeper TA", rc);
  /hardware/interfaces/gatekeeper/1.0/default/
Gatekeeper.h 19 #include <android/hardware/gatekeeper/1.0/IGatekeeper.h>
25 #include <hardware/gatekeeper.h>
29 namespace gatekeeper { namespace in namespace:android::hardware
33 using ::android::hardware::gatekeeper::V1_0::GatekeeperResponse;
34 using ::android::hardware::gatekeeper::V1_0::IGatekeeper;
41 class Gatekeeper : public IGatekeeper {
43 Gatekeeper();
44 ~Gatekeeper();
46 // Methods from ::android::hardware::gatekeeper::V1_0::IGatekeeper follow.
68 } // namespace gatekeeper
    [all...]
Gatekeeper.cpp 16 #define LOG_TAG "android.hardware.gatekeeper@1.0-service"
22 #include "Gatekeeper.h"
26 namespace gatekeeper { namespace in namespace:android::hardware
30 Gatekeeper::Gatekeeper()
39 LOG_ALWAYS_FATAL_IF(ret < 0, "Unable to open GateKeeper HAL");
43 Gatekeeper::~Gatekeeper()
48 ALOGE("Unable to close GateKeeper HAL");
54 // Methods from ::android::hardware::gatekeeper::V1_0::IGatekeeper follow
    [all...]
  /system/core/gatekeeperd/tests/
gatekeeper_test.cpp 25 using ::gatekeeper::SizedBuffer;
27 using ::gatekeeper::EnrollRequest;
28 using ::gatekeeper::EnrollResponse;
29 using ::gatekeeper::VerifyRequest;
30 using ::gatekeeper::VerifyResponse;
31 using ::gatekeeper::SoftGateKeeper;
32 using ::gatekeeper::secure_id_t;
34 static void do_enroll(SoftGateKeeper &gatekeeper, EnrollResponse *response) {
42 gatekeeper.Enroll(request, response);
46 SoftGateKeeper gatekeeper; local
53 SoftGateKeeper gatekeeper; local
65 SoftGateKeeper gatekeeper; local
94 SoftGateKeeper gatekeeper; local
149 SoftGateKeeper gatekeeper; local
194 SoftGateKeeper gatekeeper; local
    [all...]
  /system/gatekeeper/include/gatekeeper/
gatekeeper.h 21 #include <gatekeeper/UniquePtr.h>
27 namespace gatekeeper { namespace
36 * Base class for gatekeeper implementations. Provides all functionality except
40 class GateKeeper {
42 GateKeeper() {}
43 virtual ~GateKeeper() {}
53 * Retrieves the key used by GateKeeper::MintAuthToken to sign the payload
157 * counter. An implementation is provided by the generic GateKeeper, but may be
163 * Returns whether the GateKeeper implementation is backed by hardware.
gatekeeper_utils.h 22 namespace gatekeeper { namespace
UniquePtr.h 22 namespace gatekeeper { namespace
136 } //namespace gatekeeper
password_handle.h 24 namespace gatekeeper { namespace
gatekeeper_messages.h 20 #include <gatekeeper/UniquePtr.h>
25 * Message serialization objects for communicating with the hardware gatekeeper.
27 namespace gatekeeper { namespace
  /frameworks/base/core/java/android/service/gatekeeper/
GateKeeperResponse.java 17 package android.service.gatekeeper;
25 * Response object for a GateKeeper verification request.
  /device/generic/goldfish/gatekeeper/
SoftGateKeeper.h 29 #include <gatekeeper/gatekeeper.h>
35 namespace gatekeeper { namespace
42 class SoftGateKeeper : public GateKeeper {
160 if (GateKeeper::DoVerify(expected_handle, password)) {
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
SoftGateKeeper.h 29 #include <gatekeeper/gatekeeper.h>
35 namespace gatekeeper { namespace
42 class SoftGateKeeper : public GateKeeper {
160 if (GateKeeper::DoVerify(expected_handle, password)) {
  /system/core/gatekeeperd/
SoftGateKeeper.h 29 #include <gatekeeper/gatekeeper.h>
35 namespace gatekeeper { namespace
42 class SoftGateKeeper : public GateKeeper {
160 if (GateKeeper::DoVerify(expected_handle, password)) {
  /system/gatekeeper/
gatekeeper.cpp 16 #include <gatekeeper/UniquePtr.h>
17 #include <gatekeeper/gatekeeper.h>
23 namespace gatekeeper { namespace
25 void GateKeeper::Enroll(const EnrollRequest &request, EnrollResponse *response) {
104 void GateKeeper::Verify(const VerifyRequest &request, VerifyResponse *response) {
169 bool GateKeeper::CreatePasswordHandle(SizedBuffer *password_handle_buffer, salt_t salt,
207 bool GateKeeper::DoVerify(const password_handle_t *expected_handle, const SizedBuffer &password) {
223 void GateKeeper::MintAuthToken(UniquePtr<uint8_t> *auth_token, uint32_t *length,
265 uint32_t GateKeeper::ComputeRetryTimeout(const failure_record_t *record)
    [all...]
gatekeeper_messages.cpp 18 #include <gatekeeper/gatekeeper_messages.h>
22 namespace gatekeeper { namespace

Completed in 597 milliseconds