HomeSort by relevance Sort by last modified time
    Searched refs:abiType (Results 1 - 13 of 13) sorted by null

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SystemImage.java 41 * @param abiType The ABI type. For example, one of {@link SdkConstants#ABI_ARMEABI},
44 public SystemImage(File location, LocationType locationType, String abiType) {
47 mAbiType = abiType;
56 * @param abiType The ABI type. For example, one of {@link SdkConstants#ABI_ARMEABI},
65 String abiType) {
67 mAbiType = abiType;
76 location = FileOp.append(target.getLocation(), SdkConstants.OS_IMAGES_FOLDER, abiType);
85 location = getCanonicalFolder(sdkManager.getLocation(), target.getVersion(), abiType);
99 * Such an image is located in {@code SDK/system-images/android-N/abiType}.
104 * @param abiType An optional ABI type. If null, the parent directory is returned
    [all...]
IAndroidTarget.java 252 * Returns the system image information for the given {@code abiType}.
254 * @param abiType An ABI type string.
255 * @return An existing {@link ISystemImage} for the requested {@code abiType}
258 public ISystemImage getSystemImage(String abiType);
AddOnTarget.java 147 public ISystemImage getSystemImage(String abiType) {
149 if (sysImg.getAbiType().equals(abiType)) {
PlatformTarget.java 142 public ISystemImage getSystemImage(String abiType) {
144 if (sysImg.getAbiType().equals(abiType)) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
AvdInfo.java 72 * @param abiType Name of the abi.
80 String abiType,
82 this(name, iniFile, folderPath, targetHash, target, abiType, properties, AvdStatus.OK);
96 * @param abiType Name of the abi.
105 String abiType,
113 mAbiType = abiType;
AvdManager.java 466 * @param abiType the abi type of the AVD
483 String abiType,
531 ISystemImage systemImage = target.getSystemImage(abiType);
541 systemImage = target.getParent().getSystemImage(abiType);
552 abiType);
571 if (setImagePathProperties(target, abiType, values, log) == false) {
601 values.put(AVD_INI_ABI_TYPE, abiType);
604 if (SdkConstants.ABI_ARMEABI.equals(abiType)) {
606 } else if (SdkConstants.ABI_ARMEABI_V7A.equals(abiType)) {
609 } else if (SdkConstants.ABI_INTEL_ATOM.equals(abiType)) {
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
MockAddonPackage.java 114 public ISystemImage getSystemImage(String abiType) {
115 if (SdkConstants.ABI_ARMEABI.equals(abiType)) {
MockPlatformTarget.java 75 public ISystemImage getSystemImage(String abiType) {
76 if (SdkConstants.ABI_ARMEABI.equals(abiType)) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SystemImagePackage.java 121 String abiType = abiDir.getName();
134 abiType = abi;
163 String.format("Broken %1$s System Image", getAbiDisplayNameInternal(abiType)));
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/
SdkManagerTestCase.java 203 private void makeFakeSysImgInternal(File imagesDir, String abiType) throws IOException {
211 out.write(PkgProps.SYS_IMG_ABI + "=" + abiType + "\n");
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfoTest.java 245 public ISystemImage getSystemImage(String abiType) {
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdCreationDialog.java 716 String abiType = AvdInfo.getPrettyAbiType(mEditAvdInfo.getAbiType());
719 if (abiType.equals(mAbiTypeCombo.getItem(i))) {
    [all...]

Completed in 192 milliseconds