Searched refs:cryptoObject (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/compat/api23/android/support/v4/hardware/fingerprint/
H A DFingerprintManagerCompatApi23.java79 private static FingerprintManager.CryptoObject wrapCryptoObject(CryptoObject cryptoObject) { argument
80 if (cryptoObject == null) {
82 } else if (cryptoObject.getCipher() != null) {
83 return new FingerprintManager.CryptoObject(cryptoObject.getCipher());
84 } else if (cryptoObject.getSignature() != null) {
85 return new FingerprintManager.CryptoObject(cryptoObject.getSignature());
86 } else if (cryptoObject.getMac() != null) {
87 return new FingerprintManager.CryptoObject(cryptoObject.getMac());
93 private static CryptoObject unwrapCryptoObject(FingerprintManager.CryptoObject cryptoObject) { argument
94 if (cryptoObject
[all...]
/frameworks/support/compat/java/android/support/v4/hardware/fingerprint/
H A DFingerprintManagerCompat.java257 CryptoObject cryptoObject) {
258 if (cryptoObject == null) {
260 } else if (cryptoObject.getCipher() != null) {
261 return new FingerprintManagerCompatApi23.CryptoObject(cryptoObject.getCipher());
262 } else if (cryptoObject.getSignature() != null) {
263 return new FingerprintManagerCompatApi23.CryptoObject(cryptoObject.getSignature());
264 } else if (cryptoObject.getMac() != null) {
265 return new FingerprintManagerCompatApi23.CryptoObject(cryptoObject.getMac());
272 FingerprintManagerCompatApi23.CryptoObject cryptoObject) {
273 if (cryptoObject
256 wrapCryptoObject( CryptoObject cryptoObject) argument
271 unwrapCryptoObject( FingerprintManagerCompatApi23.CryptoObject cryptoObject) argument
[all...]
/frameworks/base/core/java/android/hardware/fingerprint/
H A DFingerprintManager.java1008 private void cancelAuthentication(CryptoObject cryptoObject) { argument

Completed in 808 milliseconds