Searched refs:archive (Results 26 - 50 of 131) sorted by relevance

123456

/external/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.h15 HRESULT GetArchiveItemBoolProp(IInArchive *archive, UInt32 index, PROPID propID, bool &result);
16 HRESULT IsArchiveItemFolder(IInArchive *archive, UInt32 index, bool &result);
H A DOpenArchive.cpp21 HRESULT GetArchiveItemBoolProp(IInArchive *archive, UInt32 index, PROPID propID, bool &result) argument
25 RINOK(archive->GetProperty(index, propID, &prop));
33 HRESULT IsArchiveItemFolder(IInArchive *archive, UInt32 index, bool &result) argument
35 return GetArchiveItemBoolProp(archive, index, kpidIsDir, result);
267 CMyComPtr<IInArchive> archive; local
270 RINOK(codecs->CreateInArchive(FormatIndex, archive));
271 if (!archive)
277 archive.QueryInterface(IID_ISetCompressCodecsInfo, (void **)&setCompressCodecsInfo);
289 result = archive->Open(stream, &kMaxCheckStartPosition, callback);
293 archive
[all...]
H A DUpdate.cpp36 "update operations are not supported for this archive";
258 // It works incorrectly for update command if archive has some non-default extension!
304 IInArchive *archive,
321 if (archive != NULL)
323 CMyComPtr<IInArchive> archive2 = archive;
519 IInArchive *archive = arc.Archive; local
520 RINOK(archive->GetNumberOfItems(&numItems));
527 RINOK(IsArchiveItemFolder(archive, i, ai.IsDir));
533 RINOK(archive->GetProperty(i, kpidSize, &prop));
541 RINOK(archive
301 Compress( CCodecs *codecs, const CActionSet &actionSet, IInArchive *archive, const CCompressionMethodMode &compressionMethod, CArchivePath &archivePath, const CObjectVector<CArcItem> &arcItems, bool shareForWrite, bool stdInMode, bool stdOutMode, const CDirItems &dirItems, bool sfxMode, const UString &sfxModule, const CRecordVector<UInt64> &volumesSizes, CTempFiles &tempFiles, CUpdateErrorInfo &errorInfo, IUpdateCallbackUI *callback) argument
564 UpdateWithItemLists( CCodecs *codecs, CUpdateOptions &options, IInArchive *archive, const CObjectVector<CArcItem> &arcItems, CDirItems &dirItems, CTempFiles &tempFiles, CUpdateErrorInfo &errorInfo, IUpdateCallbackUI2 *callback) argument
[all...]
H A DArchiveExtractCallback.cpp162 IInArchive *archive = _arc->Archive; local
164 RINOK(IsArchiveItemFolder(archive, index, _fi.IsDir));
170 RINOK(archive->GetProperty(index, kpidPosition, &prop));
180 RINOK(GetArchiveItemBoolProp(archive, index, kpidEncrypted, _encrypted));
201 RINOK(archive->GetProperty(index, kpidAttrib, &prop));
/external/deqp/framework/common/
H A DtcuImageIO.cpp52 * \param archive Resource archive
55 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName) argument
60 loadPNG(dst, archive, fileName);
79 * \param archive Resource archive
82 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName) argument
84 de::UniquePtr<Resource> resource(archive.getResource(fileName));
225 * \param archive Resource archive
228 loadPKM(CompressedTexture& dst, const tcu::Archive& archive, const char* fileName) argument
[all...]
H A DtcuResource.hpp65 * \brief Abstract resource archive
89 * \brief Directory-based archive implementation
129 ResourcePrefix (const Archive& archive, const char* prefix);
H A DtcuApp.cpp46 App::App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine) argument
74 m_testCtx = new TestContext(m_platform, archive, log, cmdLine, m_watchDog);
/external/deqp/external/
H A Dfetch_sources.py59 archive = tarfile.open(srcPath)
66 archive.extractall(tmpPath)
67 archive.close()
107 parser.add_argument('--keep-archive', dest='keepArchive', action='store_true', default=False,
108 help='Keep archive after extracting')
/external/lzma/CPP/7zip/UI/Client7z/
H A DClient7z.cpp38 "Usage: Client7z.exe [a | l | x ] archive.7z [fileName ...]\n"
40 " Client7z.exe a archive.7z f1.txt f2.txt : compress two files to archive.7z\n"
41 " Client7z.exe l archive.7z : List contents of archive.7z\n"
42 " Client7z.exe x archive.7z : eXtract files from archive.7z\n";
79 static HRESULT IsArchiveItemProp(IInArchive *archive, UInt32 index, PROPID propID, bool &result) argument
82 RINOK(archive->GetProperty(index, propID, &prop));
92 static HRESULT IsArchiveItemFolder(IInArchive *archive, UInt3 argument
798 CMyComPtr<IInArchive> archive; local
[all...]
/external/v8/test/test262/
H A Dtestcfg.py114 archive = tarfile.open(archive_name, "r:gz")
117 archive.extractall(u"\\\\?\\%s" % self.root)
119 archive.extractall(self.root)
/external/deqp/framework/opengl/
H A DgluTexture.hpp83 static Texture2D* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const std::vector<std::string>& filenames);
84 static Texture2D* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* filenames);
85 static Texture2D* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, const char* filename) { return create(context, contextInfo, archive, 1, &filename); } argument
123 static TextureCube* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const std::vector<std::string>& filenames);
124 static TextureCube* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* filenames);
/external/dhcpcd/mk/
H A Ddist.mk21 git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}
/external/linux-tools-perf/src/tools/perf/
H A Dcommand-list.txt6 perf-archive mainporcelain common
/external/nanopb-c/tools/
H A Dmake_linux_package.sh16 git archive HEAD | tar x -C $DEST
H A Dmake_mac_package.sh18 git archive HEAD | tar x -C $DEST
/external/elfutils/src/libasm/
H A DMakefile.am65 $(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \
/external/elfutils/src/libdwfl/
H A Doffline.c103 /* Report one module for an ELF file, or many for an archive.
232 /* Advance the archive-reading offset for the next iteration. */
236 /* Report each member of the archive as its own module. */
239 Elf *archive,
244 Elf *member = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, archive);
245 if (unlikely (member == NULL)) /* Empty archive. */
253 member = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, archive);
255 /* We can drop the archive Elf handle even if we're still using members
260 && elf_end (archive) == 0)
238 process_archive(Dwfl *dwfl, const char *name, const char *file_name, int fd, Elf *archive, int (*predicate) (const char *module, const char *file)) argument
H A Dlinux-kernel-modules.c243 /* Look for a kernel debug archive. If we find one, report all its modules.
253 char *archive; local
255 ? asprintf (&archive, "%s/debug.a", *release)
256 : asprintf (&archive, MODULEDIRFMT "/debug.a", *release));
260 int fd = try_kernel_name (dwfl, &archive, false);
265 /* We have the archive file open! */
266 Dwfl_Module *last = __libdwfl_report_offline (dwfl, NULL, archive, fd,
285 free (archive);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.h77 COutArchive &archive,
/external/toybox/toys/posix/
H A Dcpio.c10 * and initramfs started heavily using this archive format.
24 copy files into and out of a "newc" format cpio archive
26 -F FILE use archive FILE instead of stdin/stdout
28 -i extract from archive into file system (stdin=archive)
29 -o create archive (stdin=list of files, stdout=archive)
30 -t test files (list only, stdin=archive, stdout=list of files)
38 char *archive;
53 str[len]=0; // redundant, in case archive i
[all...]
/external/compiler-rt/make/
H A DAppleBI.mk95 # 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/v8/test/test262-es6/
H A Dtestcfg.py153 archive = tarfile.open(archive_name, "r:gz")
156 archive.extractall(u"\\\\?\\%s" % self.root)
158 archive.extractall(self.root)
/external/elfutils/src/
H A Delfutils.spec35 section sizes of an object or archive file), strip (for discarding
62 The elfutils-devel-static archive contains the static archives
90 Summary: Static archive of libelf
97 The elfutils-libelf-static package contains the static archive
154 %{_bindir}/eu-make-debug-archive
474 - libdwfl: bug fixes in offline archive support, symbol table handling;
482 new option --archive-index (or -c); improved -n output fo
696 - libebl is an archive now; remove references to DSO
/external/bison/djgpp/
H A Ddjunpack.bat46 Rem Extract top src dir from archive file.
59 Rem Extract fnchange.lst from archive.
85 echo FAIL: no archive file has been specified.
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java81 public void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest) argument
83 m_archiveFile = Files.newFile (parentDir, archive.getPath ());
173 public void handleArchiveEnd (final File parentDir, final File archive) argument

Completed in 3911 milliseconds

123456