Searched defs:archives (Results 1 - 8 of 8) sorted by relevance

/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/archives/
H A DArchiveTest.java17 package com.android.sdklib.internal.repository.archives;
19 import com.android.sdklib.internal.repository.archives.Archive;
20 import com.android.sdklib.internal.repository.archives.Archive.Arch;
21 import com.android.sdklib.internal.repository.archives.Archive.Os;
H A DArchiveInstallerTest.java17 package com.android.sdklib.internal.repository.archives;
23 import com.android.sdklib.internal.repository.archives.Archive.Arch;
24 import com.android.sdklib.internal.repository.archives.Archive.Os;
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
H A DArchiveReplacement.java17 package com.android.sdklib.internal.repository.archives;
51 * This <em>may</em> be null for missing archives.
H A DArchiveInstaller.java17 package com.android.sdklib.internal.repository.archives;
129 // In detail mode, give us a way to force install of incompatible archives.
H A DArchive.java17 package com.android.sdklib.internal.repository.archives;
37 * A package has some attributes (revision, description) and a list of archives
284 * Always return null for remote archives.
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
H A DSdkUpdaterChooserDialog.java21 import com.android.sdklib.internal.repository.archives.Archive;
89 * List of all archives to be installed with dependency information.
93 * limited number of archives to deal with (e.g. < 10 now). We might want to revisit
106 * @param archives The archives to be installed
110 Collection<ArchiveInfo> archives) {
113 mArchives = archives;
122 * Returns the results, i.e. the list of selected new archives to install.
124 * except only accepted archives are present.
412 // Only missing archives hav
108 SdkUpdaterChooserDialog(Shell parentShell, UpdaterData updaterData, Collection<ArchiveInfo> archives) argument
[all...]
H A DSdkUpdaterLogic.java22 import com.android.sdklib.internal.repository.archives.Archive;
68 * Retrieves an unfiltered list of all remote archives.
69 * The archives are guaranteed to be compatible with the current platform.
80 ArrayList<Archive> archives = new ArrayList<Archive>();
93 for (int i = archives.size() - 1; i >= 0; i--) {
94 Package pkgFound = archives.get(i).getParentPackage();
98 archives.remove(i);
106 archives.add(a);
117 for (Archive a : archives) {
120 archives,
214 addNewPlatforms( Collection<ArchiveInfo> archives, SdkSources sources, Package[] localPkgs, boolean includeAll) argument
[all...]
H A DUpdaterData.java32 import com.android.sdklib.internal.repository.archives.Archive;
33 import com.android.sdklib.internal.repository.archives.ArchiveInstaller;
410 * @param archives The archives to install. Incompatible ones will be skipped.
412 * @return A list of archives that have been installed. Can be empty but not null.
415 protected List<Archive> installArchives(final List<ArchiveInfo> archives, final int flags) { argument
425 // sort all archives based on their dependency level.
426 Collections.sort(archives, new InstallOrderComparator());
433 monitor.setProgressMax(1 + archives.size() * progressPerArchive);
434 monitor.setDescription("Preparing to install archives");
[all...]

Completed in 137 milliseconds