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.java99 private CarTrustedDeviceService mCarTrustedDeviceService;
260 private CarTrustedDeviceService getTrustedDeviceService() { in getTrustedDeviceService()
262 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.java97 private final CarTrustedDeviceService mTrustedDeviceService;
141 public CarTrustAgentEnrollmentService(Context context, CarTrustedDeviceService service, in CarTrustAgentEnrollmentService()
/packages/services/Car/service/src/com/android/car/
DICarImpl.java55 import com.android.car.trust.CarTrustedDeviceService;
102 private final CarTrustedDeviceService mCarTrustedDeviceService;
184 mCarTrustedDeviceService = new CarTrustedDeviceService(serviceContext); in ICarImpl()
190 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()