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.java39 VendorServiceInfo.parse(""); in emptyString()
45 VendorServiceInfo.parse(SERVICE_NAME + "#user=system#bind=bind"); in multipleHashTags()
51 VendorServiceInfo.parse(SERVICE_NAME + "#user=system,unknownKey=blah"); in unknownArg()
57 VendorServiceInfo.parse("invalidComponentName"); in invalidComponentName()
62 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME); in testServiceNameWithDefaults()
74 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=start"); in startService()
83 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=bind"); in bindService()
90 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=startForeground"); in startServiceInForeground()
97 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=asap"); in triggerAsap()
103 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=userUnlocked"); in triggerUnlocked()
[all …]
/packages/services/Car/service/src/com/android/car/pm/
DVendorServiceController.java64 private final List<VendorServiceInfo> mVendorServiceInfos = new ArrayList<>();
193 for (VendorServiceInfo service: mVendorServiceInfos) { in startOrBindServicesForUser()
213 private void startOrBindService(VendorServiceInfo service, UserHandle user) { in startOrBindService()
222 private void stopOrUnbindService(VendorServiceInfo service, UserHandle user) { in stopOrUnbindService()
248 VendorServiceInfo service = VendorServiceInfo.parse(rawServiceInfo); in loadXmlConfiguration()
274 private final VendorServiceInfo mVendorServiceInfo;
281 VendorServiceInfo vendorServiceInfo, UserHandle user) { in VendorServiceConnection()
406 private final VendorServiceInfo mVendorServiceInfo;
408 private ConnectionKey(VendorServiceInfo service, UserHandle user) { in ConnectionKey()
413 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()