HomeSort by relevance Sort by last modified time
    Searched defs:enroll (Results 1 - 25 of 27) sorted by null

1 2

  /system/core/gatekeeperd/
SoftGateKeeperDevice.cpp 21 int SoftGateKeeperDevice::enroll(uint32_t uid, function in class:android::SoftGateKeeperDevice
58 impl_->Enroll(request, &response);
gatekeeperd.cpp 141 virtual int enroll(uint32_t uid, function in class:android::GateKeeperProxy
157 // need a desired password to enroll
167 // the handle as valid, so we nullify it and enroll from scratch
184 Return<void> hwRes = hw_device->enroll(uid, curPwdHandle, curPwd, newPwd,
202 ALOGE("enroll transaction failed\n");
206 ret = soft_device->enroll(uid,
304 // success! re-enroll with HAL
  /device/generic/goldfish/gatekeeper/
SoftGateKeeperDevice.cpp 21 int SoftGateKeeperDevice::enroll(uint32_t uid, function in class:goldfish::SoftGateKeeperDevice
58 impl_->Enroll(request, &response);
module.cpp 38 static int enroll(const struct gatekeeper_device *dev __unused, uint32_t uid, function
51 return s_gatekeeper->enroll(uid,
100 s_device.device.enroll = enroll;
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
SoftGateKeeperDevice.cpp 21 int SoftGateKeeperDevice::enroll(uint32_t uid, function in class:cuttlefish::SoftGateKeeperDevice
58 impl_->Enroll(request, &response);
module.cpp 38 static int enroll(const struct gatekeeper_device *dev __unused, uint32_t uid, function
51 return s_gatekeeper->enroll(uid,
100 s_device.device.enroll = enroll;
  /external/autotest/client/site_tests/platform_Attestation/
platform_Attestation.py 13 def enroll(self): member in class:platform_Attestation
21 ' https://chromeos-ca.gstatic.com/enroll')
43 self.enroll()
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
StoreBackend.java 59 boolean enroll(String userId, String password, PublicKey publicKey); method in interface:StoreBackend
StoreBackendImpl.java 69 public boolean enroll(String userId, String password, PublicKey publicKey) { method in class:StoreBackendImpl
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
StoreBackend.java 59 boolean enroll(String userId, String password, PublicKey publicKey); method in interface:StoreBackend
StoreBackendImpl.java 69 public boolean enroll(String userId, String password, PublicKey publicKey) { method in class:StoreBackendImpl
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
StoreBackend.java 59 boolean enroll(String userId, String password, PublicKey publicKey); method in interface:StoreBackend
StoreBackendImpl.java 69 public boolean enroll(String userId, String password, PublicKey publicKey) { method in class:StoreBackendImpl
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
MainInteractionService.java 88 Intent enroll = mHotwordDetector.createEnrollIntent(); local
89 Log.i(TAG, "Need to enroll with " + enroll);
  /hardware/libhardware/include/hardware/
gatekeeper.h 71 * - desired_password: the new password the user wishes to enroll in plain-text.
78 * This buffer can be used on subsequent calls to enroll or verify.
91 int (*enroll)(const struct gatekeeper_device *dev, uint32_t uid, member in struct:gatekeeper_device
131 * - request_reenroll: a request to the upper layers to re-enroll the verified
fingerprint.h 113 fingerprint_enroll_t enroll; member in union:fingerprint_msg::__anon48129
152 * Fingerprint pre-enroll enroll request:
154 * This token will be wrapped by security for verification and passed to enroll() for
164 * Fingerprint enroll request:
166 * template. Switches back as soon as enroll is complete
168 * fingerprint_msg.data.enroll.samples_remaining == 0)
177 int (*enroll)(struct fingerprint_device *dev, const hw_auth_token_t *hat, member in struct:fingerprint_device
181 * Finishes the enroll operation and invalidates the pre_enroll() generated challenge.
201 * Cancel pending enroll or authenticate, sending FINGERPRINT_ERROR_CANCELE
    [all...]
  /system/core/trusty/gatekeeper/
trusty_gatekeeper.cpp 55 device_.enroll = enroll;
82 int TrustyGateKeeperDevice::Enroll(uint32_t uid, const uint8_t *current_password_handle,
190 int TrustyGateKeeperDevice::enroll(const struct gatekeeper_device *dev, uint32_t uid, function in class:gatekeeper::TrustyGateKeeperDevice
210 return convert_device(dev)->Enroll(uid, current_password_handle, current_password_handle_length,
  /hardware/interfaces/biometrics/fingerprint/2.1/default/
BiometricsFingerprint.cpp 161 Return<RequestStatus> BiometricsFingerprint::enroll(const hidl_array<uint8_t, 69>& hat, function in class:android::hardware::biometrics::fingerprint::V2_1::implementation::BiometricsFingerprint
165 return ErrorFilter(mDevice->enroll(mDevice, authToken, gid, timeoutSec));
291 msg->data.enroll.finger.fid,
292 msg->data.enroll.finger.gid,
293 msg->data.enroll.samples_remaining);
295 msg->data.enroll.finger.fid,
296 msg->data.enroll.finger.gid,
297 msg->data.enroll.samples_remaining).isOk()) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
FakeGateKeeperService.java 93 public GateKeeperResponse enroll(int uid, byte[] currentPasswordHandle, byte[] currentPassword, method in class:FakeGateKeeperService
98 // Trusted enroll
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintEnrollSidecar.java 140 mFingerprintManager.enroll(mToken, mEnrollmentCancel,
  /frameworks/base/core/java/android/hardware/fingerprint/
FingerprintManager.java 264 * Callback structure provided to {@link FingerprintManager#enroll(long, EnrollmentCallback,
266 * must provide an implementation of this to {@link FingerprintManager#enroll(long,
567 public void enroll(byte [] token, CancellationSignal cancel, int flags, method in class:FingerprintManager
587 mService.enroll(mToken, token, userId, mServiceReceiver, flags,
590 Slog.w(TAG, "Remote exception in enroll: ", e);
    [all...]
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 93 enroll(); method
193 private void enroll() { method in class:FingerprintAuthenticationDialogFragment
209 mStoreBackend.enroll("user", "password", verificationKey);
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 93 enroll(); method
193 private void enroll() { method in class:FingerprintAuthenticationDialogFragment
209 mStoreBackend.enroll("user", "password", verificationKey);
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 93 enroll(); method
193 private void enroll() { method in class:FingerprintAuthenticationDialogFragment
209 mStoreBackend.enroll("user", "password", verificationKey);
  /external/wpa_supplicant_8/hs20/server/
spp_server.c 1283 xml_node_t *spp_node, *enroll, *exec_node; local
    [all...]

Completed in 405 milliseconds

1 2