HomeSort by relevance Sort by last modified time
    Searched refs:gatekeeper (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/base/core/java/android/service/gatekeeper/
GateKeeperResponse.aidl 17 package android.service.gatekeeper;
20 * Response object for a GateKeeper verification request.
IGateKeeperService.aidl 17 package android.service.gatekeeper;
19 import android.service.gatekeeper.GateKeeperResponse;
22 * Interface for communication with GateKeeper, the
83 * Notifies gatekeeper that device setup has been completed and any potentially still existing
  /system/core/trusty/
trusty-base.mk 24 gatekeeper.trusty
28 ro.hardware.gatekeeper=trusty
  /hardware/interfaces/gatekeeper/1.0/default/
service.cpp 16 #define LOG_TAG "android.hardware.gatekeeper@1.0-service"
18 #include <android/hardware/gatekeeper/1.0/IGatekeeper.h>
23 using android::hardware::gatekeeper::V1_0::IGatekeeper;
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...]
  /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/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
  /test/vts-testcase/hal/gatekeeper/V1_0/target/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/gatekeeper/V1_0/target
  /test/vts-testcase/hal/gatekeeper/V1_0/target_profiling/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/gatekeeper/V1_0/target_profiling
  /test/vts-testcase/hal/gatekeeper/V1_0/target_replay/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/gatekeeper/V1_0/target_replay
  /hardware/interfaces/gatekeeper/1.0/
types.hal 16 package android.hardware.gatekeeper@1.0;
19 * Gatekeeper response codes; success >= 0; error < 0
31 * Gatekeeper response to any/all requests has this structure as mandatory part
IGatekeeper.hal 16 package android.hardware.gatekeeper@1.0;
  /device/generic/goldfish/gatekeeper/
Android.mk 21 LOCAL_MODULE := gatekeeper.ranchu
41 android.hardware.gatekeeper@1.0 \
SoftGateKeeperDevice.h 24 using namespace gatekeeper;
29 * Software based GateKeeper implementation
37 // Wrappers to translate the gatekeeper HAL API to the Kegyuard Messages API.
74 } // namespace gatekeeper
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
Android.mk 27 LOCAL_MODULE := gatekeeper.vsoc
46 android.hardware.gatekeeper@1.0 \
SoftGateKeeperDevice.h 24 using namespace gatekeeper;
29 * Software based GateKeeper implementation
37 // Wrappers to translate the gatekeeper HAL API to the Kegyuard Messages API.
74 } // namespace gatekeeper
  /system/gatekeeper/include/gatekeeper/
password_handle.h 24 namespace gatekeeper { namespace
  /system/gatekeeper/
rules.mk 7 $(LOCAL_DIR)/gatekeeper.cpp
  /system/gatekeeper/tests/
gatekeeper_messages_test.cpp 22 #include <gatekeeper/gatekeeper_messages.h>
24 using ::gatekeeper::SizedBuffer;
26 using ::gatekeeper::EnrollRequest;
27 using ::gatekeeper::EnrollResponse;
28 using ::gatekeeper::VerifyRequest;
29 using ::gatekeeper::VerifyResponse;
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
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_locksettings_SyntheticPasswordManager.cpp 27 #include <gatekeeper/password_handle.h>
41 const gatekeeper::password_handle_t *handle =
42 reinterpret_cast<const gatekeeper::password_handle_t *>(data);
  /frameworks/base/keystore/java/android/security/
GateKeeper.java 23 import android.service.gatekeeper.IGateKeeperService;
26 * Convenience class for accessing the gatekeeper service.
30 public abstract class GateKeeper {
34 private GateKeeper() {}
40 throw new IllegalStateException("Gatekeeper service not available");
50 "Failed to obtain secure user ID from gatekeeper", e);
  /system/core/gatekeeperd/
Android.mk 40 android.hardware.gatekeeper@1.0 \
SoftGateKeeperDevice.h 24 using namespace gatekeeper;
29 * Software based GateKeeper implementation
37 // Wrappers to translate the gatekeeper HAL API to the Kegyuard Messages API.
74 } // namespace gatekeeper
gatekeeperd.cpp 32 #include <gatekeeper/password_handle.h> // for password_handle_t
33 #include <hardware/gatekeeper.h>
44 #include <android/hardware/gatekeeper/1.0/IGatekeeper.h>
47 using android::hardware::gatekeeper::V1_0::IGatekeeper;
48 using android::hardware::gatekeeper::V1_0::GatekeeperStatusCode;
49 using android::hardware::gatekeeper::V1_0::GatekeeperResponse;
64 ALOGW("falling back to software GateKeeper");
162 const gatekeeper::password_handle_t *handle =
163 reinterpret_cast<const gatekeeper::password_handle_t *>(current_password_handle);
221 gatekeeper::password_handle_t *handle
    [all...]

Completed in 172 milliseconds

1 2 3