/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
RepoSourcesAdapter.java | 231 * Returns the list of archives for the given package, eventually filtering it
232 * to only show the compatible archives.
235 Archive[] archives = pkg.getArchives();
local 237 for (Archive archive : archives) {
239 // if we only want the compatible archives, then we just take the first
240 // one. it's unlikely there are 2 compatible archives for the same
248 return archives;
|
RemotePackagesPage.java | 106 mColumnSource.setText("Sites, Packages and Archives");
243 * When checking a package, only its compatible archives are checked.
262 // When selecting, we want to only select compatible archives.
287 // Get the list of selected archives
288 ArrayList<Archive> archives = new ArrayList<Archive>();
local 291 archives.add((Archive) element);
300 // are compatible archives
301 for (Archive a : archives) {
305 // compatible archives children are selected. In practice we'll rarely
315 ArrayList<Archive> archives = new ArrayList<Archive>(); local [all...] |
UpdaterLogic.java | 62 ArrayList<ArchiveInfo> archives = new ArrayList<ArchiveInfo>();
local 75 archives,
83 return archives;
88 * and adds them to the list of archives to install.
90 public void addNewPlatforms(ArrayList<ArchiveInfo> archives,
173 archives,
189 archives,
218 // deal with more than one level of dependencies and installed archives
434 // Look in archives already scheduled for install
448 // Otherwise look in the selected archives. [all...] |
UpdaterData.java | 314 * @param result The archives to install. Incompatible ones will be skipped.
323 mTaskFactory.start("Installing Archives", new ITask() {
328 monitor.setDescription("Preparing to install archives");
333 // Mark all current local archives as already installed.
516 * <li>If selectedArchives is not null, this represents a list of archives/packages that
530 ArrayList<ArchiveInfo> archives = ul.computeUpdates(
local 536 ul.addNewPlatforms(archives, getSources(), getLocalSdkParser().getPackages());
539 // TODO if selectedArchives is null and archives.len==0, find if there's
542 UpdateChooserDialog dialog = new UpdateChooserDialog(getWindowShell(), this, archives);
|
LocalPackagesPage.java | 272 Archive[] archives = p.getArchives();
local 273 if (archives.length == 1 && archives[0] != null && archives[0].isLocal()) {
274 Archive archive = archives[0];
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
Package.java | 36 * A package has some attributes (revision, description) and a list of archives
217 * Parses an XML node to process the <archives> element.
220 ArrayList<Archive> archives = new ArrayList<Archive>();
local 231 archives.add(parseArchive(child));
236 return archives.toArray(new Archive[archives.size()]);
240 * Parses one <archive> element from an <archives> container.
321 * Returns the archives defined in this package.
|
RepoSource.java | 535 // - an <archives> element with one or more <archive> elements inside
542 Node archives = findChild(tool, null, prefix, SdkRepository.NODE_ARCHIVES);
local 544 if (revision == null || archives == null) {
569 while ((archive = findChild(archives,
[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. */
|