OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Fingerprint
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/hardware/fingerprint/
Fingerprint.java
16
package android.hardware.
fingerprint
;
22
* Container for
fingerprint
metadata.
25
public final class
Fingerprint
implements Parcelable {
31
public
Fingerprint
(CharSequence name, int groupId, int fingerId, long deviceId) {
38
private
Fingerprint
(Parcel in) {
46
* Gets the human-readable name for the given
fingerprint
.
53
*
fingerprint
template.
60
* Gets the group id specified when the
fingerprint
was enrolled.
67
* Device this
fingerprint
belongs to.
83
public static final Parcelable.Creator<
Fingerprint
> CREATO
[
all
...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Fingerprint.java
30
public class
Fingerprint
{
43
// 16 bytes for 128-bit
fingerprint
46
// length of prefix + 32 hex chars for 128-bit
fingerprint
65
* Creates a new
Fingerprint
.
67
public
Fingerprint
(byte[] bytes) {
75
* Creates a
Fingerprint
based on the contents of a file.
79
* of the
fingerprint
calculation
81
public static
Fingerprint
fromInputStream(InputStream stream, long[] byteCount)
89
// scan through file to compute a
fingerprint
.
98
return new
Fingerprint
(in.getMessageDigest().digest())
[
all
...]
/external/openfst/src/include/fst/
bi-table.h
271
// It is passed a function object FP that should
fingerprint
entries
313
const FP &
Fingerprint
() const { return *fp_; }
326
// vector. The fingerprinting functor FP returns a unique
fingerprint
410
const FP &
Fingerprint
() const { return *fp_; }
458
FP *fp_; //
Fingerprint
used when hashing entry into vector
Completed in 106 milliseconds