/third_party/libbpf/src/ |
D | zip.c | 135 static void *check_access(struct zip_archive *archive, __u32 offset, __u32 size) in check_access() argument 137 if (offset + size > archive->size || offset > offset + size) in check_access() 140 return archive->data + offset; in check_access() 146 static int try_parse_end_of_cd(struct zip_archive *archive, __u32 offset) in try_parse_end_of_cd() argument 152 eocd = check_access(archive, offset, sizeof(*eocd)); in try_parse_end_of_cd() 157 if (offset + sizeof(*eocd) + comment_length != archive->size) in try_parse_end_of_cd() 167 if (!check_access(archive, cd_offset, cd_size)) in try_parse_end_of_cd() 170 archive->cd_offset = cd_offset; in try_parse_end_of_cd() 171 archive->cd_records = cd_records; in try_parse_end_of_cd() 175 static int find_cd(struct zip_archive *archive) in find_cd() argument [all …]
|
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
D | vksProtocol.hpp | 38 …void Serialize (Serializer<TYPE>& archive) { archive.SerializeObject(source); archive.Serialize(co… in Serialize() 49 void Serialize (Serializer<TYPE>& archive) { archive.Serialize(status, binary); } in Serialize() 60 void Serialize (Serializer<TYPE>& archive) { archive.Serialize(name, data); } in Serialize() 70 void Serialize (Serializer<TYPE>& archive) { archive.Serialize(status); } in Serialize() 82 void Serialize (Serializer<TYPE>& archive) { archive.Serialize(fileName, data, clear); } in Serialize() 94 void Serialize (Serializer<TYPE>& archive) { archive.Serialize(path, physicalFile, removeAfter); } in Serialize() 105 void Serialize (Serializer<TYPE>& archive) { archive.Serialize(status, data); } in Serialize() 115 void Serialize (Serializer<TYPE>& archive) in Serialize() 117 archive.SerializeObject(input); in Serialize() 118 archive.Serialize(caseFraction); in Serialize() [all …]
|
D | vksStructsVKSC.hpp | 37 void Serialize (Serializer<TYPE>& archive) in Serialize() 39 archive.Serialize(active); in Serialize() 40 if (active == "glsl") archive.Serialize(glsl); in Serialize() 41 else if (active == "hlsl") archive.Serialize(hlsl); in Serialize() 42 else if (active == "spirv") archive.Serialize(spirv); in Serialize() 156 void Serialize (Serializer<TYPE>& archive) in Serialize() 158 …archive.Serialize(samplerYcbcrConversions, samplers, shaderModules, renderPasses, pipelineLayouts,… in Serialize() 252 void Serialize(Serializer<TYPE>& archive) in Serialize() 254 …archive.Serialize(pipelineCacheInput, memoryReservation, commandPoolMemoryConsumption, pipelineSiz… in Serialize()
|
/third_party/python/Lib/ |
D | zipimport.py | 98 self.archive = path 210 if pathname.startswith(self.archive + path_sep): 211 key = pathname[len(self.archive + path_sep):] 217 return _get_data(self.archive, toc_entry) 255 return _get_data(self.archive, toc_entry).decode() 296 fullpath = _bootstrap_external._path_join(self.archive, path) 333 self._files = _read_directory(self.archive) 334 _zip_directory_cache[self.archive] = self._files 336 _zip_directory_cache.pop(self.archive, None) 402 def _read_directory(archive): argument [all …]
|
D | zipapp.py | 38 def _maybe_open(archive, mode): argument 39 if isinstance(archive, (str, os.PathLike)): 40 with open(archive, mode) as f: 43 yield archive 53 def _copy_archive(archive, new_archive, interpreter=None): argument 55 with _maybe_open(archive, 'rb') as src: 150 def get_interpreter(archive): argument 151 with _maybe_open(archive, 'rb') as f:
|
/third_party/elfutils/src/ |
D | make-debug-archive.in | 85 archive=$dir/debug.a 95 if [ $force_kernel = no -a "$archive" -nt "$dep" ]; then 100 [ ! -e "$archive" ] || $sudo $RM -f "$archive" || exit 102 set "$archive" "-K$release" 109 archive="$1" 112 case "$archive" in 114 *) archive="`/bin/pwd`/$archive" ;; 118 new_archive="$archive.new" 130 $sudo $MV -f "$new_archive" "$archive"
|
/third_party/lzma/CPP/7zip/UI/GUI/ |
D | Extract.rc | 9 IDS_UPDATE_NOT_SUPPORTED "Update operations are not supported for this archive." 10 IDS_CANT_OPEN_ARCHIVE "Cannot open file '{0}' as archive" 11 IDS_CANT_OPEN_ENCRYPTED_ARCHIVE "Cannot open encrypted archive '{0}'. Wrong password?" 12 IDS_UNSUPPORTED_ARCHIVE_TYPE "Unsupported archive type" 14 IDS_CANT_OPEN_AS_TYPE "Cannot open the file as {0} archive" 15 IDS_IS_OPEN_AS_TYPE "The file is open as {0} archive" 16 IDS_IS_OPEN_WITH_OFFSET "The archive is open with offset" 50 IDS_EXTRACT_MSG_IS_NOT_ARC "Is not archive" 54 IDS_OPEN_MSG_UNAVAILABLE_START "Unavailable start of archive" 55 IDS_OPEN_MSG_UNCONFIRMED_START "Unconfirmed start of archive" [all …]
|
/third_party/lzma/DOC/ |
D | 7zC.txt | 24 7zIn.* - .7z archive opening 32 You can create .7z archive with 7z.exe, 7za.exe or 7zr.exe: 34 7z.exe a archive.7z *.htm -r -mx -m0fb=255 36 If you have big number of files in archive, and you need fast extracting, 39 7za.exe a archive.7z *.htm -ms=512K -r -mx -m0fb=255 -m0d=512K 42 512KB for extracting one file from such archive. 48 - It reads only "FileName", "Size", "LastWriteTime" and "CRC" information for each file in archive. 61 e: Extract files from archive 62 l: List contents of archive 63 t: Test integrity of archive [all …]
|
D | installer.txt | 21 7zr a archive.7z files 26 Such module extracts archive to temp folder and then runs specified program and removes 27 temp files after program finishing. Self-extract archive for installers must be created 30 self-extract archive: 32 copy /b 7zSD.sfx + config.txt + archive.7z archive.exe 35 uncompressed before including to 7z archive. 63 Use RunProgram, if you want to run some program from .7z archive. 64 Use ExecuteFile, if you want to open some document from .7z archive or 117 - It decompresses solid 7z blocks (it can be whole 7z archive) to RAM. 119 solid 7z block (size of 7z archive at simplest case). [all …]
|
/third_party/skia/third_party/externals/dawn/scripts/ |
D | extract.py | 94 archive, output = args 96 if not os.path.exists(archive): 100 with open(archive) as f: 116 if archive.endswith('.zip'): 117 entries = IterateZip(archive) 118 elif archive.endswith('.tar.gz'): 119 entries = IterateTar(archive, 'gz') 120 elif archive.endswith('.tar.bz2'): 121 entries = IterateTar(archive, 'bz2') 123 raise ValueError(archive) [all …]
|
/third_party/python/Doc/library/ |
D | zipapp.rst | 26 can be used to create an executable archive from a directory containing 27 Python code. When run, the archive will execute the ``main`` function from 28 the module ``myapp`` in the archive. 48 If *source* is a directory, this will create an archive from the contents of 49 *source*. If *source* is a file, it should be an archive, and it will be 50 copied to the target archive (or the contents of its shebang line will be 64 An output filename must be specified if the *source* is an archive (and in 69 Add a ``#!`` line to the archive specifying *interpreter* as the command 70 to run. Also, on POSIX, make the archive executable. The default is to 75 Write a ``__main__.py`` file to the archive that executes *mainfn*. The [all …]
|
D | zipfile.rst | 5 :synopsis: Read and write ZIP-format archive files. 14 The ZIP file format is a common archive and compression standard. This module 72 Class used to represent information about a member of an archive. Instances 76 module. *filename* should be the full name of the archive member, and 92 The numeric constant for an uncompressed archive member. 131 Information about the Info-ZIP project's ZIP archive programs and development 154 ZIP file, then a new ZIP archive is appended to the file. This is meant for 155 adding a ZIP archive to another file (such as :file:`python.exe`). If 159 *compression* is the ZIP compression method to use when writing the archive, 173 writing files to the archive. [all …]
|
D | zipimport.rst | 20 also allows an item of :data:`sys.path` to be a string naming a ZIP file archive. 21 The ZIP archive can contain a subdirectory structure to support package imports, 22 and a path within the archive can be specified to only import from a 24 import from the :file:`lib/` subdirectory within the archive. 26 Any files may be present in the ZIP archive, but importers are only invoked for 28 (:file:`.pyd`, :file:`.so`) is disallowed. Note that if an archive only contains 29 :file:`.py` files, Python will not attempt to modify the archive by adding the 30 corresponding :file:`.pyc` file, meaning that if a ZIP archive 34 Previously, ZIP archives with an archive comment were not supported. 75 archive. [all …]
|
D | tarfile.rst | 1 :mod:`tarfile` --- Read and write tar archive files 5 :synopsis: Read and write tar-format archive files. 165 Return :const:`True` if *name* is a tar archive file, that the :mod:`tarfile` 182 Is raised when a tar archive is opened, that either cannot be handled by the 217 Each of the following constants defines a tar archive format that the 256 Documentation for tar archive files, including GNU tar extensions. 264 The :class:`TarFile` object provides an interface to a tar archive. A tar 265 archive is a sequence of blocks. An archive member (a stored file) is made up of 267 archive several times. Each archive member is represented by a :class:`TarInfo` 272 note that in the event of an exception an archive opened for writing will not [all …]
|
/third_party/skia/third_party/externals/expat/expat/ |
D | distribute.sh | 51 archive=expat-${version}.tar.${ext} 52 gpg --armor --output ${archive}.asc --detach-sign ${archive} 53 gpg --verify ${archive}.asc ${archive}
|
/third_party/lzma/CPP/7zip/UI/Console/ |
D | List.cpp | 381 HRESULT AddMainProps(IInArchive *archive); 457 HRESULT CFieldPrinter::AddMainProps(IInArchive *archive) in AddMainProps() argument 460 RINOK(archive->GetNumberOfProperties(&numProps)) in AddMainProps() 466 RINOK(archive->GetPropertyInfo(i, &name, &propID, &vt)) in AddMainProps() 786 static HRESULT GetUInt64Value(IInArchive *archive, UInt32 index, PROPID propID, CListUInt64Def &val… in GetUInt64Value() argument 791 RINOK(archive->GetProperty(index, propID, &prop)) in GetUInt64Value() 796 static HRESULT GetItemMTime(IInArchive *archive, UInt32 index, CListFileTimeDef &t) in GetItemMTime() argument 803 RINOK(archive->GetProperty(index, kpidMTime, &prop)) in GetItemMTime() 921 static HRESULT PrintArcProp(CStdOutStream &so, IInArchive *archive, PROPID propID, const wchar_t *n… in PrintArcProp() argument 924 RINOK(archive->GetArchiveProperty(propID, &prop)) in PrintArcProp() [all …]
|
/third_party/googletest/ |
D | WORKSPACE | 9 …urls = ["https://github.com/abseil/abseil-cpp/archive/52835439ca90d86b27bf8cd1708296e95604d724.zip… 18 urls = ["https://github.com/google/re2/archive/d0b1f8f2ecc2ea74956c7608b6f915175314ff0e.zip"], 25 …urls = ["https://github.com/bazelbuild/rules_python/archive/70cce26432187a60b4e950118791385e6fb3c2… 32 …urls = ["https://github.com/bazelbuild/bazel-skylib/archive/5bfcb1a684550626ce138fe0fe8f5f702b3764… 39 …urls = ["https://github.com/bazelbuild/platforms/archive/3fbc687756043fb58a407c2ea8c944bc2fe1d922.…
|
/third_party/lzma/CPP/7zip/UI/Common/ |
D | OpenArchive.cpp | 943 static HRESULT Archive_GetItem_Size(IInArchive *archive, UInt32 index, UInt64 &size, bool &defined) 948 RINOK(archive->GetProperty(index, kpidSize, &prop)) 1251 HRESULT CArc::ReadBasicProps(IInArchive *archive, UInt64 startPos, HRESULT openRes) 1262 RINOK(archive->GetArchiveProperty(kpidErrorFlags, &prop)) 1267 RINOK(archive->GetArchiveProperty(kpidWarningFlags, &prop)) 1273 RINOK(archive->GetArchiveProperty(kpidError, &prop)) 1280 RINOK(archive->GetArchiveProperty(kpidWarning, &prop)) 1287 RINOK(Archive_GetArcProp_UInt(archive, kpidPhySize, PhySize, PhySize_Defined)) 1298 RINOK(Archive_GetArcProp_Int(archive, kpidOffset, Offset, offsetDefined)) 1329 …T CArc::PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive) [all …]
|
D | LoadCodecs.h | 344 HRESULT CreateArchiveHandler(const CArcInfoEx &ai, bool outHandler, void **archive) const in CreateArchiveHandler() argument 346 …ndex].CreateObject(&ai.ClassID, outHandler ? &IID_IOutArchive : &IID_IInArchive, (void **)archive); in CreateArchiveHandler() 413 HRESULT CreateInArchive(unsigned formatIndex, CMyComPtr<IInArchive> &archive) const in CreateInArchive() argument 421 archive = ai.CreateInArchive(); in CreateInArchive() local 426 return CreateArchiveHandler(ai, false, (void **)&archive); in CreateInArchive() 432 HRESULT CreateOutArchive(unsigned formatIndex, CMyComPtr<IOutArchive> &archive) const in CreateOutArchive() argument 440 archive = ai.CreateOutArchive(); in CreateOutArchive() local 446 return CreateArchiveHandler(ai, true, (void **)&archive); in CreateOutArchive()
|
/third_party/curl/docs/ |
D | BINDINGS.md | 15 [Ada95](https://web.archive.org/web/20070403105909/www.almroth.com/adacurl/index.html) Written by A… 38 [Euphoria](https://web.archive.org/web/20050204080544/rays-web.com/eulibcurl.htm) Written by Ray Sm… 42 [Ferite](https://web.archive.org/web/20150102192018/ferite.org/) Written by Paul Querna 48 [glib/GTK+](https://web.archive.org/web/20100526203452/atterer.net/glibcurl) Written by Richard Att… 68 Lua: [luacurl](https://web.archive.org/web/20201205052437/luacurl.luaforge.net/) by Alexander Marin… 70 [Mono](https://web.archive.org/web/20070606064500/https://forge.novell.com/modules/xfmod/project/?l… 78 [Object-Pascal](https://web.archive.org/web/20020610214926/www.tekool.com/opcurl) Free Pascal, Delp… 82 [Pascal](https://web.archive.org/web/20030804091414/houston.quik.com/jkp/curlpas/) Free Pascal, Del… 124 [SPL](https://web.archive.org/web/20210203022158/www.clifford.at/spl/spldoc/curl.html) Written by C… 126 [Tcl](https://web.archive.org/web/20160826011806/mirror.yellow5.com/tclcurl/) Tclcurl by Andrés Gar… [all …]
|
/third_party/node/deps/v8/tools/ |
D | fuzz-harness.sh | 97 archive="$2" 99 archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 101 echo "Creating archive $archive" 102 tar -cjf $archive err-* w*
|
/third_party/node/ |
D | node.gypi | 7 # --whole-archive,force_load and /WHOLEARCHIVE are used to include 161 '-Wl,--whole-archive', 163 '-Wl,--no-whole-archive', 200 '-Wl,--whole-archive', 202 '-Wl,--no-whole-archive', 287 '-Wl,--whole-archive <(v8_base)', 288 '-Wl,--no-whole-archive', 361 # -force_load or --whole-archive are not applicable for 379 '-Wl,--whole-archive,' 381 '-Wl,--no-whole-archive',
|
/third_party/protobuf/ |
D | protobuf_deps.bzl | 24 urls = ["https://github.com/madler/zlib/archive/v1.2.11.tar.gz"], 40 …urls = ["https://github.com/bazelbuild/rules_cc/archive/818289e5613731ae410efb54218a4077fb9dbb03.t… 48 …urls = ["https://github.com/bazelbuild/rules_java/archive/981f06c3d2bd10225e85209904090eb7b5fb26bd… 56 …urls = ["https://github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc31… 64 …urls = ["https://github.com/bazelbuild/rules_python/archive/4b84ad270387a7c439ebdccfd530e2339601ef…
|
/third_party/node/deps/v8/tools/jsfunfuzz/ |
D | fuzz-harness.sh | 90 archive="$2" 92 archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 94 echo "Creating archive $archive" 95 tar -cjf $archive err-* w*
|
/third_party/node/tools/dep_updaters/ |
D | utils.sh | 14 archive="$2" 16 bsd_formatted_checksum=$(shasum -a 256 --tag "$archive") 20 archive_checksum=$(shasum -a 256 "$archive")
|