Home
last modified time | relevance | path

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

/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DImsCallForwardInfoTest.java40 int serviceClass = 1; // CommandsInterface#SERVICE_CLASS_VOICE in createParcelUnparcel() local
43 ImsCallForwardInfo info = new ImsCallForwardInfo(condition, status, toA, serviceClass, in createParcelUnparcel()
56 assertEquals(serviceClass, unparceledInfo.getServiceClass()); in createParcelUnparcel()
DImsSsDataTest.java49 int serviceClass = 1; in testParcelUnparcel() local
52 ImsSsData data = new ImsSsData(serviceType, requestType, teleserviceType, serviceClass, in testParcelUnparcel()
/cts/tests/tests/binder_ndk/src/android/binder/cts/
DSyncTestServiceConnection.java42 public SyncTestServiceConnection(Context context, Class serviceClass) { in SyncTestServiceConnection() argument
44 mServiceProviderClass = serviceClass; in SyncTestServiceConnection()
DJavaClientTest.java70 …public JavaClientTest(Class serviceClass, String expectedName, boolean shouldBeRemote, boolean sho… in JavaClientTest() argument
71 mServiceClass = serviceClass; in JavaClientTest()
/cts/tests/tests/media/src/android/media/cts/
DRemoteService.java135 @NonNull Class<? extends RemoteService> serviceClass, int testId) in Invoker() argument
153 Intent intent = new Intent(mContext, serviceClass); in Invoker()
155 assertTrue("Failed to bind to service " + serviceClass, in Invoker()
/cts/common/device-side/bedstead/dpmwrapper/src/main/java/com/android/bedstead/dpmwrapper/
DTestAppSystemServiceFactory.java148 private static <T> T getSystemService(Context context, Class<T> serviceClass, in getSystemService() argument
155 if (serviceClass.equals(DevicePolicyManager.class)) { in getSystemService()
161 } else if (serviceClass.equals(WifiManager.class)) { in getSystemService()
167 } else if (serviceClass.equals(HardwarePropertiesManager.class)) { in getSystemService()
173 } else if (serviceClass.equals(UserManager.class)) { in getSystemService()
180 throw new IllegalArgumentException("invalid service class: " + serviceClass); in getSystemService()
/cts/hostsidetests/appbinding/hostside/src/com/android/cts/appbinding/
DAppBindingHostTest.java229 String serviceClass, int userId) throws Throwable { in installAndCheckBound() argument
236 checkBound(packageName, serviceClass, userId); in installAndCheckBound()
239 private void checkBound(String packageName, String serviceClass, int userId) throws Throwable { in checkBound() argument
241 runCommand("dumpsys activity service " + packageName + "/" + serviceClass, in checkBound()
243 + Pattern.quote("[" + serviceClass + "]")); in checkBound()
254 + serviceClass + ",bound,connected,")); in checkBound()
/cts/hostsidetests/appsecurity/test-apps/UseProcessSuccess/src/com/android/cts/useprocess/
DAccessNetworkTest.java144 private void doNetworkTest(Class serviceClass) { in doNetworkTest() argument
147 Intent intent = new Intent(context, serviceClass); in doNetworkTest()