HomeSort by relevance Sort by last modified time
    Searched full:fingerprint (Results 26 - 50 of 871) sorted by null

12 3 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/res/values/
strings.xml 30 <string name="fingerprint_description">Confirm fingerprint to continue</string>
36 You can proceed to purchase with this button \n even if a new fingerprint is enrolled
38 <string name="fingerprint_not_recognized">Fingerprint not recognized. Try again</string>
39 <string name="fingerprint_success">Fingerprint recognized</string>
44 <string name="new_fingerprint_enrolled_description">A new fingerprint was added to this device, so your password is required.</string>
45 <string name="use_fingerprint_in_future">Use fingerprint in the future</string>
46 <string name="use_fingerprint_to_authenticate_title">Use fingerprint to authenticate</string>
  /developers/samples/android/security/FingerprintDialog/Application/src/main/res/values/
strings.xml 30 <string name="fingerprint_description">Confirm fingerprint to continue</string>
36 You can proceed to purchase with this button \n even if a new fingerprint is enrolled
38 <string name="fingerprint_not_recognized">Fingerprint not recognized. Try again</string>
39 <string name="fingerprint_success">Fingerprint recognized</string>
44 <string name="new_fingerprint_enrolled_description">A new fingerprint was added to this device, so your password is required.</string>
45 <string name="use_fingerprint_in_future">Use fingerprint in the future</string>
46 <string name="use_fingerprint_to_authenticate_title">Use fingerprint to authenticate</string>
  /development/samples/browseable/FingerprintDialog/res/values/
strings.xml 30 <string name="fingerprint_description">Confirm fingerprint to continue</string>
36 You can proceed to purchase with this button \n even if a new fingerprint is enrolled
38 <string name="fingerprint_not_recognized">Fingerprint not recognized. Try again</string>
39 <string name="fingerprint_success">Fingerprint recognized</string>
44 <string name="new_fingerprint_enrolled_description">A new fingerprint was added to this device, so your password is required.</string>
45 <string name="use_fingerprint_in_future">Use fingerprint in the future</string>
46 <string name="use_fingerprint_to_authenticate_title">Use fingerprint to authenticate</string>
  /cts/tests/tests/os/src/android/os/cts/
BuildVersionTest.java 52 * Verifies {@link Build#FINGERPRINT} follows expected format:
61 final String fingerprint = Build.FINGERPRINT; local
62 Log.i(LOG_TAG, String.format("Testing fingerprint %s", fingerprint));
64 assertEquals("Build fingerprint must not include whitespace", -1,
65 fingerprint.indexOf(' '));
66 final String[] fingerprintSegs = fingerprint.split("/");
67 assertEquals("Build fingerprint does not match expected format", 6, fingerprintSegs.length);
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
MainActivity.java 23 import android.hardware.fingerprint.FingerprintManager;
76 // Show a message that the user hasn't set up a fingerprint or lock screen.
79 + "Go to 'Settings -> Security -> Fingerprint' to set up a fingerprint",
89 "Go to 'Settings -> Security -> Fingerprint' and register at least one fingerprint",
102 // of the fingerprint.
105 // Show the fingerprint dialog. The user has the option to use the fingerprint with
113 FingerprintAuthenticationDialogFragment.Stage.FINGERPRINT);
    [all...]
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
MainActivity.java 23 import android.hardware.fingerprint.FingerprintManager;
76 // Show a message that the user hasn't set up a fingerprint or lock screen.
79 + "Go to 'Settings -> Security -> Fingerprint' to set up a fingerprint",
89 "Go to 'Settings -> Security -> Fingerprint' and register at least one fingerprint",
102 // of the fingerprint.
105 // Show the fingerprint dialog. The user has the option to use the fingerprint with
113 FingerprintAuthenticationDialogFragment.Stage.FINGERPRINT);
    [all...]
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
MainActivity.java 23 import android.hardware.fingerprint.FingerprintManager;
76 // Show a message that the user hasn't set up a fingerprint or lock screen.
79 + "Go to 'Settings -> Security -> Fingerprint' to set up a fingerprint",
89 "Go to 'Settings -> Security -> Fingerprint' and register at least one fingerprint",
102 // of the fingerprint.
105 // Show the fingerprint dialog. The user has the option to use the fingerprint with
113 FingerprintAuthenticationDialogFragment.Stage.FINGERPRINT);
    [all...]
  /frameworks/base/core/java/android/hardware/fingerprint/
