HomeSort by relevance Sort by last modified time
    Searched full:archive (Results 126 - 150 of 1570) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/include/utils/
ZipFileRO.h 52 * Open a Zip archive for reading.
83 * Open an archive.
96 * Return the #of entries in the Zip archive.
105 * the archive needs to avoid making ordering assumptions. We take
107 * rather than the Nth entry in the archive.
136 * Create a new FileMap object that maps a subset of the archive. For
210 /* parse the archive, prepping internal structures */
231 /* open Zip archive */
246 /* number of entries in the Zip archive */
249 /* CD directory offset in the Zip archive */
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ArchiveInstaller.java 45 * Performs the work of installing a given {@link Archive}.
77 * A "replacement" is composed of the actual new archive to install
79 * archive being replaced (c.f. {@link ArchiveReplacement#getReplaced()}.
82 * The new archive to install will be skipped if it is incompatible.
84 * @return True if the archive was installed, false otherwise.
92 Archive newArchive = archiveInfo.getNewArchive();
107 monitor.log("Skipping already installed archive: %1$s for %2$s",
114 monitor.log("Skipping incompatible archive: %1$s for %2$s",
125 // Delete the temp archive if it exists, only on success
135 * Downloads an archive and returns the temp file with it.
    [all...]
MinToolsPackage.java 19 import com.android.sdklib.internal.repository.Archive.Arch;
20 import com.android.sdklib.internal.repository.Archive.Os;
59 * Manually create a new package with one archive and the given attributes.
61 * one archive which URL is the actual target location.
65 * By design, this creates a package with one and only one archive.
  /external/llvm/lib/Archive/
ArchiveWriter.cpp 1 //===-- ArchiveWriter.cpp - Write LLVM archive files ----------------------===//
10 // Builds up an LLVM archive file (.a) containing LLVM bitcode.
68 // Create an empty archive.
69 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
70 Archive* result = new Archive(FilePath, C);
81 Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
155 // Insert a file into the archive before some other member. This also takes care
158 Archive::addFileBefore(const sys::Path& filePath, iterator where
    [all...]
Makefile 1 ##===- lib/Archive/Makefile --------------------------------*- Makefile -*-===##
13 # We only want an archive so only those modules actually used by a tool are
ArchiveInternals.h 1 //===-- lib/Archive/ArchiveInternals.h -------------------------*- C++ -*-===//
10 // Internal implementation header for LLVM Archive files.
17 #include "llvm/Bitcode/Archive.h"
38 /// The header precedes each file member in the archive. This structure is
41 /// @brief Archive File Member Header
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman1/
RemotePackagesPage.java 20 import com.android.sdklib.internal.repository.Archive;
264 Object elem = event.getElement(); // Will be Archive or Package or RepoSource
295 for (Object archive : provider.getChildren(pkg)) {
296 if (archive instanceof Archive) {
297 mTreeViewerSources.setChecked(archive, ((Archive) archive).isCompatible());
308 ArrayList<Archive> archives = new ArrayList<Archive>();
    [all...]
  /external/llvm/test/Archive/
README.txt 1 test/Regression/Archive
15 Each type of test is run on each of these archive files. These archives each
  /libcore/luni/src/main/java/java/net/
JarURLConnection.java 30 * archive file or to an entry of such a file. {@code jar:} URLs are specified
31 * as follows: <i>jar:{archive-url}!/{entry}</i> where "!/" is called a
32 * separator. This separator is important to determine if an archive or an entry
33 * of an archive is referred.
36 * <li>Archive: {@code jar:http://www.example.com/applets/archive.jar!/}</li>
38 * jar:http://www.example.com/applets/archive.jar!/test.class}</li>
40 * jar:http://www.example.com/applets/archive.jar!/applets/}</li>
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SignedJarBuilder.java 140 * Checks a file for inclusion in a Jar archive.
141 * @param archivePath the archive file path of the entry
151 * the archive will not be signed.
152 * @param out the {@link OutputStream} where to write the Jar archive.
153 * @param key the {@link PrivateKey} used to sign the archive, or <code>null</code>.
154 * @param certificate the {@link X509Certificate} used to sign the archive, or
178 * Writes a new {@link File} into the archive.
180 * @param jarPath the filepath inside the archive.
200 * Copies the content of a Jar/Zip archive into the receiver archive
    [all...]
  /external/webkit/Source/WebCore/loader/archive/
ArchiveFactory.cpp 47 typedef PassRefPtr<Archive> RawDataCreationFunction(SharedBuffer*);
50 // The create functions in the archive classes return PassRefPtr to concrete subclasses
51 // of Archive. This adaptor makes the functions have a uniform return type.
52 template <typename ArchiveClass> static PassRefPtr<Archive> archiveFactoryCreate(SharedBuffer* buffer)
80 PassRefPtr<Archive> ArchiveFactory::create(SharedBuffer* data, const String& mimeType)
  /external/webkit/Source/WebKit/mac/Misc/
WebNSPasteboardExtras.h 73 archive:(WebArchive *)archive
80 archive:(WebArchive *)archive
83 - (void)_web_writePromisedRTFDFromArchive:(WebArchive*)archive containsImage:(BOOL)containsImage;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tar.h 24 /* A tar archive consists of 512-byte blocks.
25 Each file in the archive has a header block followed by 0+ data blocks.
26 Two blocks of NUL bytes indicate the end of the archive. */
36 in a tar archive.
69 length can not be stored in a tar archive. */
  /external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 130 RetainPtr<CFDictionaryRef> LegacyWebArchive::createPropertyListRepresentation(Archive* archive)
134 RetainPtr<CFDictionaryRef> mainResourceDict = createPropertyListRepresentation(archive->mainResource(), MainResource);
140 RetainPtr<CFMutableArrayRef> subresourcesArray(AdoptCF, CFArrayCreateMutable(0, archive->subresources().size(), &kCFTypeArrayCallBacks));
141 const Vector<RefPtr<ArchiveResource> >& subresources(archive->subresources());
152 RetainPtr<CFMutableArrayRef> subframesArray(AdoptCF, CFArrayCreateMutable(0, archive->subframeArchives().size(), &kCFTypeArrayCallBacks));
153 const Vector<RefPtr<Archive> >& subframeArchives(archive->subframeArchives());
159 LOG(Archives, "LegacyWebArchive - Failed to create property list for subframe archive");
173 // If the ResourceResponseVersion (passed in as responseDataType) exists at all, this is a "new" web archive that w
267 RefPtr<LegacyWebArchive> archive = create(); local
570 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList); local
    [all...]
  /build/tools/zipalign/
ZipFile.h 18 // General-purpose Zip archive access. This class allows both reading and
33 * Manipulate a Zip archive.
37 * The correct way to update a file archive is to make all changes to a
38 * copy of the archive in a temporary file, and then unlink/rename over
42 * an unusable Zip archive.
58 * Open a new or existing archive.
69 * Add a file to the end of the archive. Specify whether you want the
72 * If "storageName" is specified, the archive will use that instead
131 * from the archive or our internal data structures until flush() is
160 * Get the Nth entry in the archive
    [all...]
  /external/valgrind/main/
Makefile.tool.am 109 -Wl,--whole-archive \
111 -Wl,--no-whole-archive
114 -Wl,--whole-archive \
116 -Wl,--no-whole-archive
119 -Wl,--whole-archive \
121 -Wl,--no-whole-archive
124 -Wl,--whole-archive \
126 -Wl,--no-whole-archive
129 -Wl,--whole-archive \
131 -Wl,--no-whole-archive
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.h 18 // General-purpose Zip archive access. This class allows both reading and
33 * Manipulate a Zip archive.
37 * The correct way to update a file archive is to make all changes to a
38 * copy of the archive in a temporary file, and then unlink/rename over
42 * an unusable Zip archive.
58 * Open a new or existing archive.
69 * Add a file to the end of the archive. Specify whether you want the
72 * If "storageName" is specified, the archive will use that instead
131 * from the archive or our internal data structures until flush() is
160 * Get the Nth entry in the archive
    [all...]
  /dalvik/libdex/
CmdUtils.cpp 34 * Extract "classes.dex" from archive file.
43 ZipArchive archive; local
48 if (dexZipOpenArchive(zipFileName, &archive) != 0) {
50 fprintf(stderr, "Unable to open '%s' as zip archive\n",
67 entry = dexZipFindEntry(&archive, kFileToExtract);
77 if (dexZipExtractEntryToFile(&archive, entry, fd) != 0) {
89 dexZipCloseArchive(&archive);
  /dalvik/dexgen/src/com/android/dexgen/util/
DexJarMaker.java 46 /** Packs previously added files into a single jar archive. */
72 * Adds indicated file to the requested archive.
75 * @param target {@code non-null;} target jar archive
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLObjectElement04.js 78 The archive attribute specifies a space-separated list of archives.
80 Retrieve the archive attribute of the first OBJECT element and examine
103 varchive = testNode.archive;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLObjectElement04.js 78 The archive attribute specifies a space-separated list of archives.
80 Retrieve the archive attribute of the first OBJECT element and examine
103 varchive = testNode.archive;
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
MockPlatformPackage.java 27 * By design, this package contains one and only one archive.
37 * By design, this package contains one and only one archive.
49 * By design, this package contains one and only one archive.
  /ndk/build/core/
ndk-common.sh 592 # Unpack a given archive
594 # $1: archive file path
599 local ARCHIVE="$1"
610 case "$ARCHIVE" in
612 (cd $DIR && run unzip $ZIPFLAGS "$ARCHIVE")
615 run tar $TARFLAGS "$ARCHIVE" -C $DIR
618 run tar z$TARFLAGS "$ARCHIVE" -C $DIR
621 run tar j$TARFLAGS "$ARCHIVE" -C $DIR
624 panic "Cannot unpack archive with unknown extension: $ARCHIVE"
    [all...]
  /external/elfutils/libasm/
ChangeLog 23 * Moved to CVS archive.
  /external/elfutils/libelf-po/
libelf.pot 76 msgid "invalid fmag field in archive header"
80 msgid "invalid archive file"
84 msgid "descriptor is not for an archive"
124 msgid "archive/member fildes mismatch"

Completed in 1611 milliseconds

1 2 3 4 56 7 8 91011>>