Home
last modified time | relevance | path

Searched refs:fingerprintId (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/service/fingerprint/
DFingerprintManager.java113 public void onEnrollResult(int fingerprintId, int remaining) {
114 mHandler.obtainMessage(MSG_ENROLL_RESULT, fingerprintId, remaining).sendToTarget();
121 public void onProcessed(int fingerprintId) {
122 mHandler.obtainMessage(MSG_PROCESSED, fingerprintId, 0).sendToTarget();
129 public void onRemoved(int fingerprintId) {
130 mHandler.obtainMessage(MSG_REMOVED, fingerprintId, 0).sendToTarget();
169 public void remove(int fingerprintId) { in remove() argument
176 mService.remove(mToken, fingerprintId, getCurrentUserId()); in remove()
178 Log.v(TAG, "Remote exception during remove of fingerprintId: " + fingerprintId, e); in remove()
DFingerprintManagerReceiver.java33 public void onEnrollResult(int fingerprintId, int remaining) { } in onEnrollResult() argument
56 public void onProcessed(int fingerprintId) { } in onProcessed() argument
75 public void onRemoved(int fingerprintId) { } in onRemoved() argument
DIFingerprintServiceReceiver.aidl26 void onEnrollResult(int fingerprintId, int remaining); in onEnrollResult() argument
28 void onProcessed(int fingerprintId); in onProcessed() argument
30 void onRemoved(int fingerprintId); in onRemoved() argument
DIFingerprintService.aidl33 void remove(IBinder token, int fingerprintId, int userId); in remove() argument
/frameworks/base/core/jni/
Dandroid_server_FingerprintManager.cpp124 static jint nativeRemove(JNIEnv* env, jobject clazz, jint fingerprintId) { in nativeRemove() argument
125 ALOG(LOG_VERBOSE, LOG_TAG, "nativeRemove(%d)\n", fingerprintId); in nativeRemove()
126 int ret = gContext.device->remove(gContext.device, fingerprintId); in nativeRemove()
/frameworks/base/services/core/java/com/android/server/fingerprint/
DFingerprintService.java123 native int nativeRemove(int fingerprintId); in nativeRemove() argument
303 public void remove(IBinder token, int fingerprintId, int userId) { in remove() argument
305 startRemove(token, fingerprintId, userId); in remove()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardUpdateMonitor.java339 private void handleFingerprintProcessed(int fingerprintId) { in handleFingerprintProcessed() argument
340 if (fingerprintId == 0) return; // not a valid fingerprint in handleFingerprintProcessed()
356 if (ids[i] == fingerprintId) { in handleFingerprintProcessed()
498 public void onProcessed(int fingerprintId) {
499 mHandler.obtainMessage(MSG_FINGERPRINT_PROCESSED, fingerprintId, 0).sendToTarget();