HomeSort by: relevance | last modified time | path
    Searched refs:extract (Results 1 - 25 of 484) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/libarchive/dist/libarchive/
archive_read_extract.c 40 struct archive_read_extract *extract; local
43 extract = __archive_read_get_extract(a);
44 if (extract == NULL)
48 if (extract->ad == NULL) {
49 extract->ad = archive_write_disk_new();
50 if (extract->ad == NULL) {
51 archive_set_error(&a->archive, ENOMEM, "Can't extract");
54 archive_write_disk_set_standard_lookup(extract->ad);
57 archive_write_disk_set_options(extract->ad, flags);
58 return (archive_read_extract2(&a->archive, entry, extract->ad))
    [all...]
archive_read_extract2.c 47 /* Retrieve an extract object without initialising the associated
53 if (a->extract == NULL) {
54 a->extract = calloc(1, sizeof(*a->extract));
55 if (a->extract == NULL) {
56 archive_set_error(&a->archive, ENOMEM, "Can't extract");
61 return (a->extract);
72 if (a->extract->ad != NULL) {
73 ret = archive_write_free(a->extract->ad);
75 free(a->extract);
117 struct archive_read_extract *extract = __archive_read_get_extract(a); local
129 struct archive_read_extract *extract; local
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/man/
xgettext.x 2 xgettext \- extract gettext strings from source
  /src/external/apache2/llvm/bin/llvm-extract/
Makefile 3 PROG_CXX= llvm-extract
8 .PATH: ${LLVM_SRCDIR}/tools/llvm-extract
10 SRCS= llvm-extract.cpp
  /src/usr.bin/make/unit-tests/
dir.exp 13 Expanding "{fetch,extract}{,-post}"... Expanding "fetch{,-post}"... fetch fetch-post
14 Expanding "extract{,-post}"... fetch fetch-post extract extract-post
15 fetch fetch-post extract extract-post
41 : extract
42 : extract-post
  /src/crypto/external/apache2/openssl/lib/libcrypto/
mkinc 7 extract() { function
21 extract $proto > $proto.out
  /src/crypto/external/bsd/openssl/lib/libcrypto/
mkinc 7 extract() { function
21 extract $proto > $proto.out
  /src/lib/libskey/
put.c 24 static unsigned int extract(char *s, int start, int length);
2093 p += extract (cp, i, 2);
2097 strncat (engout, &Wp[extract (cp, 0, 11)][0], 4);
2099 strncat (engout, &Wp[extract (cp, 11, 11)][0], 4);
2101 strncat (engout, &Wp[extract (cp, 22, 11)][0], 4);
2103 strncat (engout, &Wp[extract (cp, 33, 11)][0], 4);
2105 strncat (engout, &Wp[extract (cp, 44, 11)][0], 4);
2107 strncat (engout, &Wp[extract (cp, 55, 11)][0], 4);
2163 p += extract (b, i, 2);
2165 if ((p & 3) != extract (b, 64, 2)
2287 static unsigned int extract(char *s, int start, int length) function
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugAbbrev.cpp 28 bool DWARFAbbreviationDeclarationSet::extract(DataExtractor Data, function in class:DWARFAbbreviationDeclarationSet
35 while (AbbrDecl.extract(Data, OffsetPtr)) {
77 void DWARFDebugAbbrev::extract(DataExtractor Data) { function in class:DWARFDebugAbbrev
92 if (!AbbrDecls.extract(*Data, &Offset))
129 if (!AbbrDecls.extract(*Data, &Offset))
DWARFDebugAranges.cpp 21 void DWARFDebugAranges::extract( function in class:DWARFDebugAranges
31 Set.extract(DebugArangesData, &Offset, RecoverableErrorHandler)) {
50 // Extract aranges from .debug_aranges section.
53 extract(ArangesData, CTX->getRecoverableErrorHandler());
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFListTable.h 49 Error extract(DWARFDataExtractor Data, uint64_t HeaderOffset,
133 /// Extract the table header and the array of offsets.
134 Error extract(DWARFDataExtractor Data, uint64_t *OffsetPtr);
166 /// Extract the table header and the array of offsets.
168 return Header.extract(Data, OffsetPtr);
170 /// Extract an entire table, including all list entries.
171 Error extract(DWARFDataExtractor Data, uint64_t *OffsetPtr);
172 /// Look up a list based on a given offset. Extract it and enter it into the
202 Error DWARFListTableBase<DWARFListType>::extract(DWARFDataExtractor Data, function in class:llvm::DWARFListTableBase
213 if (Error E = CurrentList.extract(Data, getHeaderOffset(), OffsetPtr
227 Error DWARFListType<ListEntryType>::extract(DWARFDataExtractor Data, function in class:llvm::DWARFListType
    [all...]
DWARFDebugAbbrev.h 37 bool extract(DataExtractor Data, uint64_t *OffsetPtr);
70 void extract(DataExtractor Data);
DWARFDebugPubTable.h 76 void extract(DWARFDataExtractor Data, bool GnuStyle,
DWARFDebugRangeList.h 71 Error extract(const DWARFDataExtractor &data, uint64_t *offset_ptr);
  /src/external/apache2/llvm/dist/libcxx/utils/
generate_abi_list.py 12 import libcxx.sym_check.extract
25 description='Extract a list of symbols from a shared library.')
27 help='The library to extract symbols from.')
33 symbols = libcxx.sym_check.extract.extract_symbols(args.library)
  /src/external/gpl3/gcc/dist/libstdc++-v3/scripts/
extract_symvers.in 35 tmp=extract.$$
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/
extract_symvers.in 35 tmp=extract.$$
  /src/external/historical/nawk/dist/
REGRESS 21 echo $0: No testdir directory and no awktest.tar to extract it from! >&2
  /src/usr.sbin/mdsetimage/
mdsetimage.c 63 int extract; variable
111 extract = 1;
125 if (extract) {
159 if (extract) {
179 (extract ? "from" : "into"), kfile, left_to_copy);
191 if (extract) {
220 if (setsize && !extract) {
  /src/external/apache2/llvm/bin/
Makefile 28 llvm-extract \
  /src/external/bsd/ntp/dist/sntp/libevent/build-aux/
ar-lib 154 extract=
165 x*) extract=yes ;;
181 case $delete$extract$list$quick$replace,$index in
209 elif test -n "$extract"; then
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
  /src/external/gpl2/gettext/dist/gettext-tools/src/
x-po.c 144 extract (FILE *fp, function
214 extract (fp, real_filename, logical_filename, &input_format_po, mdlp);
224 extract (fp, real_filename, logical_filename, &input_format_properties,
235 extract (fp, real_filename, logical_filename, &input_format_stringtable,
  /src/external/gpl3/binutils/dist/
ar-lib 154 extract=
165 x*) extract=yes ;;
181 case $delete$extract$list$quick$replace,$index in
209 elif test -n "$extract"; then
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
  /src/external/gpl3/binutils/dist/opcodes/
alpha-dis.c 133 if (operand->extract)
134 (*operand->extract) (insn, &invalid);
154 /* Now extract and print the operands. */
162 already made sure that the extract function considered
167 /* Extract the value from the instruction. */
168 if (operand->extract)
169 value = (*operand->extract) (insn, (int *) NULL);
  /src/external/gpl3/binutils.old/dist/
ar-lib 154 extract=
165 x*) extract=yes ;;
181 case $delete$extract$list$quick$replace,$index in
209 elif test -n "$extract"; then
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>