/sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/ |
UpdaterDataTest.java | 58 ArrayList<ArchiveInfo> archives = new ArrayList<ArchiveInfo>(); local 66 archives.add(ai1); 67 archives.add(ai2); 69 m._installArchives(archives); 81 ArrayList<ArchiveInfo> archives = new ArrayList<ArchiveInfo>(); local 89 archives.add(ai2); 90 archives.add(ai1); 92 m._installArchives(archives);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman1/ |
RemotePackagesPage.java | 258 * When checking a package, only its compatible archives are checked. 277 // When selecting, we want to only select compatible archives 307 // Get the list of selected archives 308 ArrayList<Archive> archives = new ArrayList<Archive>(); local 311 archives.add((Archive) element); 320 // are compatible archives 321 for (Archive a : archives) { 325 // compatible archives children are selected. In practice we'll rarely 335 ArrayList<Archive> archives = new ArrayList<Archive>(); local 338 archives.add((Archive) element) [all...] |
RepoSourcesAdapter.java | 256 * Returns the list of archives for the given package, eventually filtering it
257 * to only show the compatible archives.
260 Archive[] archives = pkg.getArchives();
local 262 for (Archive archive : archives) {
264 // if we only want the compatible archives, then we just take the first
265 // one. it's unlikely there are 2 compatible archives for the same
273 return archives;
|
LocalPackagesPage.java | 249 Archive[] archives = p.getArchives();
local 250 if (archives.length == 1 && archives[0] != null && archives[0].isLocal()) {
251 Archive archive = archives[0];
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
ExtraPackage.java | 632 Archive[] archives = getArchives();
local 633 if (archives.length == 1 && archives[0].isLocal()) {
634 File path = new File(archives[0].getLocalOsPath());
|
SdkRepoSource.java | 271 // - an <archives> element with one or more <archive> elements inside
283 Node archives = findChild(element, null, prefix, RepoConstants.NODE_ARCHIVES);
local 285 if (revision == null || archives == null) {
323 while ((archive = findChild(archives,
|
Package.java | 40 * A package has some attributes (revision, description) and a list of archives
158 * classes to override the archives created.
248 * Parses an XML node to process the <archives> element.
252 ArrayList<Archive> archives = new ArrayList<Archive>();
local 263 archives.add(parseArchive(child));
268 return archives.toArray(new Archive[archives.size()]);
272 * Parses one <archive> element from an <archives> container.
353 * Returns the archives defined in this package.
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
SdkUpdaterLogic.java | 78 List<ArchiveInfo> archives = new ArrayList<ArchiveInfo>();
local 85 // If we do not have a specific list of archives to install (that is the user
102 archives,
114 archives,
120 return archives;
125 * and adds them to the list of archives to install.
132 * @param archives The in-out list of archives to install. Typically the
133 * list is not empty at first as it should contain any archives that is
142 Collection<ArchiveInfo> archives,
[all...] |
UpdaterData.java | 404 * @param archives The archives to install. Incompatible ones will be skipped.
406 * @return A list of archives that have been installed. Can be empty but not null.
409 protected List<Archive> installArchives(final List<ArchiveInfo> archives, final int flags) {
419 // sort all archives based on their dependency level.
420 Collections.sort(archives, new InstallOrderComparator());
422 mTaskFactory.start("Installing Archives", new ITask() {
426 monitor.setProgressMax(1 + archives.size() * progressPerArchive);
427 monitor.setDescription("Preparing to install archives");
434 // Mark all current local archives as already installed. 730 List<ArchiveInfo> archives = ul.computeUpdates( local 775 List<ArchiveInfo> archives = ul.computeUpdates( local 800 List<ArchiveInfo> archives = getRemoteArchives_NoGUI(includeObsoletes); local 847 List<ArchiveInfo> archives = getRemoteArchives_NoGUI(includeObsoletes); local [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
PackagesPage.java | 104 TOGGLE_SHOW_ARCHIVES (SWT.CHECK, "Show Archives Details"), 743 * When checking a package, only its compatible archives are checked. 751 // When selecting, we want to only select compatible archives and expand the super nodes. 1046 ArrayList<Archive> archives = new ArrayList<Archive>(); local 1135 final Map<Archive, PkgItem> archives = new TreeMap<Archive, PkgItem>(); local 1558 Archive[] archives = ((PkgItem) parentElement).getArchives(); local [all...] |
/ndk/build/core/ |
definitions.mk | 171 # Function : link-whole-archives 174 # Usage : $(call link-whole-archives,<libraries>) 181 link-whole-archives = $(if $(strip $1),$(call link-whole-archive-flags,$1)) [all...] |
/external/elfutils/src/ |
ld.h | 31 /* Methods for handling archives. */ 96 /* How to extract elements from archives. */ 713 /* List of all archives participating, in this order. */ 714 struct usedfiles *archives; member in struct:ld_state 781 /* How to extract elements from archives. */
|