FingerprintManager.java 17 package android.hardware.fingerprint;
48 * A class that coordinates access to the fingerprint hardware.
66 // Error messages from fingerprint hardware during initilization, enrollment, authentication or
67 // removal. Must agree with the list in fingerprint.h
82 * prevent programs from waiting for the fingerprint sensor indefinitely. The timeout is
94 * The operation was canceled because the fingerprint sensor is unavailable. For example,
101 * The {@link FingerprintManager#remove(Fingerprint, RemovalCallback)} call failed. Typically
102 * this will happen when the provided fingerprint id was incorrect.
121 // Image acquisition messages. Must agree with those in fingerprint.h
130 * Only a partial fingerprint image was detected. During enrollment, the user should b
    [all...]
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/
README.md 14 in the way that its private key can only be used after the user has authenticated with fingerprint
20 fingerprint.
22 Then start listening to a fingerprint on the fingerprint sensor by calling
26 Once the fingerprint (or password) is verified, the
34 [3]: https://developer.android.com/reference/android/hardware/fingerprint/FingerprintManager.html#authenticate%28android.hardware.fingerprint.FingerprintManager.CryptoObject,%20android.os.CancellationSignal,%20int,%20android.hardware.fingerprint.FingerprintManager.AuthenticationCallback,%20android.os.Handler%29
36 [5]: https://developer.android.com/reference/android/hardware/fingerprint/FingerprintManager.AuthenticationCallback.html#onAuthenticationSucceeded%28android.hardware.fingerprint.FingerprintManager.AuthenticationResult%2
    [all...]
  /developers/build/prebuilts/gradle/FingerprintDialog/
README.md 14 which can be only be used after the user has authenticated with fingerprint and pass
19 fingerprint.
21 Then start listening to a fingerprint on the fingerprint sensor by calling
25 Once the fingerprint (or password) is verified, the
31 [4]: https://developer.android.com/reference/android/hardware/fingerprint/FingerprintManager.html#authenticate%28android.hardware.fingerprint.FingerprintManager.CryptoObject,%20android.os.CancellationSignal,%20int,%20android.hardware.fingerprint.FingerprintManager.AuthenticationCallback,%20android.os.Handler%29
33 [6]: https://developer.android.com/reference/android/hardware/fingerprint/FingerprintManager.AuthenticationCallback.html#onAuthenticationSucceeded%28android.hardware.fingerprint.FingerprintManager.AuthenticationResult%2
    [all...]
  /frameworks/native/data/etc/
android.hardware.fingerprint.xml 17 <!-- This is the standard set of features for a biometric fingerprint sensor. -->
19 <feature name="android.hardware.fingerprint" />
  /hardware/libhardware/modules/fingerprint/
Android.mk 19 LOCAL_MODULE := fingerprint.default
21 LOCAL_SRC_FILES := fingerprint.c
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintFindSensorAnimation.java 17 package com.android.settings.fingerprint;
21 * where the fingerprint sensor is on the device.
  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
MainActivity.java 23 import android.hardware.fingerprint.FingerprintManager;
123 // Show a message that the user hasn't set up a fingerprint or lock screen.
126 + "Go to 'Settings -> Security -> Fingerprint' to set up a fingerprint",
141 "Go to 'Settings -> Security -> Fingerprint' and register at least one fingerprint",
158 * been disabled or reset after the key was generated, or if a fingerprint got enrolled after
178 * @param withFingerprint {@code true} if the purchase was made by using a fingerprint
184 // If the user has authenticated with fingerprint, verify that using cryptography and
194 // Show confirmation, if fingerprint was used show crypto information
    [all...]
FingerprintAuthenticationDialogFragment.java 22 import android.hardware.fingerprint.FingerprintManager;
38 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
39 * authentication if fingerprint is not available.
53 private Stage mStage = Stage.FINGERPRINT;
88 if (mStage == Stage.FINGERPRINT) {
110 // If fingerprint authentication is not available, switch immediately to the backup
121 if (mStage == Stage.FINGERPRINT) {
145 * Sets the crypto object to be passed in when authenticating with fingerprint.
152 * Switches to backup (password) screen. This either can happen when fingerprint is not
154 * button. This can also happen when the user had too many fingerprint attempts
    [all...]
  /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
MainActivity.java 23 import android.hardware.fingerprint.FingerprintManager;
123 // Show a message that the user hasn't set up a fingerprint or lock screen.
126 + "Go to 'Settings -> Security -> Fingerprint' to set up a fingerprint",
141 "Go to 'Settings -> Security -> Fingerprint' and register at least one fingerprint",
158 * been disabled or reset after the key was generated, or if a fingerprint got enrolled after
178 * @param withFingerprint {@code true} if the purchase was made by using a fingerprint
184 // If the user has authenticated with fingerprint, verify that using cryptography and
194 // Show confirmation, if fingerprint was used show crypto information
    [all...]
FingerprintAuthenticationDialogFragment.java 22 import android.hardware.fingerprint.FingerprintManager;
38 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
39 * authentication if fingerprint is not available.
53 private Stage mStage = Stage.FINGERPRINT;
88 if (mStage == Stage.FINGERPRINT) {
110 // If fingerprint authentication is not available, switch immediately to the backup
121 if (mStage == Stage.FINGERPRINT) {
145 * Sets the crypto object to be passed in when authenticating with fingerprint.
152 * Switches to backup (password) screen. This either can happen when fingerprint is not
154 * button. This can also happen when the user had too many fingerprint attempts
    [all...]
  /development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/
MainActivity.java 23 import android.hardware.fingerprint.FingerprintManager;
123 // Show a message that the user hasn't set up a fingerprint or lock screen.
126 + "Go to 'Settings -> Security -> Fingerprint' to set up a fingerprint",
141 "Go to 'Settings -> Security -> Fingerprint' and register at least one fingerprint",
158 * been disabled or reset after the key was generated, or if a fingerprint got enrolled after
178 * @param withFingerprint {@code true} if the purchase was made by using a fingerprint
184 // If the user has authenticated with fingerprint, verify that using cryptography and
194 // Show confirmation, if fingerprint was used show crypto information
    [all...]
FingerprintAuthenticationDialogFragment.java 22 import android.hardware.fingerprint.FingerprintManager;
38 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
39 * authentication if fingerprint is not available.
53 private Stage mStage = Stage.FINGERPRINT;
88 if (mStage == Stage.FINGERPRINT) {
110 // If fingerprint authentication is not available, switch immediately to the backup
121 if (mStage == Stage.FINGERPRINT) {
145 * Sets the crypto object to be passed in when authenticating with fingerprint.
152 * Switches to backup (password) screen. This either can happen when fingerprint is not
154 * button. This can also happen when the user had too many fingerprint attempts
    [all...]
  /device/lge/bullhead/sepolicy/
device.te 33 # Fingerprint device
  /external/iptables/include/linux/netfilter/
xt_osf.h 33 #define XT_OSF_LOGLEVEL_FIRST 1 /* log only the first matced fingerprint */
36 #define XT_OSF_TTL_TRUE 0 /* True ip and fingerprint TTL comparison */
37 #define XT_OSF_TTL_LESS 1 /* Check if ip TTL is less than fingerprint one */
38 #define XT_OSF_TTL_NOCHECK 2 /* Do not compare ip and fingerprint TTL at all */
121 * Add/remove fingerprint from the kernel.
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_osf.h 32 #define XT_OSF_LOGLEVEL_FIRST 1 /* log only the first matced fingerprint */
35 #define XT_OSF_TTL_TRUE 0 /* True ip and fingerprint TTL comparison */
36 #define XT_OSF_TTL_LESS 1 /* Check if ip TTL is less than fingerprint one */
37 #define XT_OSF_TTL_NOCHECK 2 /* Do not compare ip and fingerprint TTL at all */
120 * Add/remove fingerprint from the kernel.
  /frameworks/base/services/core/java/com/android/server/fingerprint/
EnumerateClient.java 17 package com.android.server.fingerprint;
20 import android.hardware.fingerprint.FingerprintManager;
21 import android.hardware.fingerprint.IFingerprintDaemon;
22 import android.hardware.fingerprint.IFingerprintServiceReceiver;
40 // The fingerprint template ids will be removed when we get confirmation from the HAL
FingerprintUtils.java 17 package com.android.server.fingerprint;
20 import android.hardware.fingerprint.Fingerprint;
30 * Utility class for dealing with fingerprints and fingerprint settings.
55 public List<Fingerprint> getFingerprintsForUser(Context ctx, int userId) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/
xt_osf.h 33 #define XT_OSF_LOGLEVEL_FIRST 1 /* log only the first matced fingerprint */
36 #define XT_OSF_TTL_TRUE 0 /* True ip and fingerprint TTL comparison */
37 #define XT_OSF_TTL_LESS 1 /* Check if ip TTL is less than fingerprint one */
38 #define XT_OSF_TTL_NOCHECK 2 /* Do not compare ip and fingerprint TTL at all */
121 * Add/remove fingerprint from the kernel.

Completed in 777 milliseconds

12 3 4 5 6 7 8 91011>>