Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/trust/
DCarTrustedDeviceService.java65 public class CarTrustedDeviceService implements CarServiceBase { class
66 private static final String TAG = CarTrustedDeviceService.class.getSimpleName();
101 public CarTrustedDeviceService(Context context) { in CarTrustedDeviceService() method in CarTrustedDeviceService
DCarTrustAgentBleManager.java91 private CarTrustedDeviceService mCarTrustedDeviceService;
238 private CarTrustedDeviceService getTrustedDeviceService() { in getTrustedDeviceService()
240 mCarTrustedDeviceService = CarLocalServices.getService(CarTrustedDeviceService.class); in getTrustedDeviceService()
DCarBleTrustAgent.java55 private CarTrustedDeviceService mCarTrustedDeviceService;
72 mCarTrustedDeviceService = CarLocalServices.getService(CarTrustedDeviceService.class); in onCreate()
DCarTrustAgentUnlockService.java128 private final CarTrustedDeviceService mTrustedDeviceService;
149 CarTrustAgentUnlockService(CarTrustedDeviceService service, in CarTrustAgentUnlockService()
DCarTrustAgentEnrollmentService.java94 private final CarTrustedDeviceService mTrustedDeviceService;
138 public CarTrustAgentEnrollmentService(Context context, CarTrustedDeviceService service, in CarTrustAgentEnrollmentService()
/packages/services/Car/service/src/com/android/car/
DICarImpl.java47 import com.android.car.trust.CarTrustedDeviceService;
91 private final CarTrustedDeviceService mCarTrustedDeviceService;
166 mCarTrustedDeviceService = new CarTrustedDeviceService(serviceContext); in ICarImpl()
172 CarLocalServices.addService(CarTrustedDeviceService.class, mCarTrustedDeviceService); in ICarImpl()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/trust/
DCarTrustAgentEnrollmentServiceTest.java71 private CarTrustedDeviceService mCarTrustedDeviceService;
100 mCarTrustedDeviceService = new CarTrustedDeviceService(mContext); in setUp()