Home
last modified time | relevance | path

Searched refs:productName (Results 1 – 5 of 5) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
DUSBDeviceInfoHelper.java85 public static String extractDeviceName(String productName) { in extractDeviceName() argument
86 return productName.startsWith(kUSBPrefix) in extractDeviceName()
87 ? productName.substring(kUSBPrefix.length()) in extractDeviceName()
88 : productName; in extractDeviceName()
DProfileManager.java187 public PeripheralProfile getProfile(String productName) { in getProfile() argument
189 if (productName.equals(profile.getProductName())) { in getProfile()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DUSBAudioPeripheralActivity.java100 String productName = ""; in showPeripheralStatus() local
102 productName = mOutputDevInfo.getProductName().toString(); in showPeripheralStatus()
104 productName = mInputDevInfo.getProductName().toString(); in showPeripheralStatus()
108 ctrlText = productName + " - UNSUPPORTED"; in showPeripheralStatus()
110 ctrlText = productName; in showPeripheralStatus()
/cts/tests/tests/media/src/android/media/cts/
DEnumDevicesTest.java123 CharSequence productName = deviceInfo.getProductName(); in test_devicesInfoFields() local
124 assertNotNull(productName); in test_devicesInfoFields()
125 assertTrue(productName.length() != 0); in test_devicesInfoFields()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DActivityAndWindowManagersState.java218 <T> T waitForValidProduct(Supplier<T> supplier, String productName, Predicate<T> tester) { in waitForValidProduct() argument
227 logAlways("***Waiting for valid " + productName + "... retry=" + retry); in waitForValidProduct()