Home
last modified time | relevance | path

Searched refs:VARIANT (Results 1 – 7 of 7) sorted by relevance

/tools/aadevtools/avd/
Dadd_avd_img.sh27 if [[ -z $VARIANT || -z $API_LEVEL || -z $OEM_AVD_ZIP ]]; then
66 AVD_DIR="$ANDROID_SDK_DIR/system-images/android-$API_LEVEL/$VARIANT"
88 sed "s/Pkg.Path/system-images;android-$API_LEVEL;$VARIANT;$ABI/" $PKG_XML_TEMPLATE > $PKG_XML_FILE
91 $SED_I_CMD "s/SystemImage.TagDisplay/$VARIANT/" $PKG_XML_FILE
93 $SED_I_CMD "s/Addon.VendorId/$VARIANT/" $PKG_XML_FILE
94 $SED_I_CMD "s/Addon.VendorDisplay/$VARIANT/" $PKG_XML_FILE
95 $SED_I_CMD "s/Display.Name/$VARIANT/" $PKG_XML_FILE
99 echo "ADDED: Hardware Category: Automotive, API Level: $API_LEVEL, ABI: $ABI, Target: $VARIANT"
Dtest_add_avd_img.sh22 VARIANT="avd_car" \
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DDeviceSelectionOptionsTest.java189 when(mMockDevice.getProperty(DeviceProperties.VARIANT)).thenReturn(null);
200 when(mMockDevice.getProperty(DeviceProperties.VARIANT)).thenReturn(null);
211 when(mMockDevice.getProperty(DeviceProperties.VARIANT)).thenReturn("variant");
225 when(mMockDevice.getProperty(DeviceProperties.VARIANT)).thenReturn(null);
235 when(mMockDevice.getProperty(DeviceProperties.VARIANT)).thenReturn(null);
253 when(mMockDevice.getProperty(DeviceProperties.VARIANT)).thenReturn(null);
DNativeDeviceTest.java3005 setGetPropertyExpectation(DeviceProperties.VARIANT, "variant"); in testGetProductVariant()
/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceProperties.java28 public static final String VARIANT = "ro.product.vendor.device"; field in DeviceProperties
DDeviceSelectionOptions.java741 String prop = getProperty(device, DeviceProperties.VARIANT); in getDeviceProductVariant()
DNativeDevice.java866 String prop = internalGetProperty(DeviceProperties.VARIANT, "variant", "Product variant"); in getProductVariant()