Searched refs:fingerprintId (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/core/java/android/service/fingerprint/ |
D | FingerprintManager.java | 113 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()
|
D | FingerprintManagerReceiver.java | 33 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
|
D | IFingerprintServiceReceiver.aidl | 26 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
|
D | IFingerprintService.aidl | 33 void remove(IBinder token, int fingerprintId, int userId); in remove() argument
|
/frameworks/base/core/jni/ |
D | android_server_FingerprintManager.cpp | 124 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/ |
D | FingerprintService.java | 123 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/ |
D | KeyguardUpdateMonitor.java | 339 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();
|