HomeSort by relevance Sort by last modified time
    Searched refs:archive (Results 151 - 175 of 863) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/libziparchive/
zip_archive_stream_entry.cc 19 // Read-only stream access to Zip Archive entries.
85 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_); local
87 if (!archive->mapped_zip.ReadAtOffset(data_.data(), bytes, offset_)) {
89 ALOGE("Error reading from archive fd: %s", strerror(errno));
207 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_); local
209 if (!archive->mapped_zip.ReadAtOffset(in_.data(), bytes, offset_)) {
211 ALOGE("Error reading from archive fd: %s", strerror(errno));
  /external/google-benchmark/
mingw.py 114 def unpack(archive, location, log = EmptyLogger()):
116 Unpacks a mingw-builds archive
119 log.info('unpacking %s', os.path.basename(archive))
120 cmd = [sevenzip, 'x', archive, '-o' + location, '-y']
127 Downloads and unpacks a mingw-builds archive
155 archive = os.path.join(location, filename)
156 with open(archive, 'wb') as out:
162 unpack(archive, location, log = log)
163 os.remove(archive)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/
mingw.py 114 def unpack(archive, location, log = EmptyLogger()):
116 Unpacks a mingw-builds archive
119 log.info('unpacking %s', os.path.basename(archive))
120 cmd = [sevenzip, 'x', archive, '-o' + location, '-y']
127 Downloads and unpacks a mingw-builds archive
155 archive = os.path.join(location, filename)
156 with open(archive, 'wb') as out:
162 unpack(archive, location, log = log)
163 os.remove(archive)
  /external/boringssl/src/util/fipstools/
inject-hash.go 15 // inject-hash parses an archive containing a file object file. It finds a FIPS
37 return fmt.Errorf("-in-archive and -in-object are mutually exclusive")
52 return fmt.Errorf("expected one file in archive, but found %d", len(ar))
64 return fmt.Errorf("exactly one of -in-archive or -in-object is required")
163 arInput := flag.String("in-archive", "", "Path to a .a file")
ar.go 15 // ar.go contains functions for parsing .a archive files.
27 // ParseAR parses an archive file from r and returns a map from filename to
37 return nil, errors.New("ar: not an archive file")
  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 36 IInArchive *archive = arc.Archive; local
46 // Most "pe" archives have same name of archive subfile "[0]" or ".rsrc_1".
48 // We will use top level archive name
81 RINOK(archive->GetNumberOfItems(&numItems));
97 RINOK(Archive_IsItem_AltStream(arc.Archive, i, item.IsAltStream));
202 result = archive->Extract(NULL, (UInt32)(Int32)-1, testMode, ecs);
204 if (archive->GetArchiveProperty(kpidPhySize, &prop) == S_OK)
208 result = archive->Extract(&realIndices.Front(), realIndices.Size(), testMode, ecs);
267 throw "there is no such archive";
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
archive.c 1 /* BFD back-end for archive files (libraries).
22 @setfilename archive-info
27 An archive (or library) is just another BFD. It has a symbol
30 The big difference between an archive BFD and an ordinary BFD
31 is that the archive doesn't have sections. Instead it has a
34 archive opened for reading will all be opened for reading. You
35 may put either input or output BFDs into an archive opened for
36 output; they will be handled correctly when the archive is closed.
39 the contents of an archive opened for input. You don't
40 have to read the entire archive if you don't wan
    [all...]
  /external/python/cpython2/Lib/distutils/tests/
test_sdist.py 339 archive = tarfile.open(archive_name)
341 for member in archive.getmembers():
345 archive.close()
357 archive = tarfile.open(archive_name)
363 for member in archive.getmembers():
366 archive.close()
492 archive = tarfile.open(archive_name)
494 filenames = [tarinfo.name for tarinfo in archive]
496 archive.close()
  /external/python/cpython3/Lib/distutils/tests/
test_sdist.py 424 archive = tarfile.open(archive_name)
426 filenames = [tarinfo.name for tarinfo in archive]
428 archive.close()
451 archive = tarfile.open(archive_name)
453 for member in archive.getmembers():
457 archive.close()
469 archive = tarfile.open(archive_name)
475 for member in archive.getmembers():
478 archive.close()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 347 archive = tarfile.open(archive_name)
349 for member in archive.getmembers():
353 archive.close()
365 archive = tarfile.open(archive_name)
371 for member in archive.getmembers():
374 archive.close()
500 archive = tarfile.open(archive_name)
502 filenames = [tarinfo.name for tarinfo in archive]
504 archive.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 347 archive = tarfile.open(archive_name)
349 for member in archive.getmembers():
353 archive.close()
365 archive = tarfile.open(archive_name)
371 for member in archive.getmembers():
374 archive.close()
500 archive = tarfile.open(archive_name)
502 filenames = [tarinfo.name for tarinfo in archive]
504 archive.close()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_sdist.py 321 archive = tarfile.open(archive_name)
323 for member in archive.getmembers():
327 archive.close()
339 archive = tarfile.open(archive_name)
345 for member in archive.getmembers():
348 archive.close()
  /frameworks/multidex/library/src/androidx/multidex/
MultiDexExtractor.java 213 * Compare current archive and crc with values stored in {@link SharedPreferences}. Should be
216 private static boolean isModified(Context context, File archive, long currentCrc,
219 return (prefs.getLong(prefsKeyPrefix + KEY_TIME_STAMP, NO_VALUE) != getTimeStamp(archive))
223 private static long getTimeStamp(File archive) {
224 long timeStamp = archive.lastModified();
233 private static long getZipCrc(File archive) throws IOException {
234 long computedValue = ZipUtil.getZipCrc(archive);
  /external/compiler-rt/make/
AppleBI.mk 95 # Rule to make fat archive
100 # rule to make each archive slice for dyld (which removes a few archive members)
110 # rule to make make archive for dyld
  /external/nanopb-c/tools/
make_mac_package.sh 18 git archive HEAD | tar x -C $DEST
  /external/python/cpython2/Launcher/
launcher_internal.cpp 24 read_directory(archive) -> files dict (new reference)
26 Given a path to a Zip archive, build a dict, mapping file names
27 (local to the archive, using SEP as a separator) to toc entries.
29 PyObject *read_directory(const char *archive);
33 PyObject *get_data(const char *archive, PyObject *toc_entry);
  /frameworks/support/jetifier/jetifier/preprocessor/src/main/kotlin/com/android/tools/build/jetifier/preprocessor/
ConfigGenerator.kt 21 import com.android.tools.build.jetifier.processor.archive.Archive
59 val library = Archive.Builder.extract(fileInDir)
63 val library = Archive.Builder.extract(it)
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ToastBarOperation.java 133 } else if (mAction == R.id.archive) {
162 } else if (mAction == R.id.archive) {
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
jetifier-processor-0.0.1.jar 
  /external/pdfium/core/fpdfapi/parser/
cpdf_object.h 95 virtual bool WriteTo(IFX_ArchiveStream* archive) const = 0;
  /external/syslinux/com32/elflink/ldlinux/
Makefile 17 LIBS = --whole-archive $(objdir)/com32/lib/libcom32min.a
  /frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
PomRewriteInZipTest.kt 24 import com.android.tools.build.jetifier.processor.archive.Archive
25 import com.android.tools.build.jetifier.processor.archive.ArchiveFile
70 val returnedArchive = Archive.Builder.extract(expectedFile)
104 val returnedArchive = Archive.Builder.extract(expectedFile)
  /toolchain/binutils/binutils-2.27/gold/
plugin.h 39 class Archive;
175 // Let the plugin manager save an archive for later rescanning.
176 // This takes ownership of the Archive pointer.
178 save_archive(Archive*);
300 // An archive or input group which may have to be rescanned if a
307 Archive* archive; member in union:gold::Plugin_manager::Rescannable::__anon4467
311 Rescannable(Archive* archive)
313 { this->u.archive = archive;
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/
carchive_test.go 177 "go", "install", "-i", "-buildmode=c-archive", "libgo")
182 "go", "build", "-buildmode=c-archive", filepath.Join("src", "libgo", "libgo.go"))
185 "go", "build", "-buildmode=c-archive", "-o", "libgo.a", "libgo")
206 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo2.a", "libgo2")
235 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo2.a", "libgo2")
272 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo2.a", "libgo2")
384 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo3.a", "libgo3")
416 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo4.a", "libgo4")
467 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-ldflags=-extar="+filepath.Join(dir, "testar"), "-o", "libgo4.a", "libgo4")
494 cmd := exec.Command("go", "install", "-i", "-buildmode=c-archive", "libgo"
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/
carchive_test.go 177 "go", "install", "-i", "-buildmode=c-archive", "libgo")
182 "go", "build", "-buildmode=c-archive", filepath.Join("src", "libgo", "libgo.go"))
185 "go", "build", "-buildmode=c-archive", "-o", "libgo.a", "libgo")
206 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo2.a", "libgo2")
235 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo2.a", "libgo2")
272 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo2.a", "libgo2")
384 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo3.a", "libgo3")
416 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo4.a", "libgo4")
467 cmd := exec.Command("go", "build", "-buildmode=c-archive", "-ldflags=-extar="+filepath.Join(dir, "testar"), "-o", "libgo4.a", "libgo4")
494 cmd := exec.Command("go", "install", "-i", "-buildmode=c-archive", "libgo"
    [all...]

Completed in 641 milliseconds

1 2 3 4 5 67 8 91011>>