Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/pm/
DVendorServiceInfoTest.java40 VendorServiceInfo.parse(""); in emptyString()
46 VendorServiceInfo.parse(SERVICE_NAME + "#user=system#bind=bind"); in multipleHashTags()
52 VendorServiceInfo.parse(SERVICE_NAME + "#user=system,unknownKey=blah"); in unknownArg()
58 VendorServiceInfo.parse("invalidComponentName"); in invalidComponentName()
63 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME); in testServiceNameWithDefaults()
75 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=start"); in startService()
84 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=bind"); in bindService()
91 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=startForeground"); in startServiceInForeground()
98 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=asap"); in triggerAsap()
104 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=userUnlocked"); in triggerUnlocked()
[all …]
/packages/services/Car/service/src/com/android/car/pm/
DVendorServiceController.java61 private final List<VendorServiceInfo> mVendorServiceInfos = new ArrayList<>();
170 for (VendorServiceInfo service: mVendorServiceInfos) { in startOrBindServicesForUser()
203 private void startOrBindService(VendorServiceInfo service, UserHandle user) { in startOrBindService()
212 private void stopOrUnbindService(VendorServiceInfo service, UserHandle user) { in stopOrUnbindService()
238 VendorServiceInfo service = VendorServiceInfo.parse(rawServiceInfo); in loadXmlConfiguration()
264 private final VendorServiceInfo mVendorServiceInfo;
272 CarUserManagerHelper userManagerHelper, VendorServiceInfo vendorServiceInfo, in VendorServiceConnection()
399 private final VendorServiceInfo mVendorServiceInfo;
401 private ConnectionKey(VendorServiceInfo service, UserHandle user) { in ConnectionKey()
406 static ConnectionKey of(VendorServiceInfo service, UserHandle user) { in of()
DVendorServiceInfo.java31 class VendorServiceInfo { class
72 private VendorServiceInfo(ComponentName componentName, @Bind int bind, @UserScope int userScope, in VendorServiceInfo() method in VendorServiceInfo
110 static VendorServiceInfo parse(String rawServiceInfo) { in parse()
175 return new VendorServiceInfo(cn, bind, userScope, trigger); in parse()