Home
last modified time | relevance | path

Searched refs:AuthService (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
H A DAuthServiceTest.java82 private AuthService mAuthService;
96 AuthService.Injector mInjector;
156 mAuthService = new AuthService(mContext, mInjector); in testRegisterNullService_doesNotRegister()
183 mAuthService = new AuthService(mContext, mInjector); in testRegisterAuthenticator_registerAuthenticators()
206 mAuthService = new AuthService(mContext, mInjector); in testAuthenticate_appOpsOk_callsBiometricServiceAuthenticate()
235 mAuthService = new AuthService(mContext, mInjector); in testAuthenticate_appOpsDenied_doesNotCallBiometricService()
263 mAuthService = new AuthService(mContext, mInjector); in testAuthenticate_missingRequiredParam()
284 mAuthService = new AuthService(mContext, mInjector); in testAuthenticate_noVdmInternalService_noCrash()
303 mAuthService = new AuthService(mContext, mInjector); in testAuthenticate_callsVirtualDeviceManagerOnAuthenticationPrompt()
341 mAuthService = new AuthService(mContext, mInjector); in testAuthenticate_throwsWhenUsingTestConfigurations()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/
H A DAuthService.java83 public class AuthService extends SystemService { class
117 public void publishBinderService(AuthService service, IAuthService.Stub impl) { in publishBinderService()
614 public AuthService(Context context) { in AuthService() method in AuthService
618 public AuthService(Context context, Injector injector) { in AuthService() method in AuthService
/aosp14/frameworks/base/services/java/com/android/server/
H A DSystemServer.java116 import com.android.server.biometrics.AuthService;
2537 mSystemServiceManager.startService(AuthService.class); in startOtherServices()