Home | History | Annotate | Download | only in fingerprint

Lines Matching refs:fingerprint

16 package android.hardware.fingerprint;
23 * Container for fingerprint metadata.
26 public final class Fingerprint extends BiometricAuthenticator.BiometricIdentifier {
32 public Fingerprint(CharSequence name, int groupId, int fingerId, long deviceId) {
39 private Fingerprint(Parcel in) {
47 * Gets the human-readable name for the given fingerprint.
54 * fingerprint template.
61 * Gets the group id specified when the fingerprint was enrolled.
68 * Device this fingerprint belongs to.
84 public static final Parcelable.Creator<Fingerprint> CREATOR
85 = new Parcelable.Creator<Fingerprint>() {
86 public Fingerprint createFromParcel(Parcel in) {
87 return new Fingerprint(in);
90 public Fingerprint[] newArray(int size) {
91 return new Fingerprint[size];