Home
last modified time | relevance | path

Searched refs:mICarServiceHelper (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/am/
H A DCarActivityServiceUnitTest.java63 private ICarServiceHelper mICarServiceHelper; field in CarActivityServiceUnitTest
84 mCarActivityService.setICarServiceHelper(mICarServiceHelper); in setPersistentActivityThrowsException_withoutPermission()
97 mCarActivityService.setICarServiceHelper(mICarServiceHelper); in setPersistentActivityInvokesICarServiceHelper()
106 verify(mICarServiceHelper).setPersistentActivity( in setPersistentActivityInvokesICarServiceHelper()
116 mCarActivityService.setICarServiceHelper(mICarServiceHelper); in setPersistentActivityReturnsErrorForNonCurrentUser()
/aosp12/packages/services/Car/service/src/com/android/car/systeminterface/
H A DSystemStateInterface.java84 private ICarServiceHelper mICarServiceHelper; // mHelperLatch becomes 0 when this is set field in SystemStateInterface.DefaultImpl
122 int retVal = mICarServiceHelper.forceSuspend(SUSPEND_TRY_TIMEOUT_MS); in enterDeepSleep()
140 if (mICarServiceHelper != null) { in canInvokeHelper()
149 if (mICarServiceHelper != null) { in canInvokeHelper()
174 mICarServiceHelper = helper; in setCarServiceHelper()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
H A DCarOccupantZoneServiceTest.java369 mService.setCarServiceHelper(mICarServiceHelper); in testAssignProfileUserOnce()
373 mICarServiceHelper.mAllowlists.clear(); in testAssignProfileUserOnce()
385 mService.setCarServiceHelper(mICarServiceHelper); in testAssignProfileUserFailForStoppedUser()
389 mICarServiceHelper.mAllowlists.clear(); in testAssignProfileUserFailForStoppedUser()
399 mService.setCarServiceHelper(mICarServiceHelper); in testAssignProfileUserSwitch()
408 mICarServiceHelper.mAllowlists.clear(); in testAssignProfileUserSwitch()
420 mService.setCarServiceHelper(mICarServiceHelper); in testAssignProfileFollowedByUserSwitch()
429 mICarServiceHelper.mAllowlists.clear(); in testAssignProfileFollowedByUserSwitch()
445 mService.setCarServiceHelper(mICarServiceHelper); in testAssignProfileFollowedByNullUserAssignment()
454 mICarServiceHelper.mAllowlists.clear(); in testAssignProfileFollowedByNullUserAssignment()
[all …]
/aosp12/packages/services/Car/service/src/com/android/car/am/
H A DCarActivityService.java47 ICarServiceHelper mICarServiceHelper; field in CarActivityService
64 mICarServiceHelper = helper; in setICarServiceHelper()
82 helper = mICarServiceHelper; in setPersistentActivity()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/
H A DCarUserServiceTest.java182 @Mock private ICarServiceHelper mICarServiceHelper; field in CarUserServiceTest
312 mCarUserService.setCarServiceHelper(mICarServiceHelper); in testSendInitialUserToSystemServer()
340 mCarUserService.setCarServiceHelper(mICarServiceHelper); in testSetICarServiceHelper_withUxRestrictions()
341 verify(mICarServiceHelper).setSafetyMode(false); in testSetICarServiceHelper_withUxRestrictions()
344 verify(mICarServiceHelper).setSafetyMode(true); in testSetICarServiceHelper_withUxRestrictions()
352 mCarUserService.setCarServiceHelper(mICarServiceHelper); in testSetICarServiceHelper_withoutUxRestrictions()
353 verify(mICarServiceHelper).setSafetyMode(true); in testSetICarServiceHelper_withoutUxRestrictions()
356 verify(mICarServiceHelper).setSafetyMode(false); in testSetICarServiceHelper_withoutUxRestrictions()
1870 mCarUserService.setCarServiceHelper(mICarServiceHelper); in testCreateUserEvenWhenDisallowed_remoteException()
1888 mCarUserService.setCarServiceHelper(mICarServiceHelper); in testCreateUserEvenWhenDisallowed_success()
[all …]
/aosp12/packages/services/Car/service/src/com/android/car/
H A DCarOccupantZoneService.java186 private ICarServiceHelper mICarServiceHelper; field in CarOccupantZoneService
735 if (mICarServiceHelper == null) { // helper not set yet. in doSyncWithCarServiceHelper()
738 helperToUse = mICarServiceHelper; in doSyncWithCarServiceHelper()
740 mICarServiceHelper = helper; in doSyncWithCarServiceHelper()
H A DICarImpl.java158 private ICarServiceHelper mICarServiceHelper; field in ICarImpl
466 mICarServiceHelper = carServiceHelper; in setSystemServerConnections()
/aosp12/packages/services/Car/service/src/com/android/car/user/
H A DCarUserService.java262 private ICarServiceHelper mICarServiceHelper; field in CarUserService
804 iCarServiceHelper = mICarServiceHelper; in sendInitialUserToSystemServer()
975 mICarServiceHelper = helper; in setCarServiceHelper()
1006 if (mICarServiceHelper == null) { in setUxRestrictions()
1009 helper = mICarServiceHelper; in setUxRestrictions()
1371 if (mICarServiceHelper == null) { in createUserEvenWhenDisallowed()
1377 return mICarServiceHelper.createUserEvenWhenDisallowed(name, userType, flags); in createUserEvenWhenDisallowed()