Home
last modified time | relevance | path

Searched full:headers (Results 1 – 25 of 2453) sorted by relevance

12345678910>>...99

/freebsd/crypto/heimdal/lib/hx509/
H A Dfile.c76 hx509_pem_header *headers, FILE *f, in hx509_pem_write() argument
87 while (headers) { in hx509_pem_write()
89 headers->header, headers->value, in hx509_pem_write()
90 headers->next ? "" : "\n"); in hx509_pem_write()
91 headers = headers->next; in hx509_pem_write()
123 hx509_pem_add_header(hx509_pem_header **headers, in hx509_pem_add_header() argument
143 h->next = *headers; in hx509_pem_add_header()
144 *headers = h; in hx509_pem_add_header()
150 hx509_pem_free_header(hx509_pem_header *headers) in hx509_pem_free_header() argument
153 while (headers) { in hx509_pem_free_header()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHaiku.cpp207 "/boot/system/non-packaged/develop/headers")); in AddClangSystemIncludeArgs()
209 "/boot/system/develop/headers/os")); in AddClangSystemIncludeArgs()
211 "/boot/system/develop/headers/os/app")); in AddClangSystemIncludeArgs()
213 "/boot/system/develop/headers/os/device")); in AddClangSystemIncludeArgs()
215 "/boot/system/develop/headers/os/drivers")); in AddClangSystemIncludeArgs()
217 "/boot/system/develop/headers/os/game")); in AddClangSystemIncludeArgs()
219 "/boot/system/develop/headers/os/interface")); in AddClangSystemIncludeArgs()
221 "/boot/system/develop/headers/os/kernel")); in AddClangSystemIncludeArgs()
223 "/boot/system/develop/headers/os/locale")); in AddClangSystemIncludeArgs()
225 "/boot/system/develop/headers/os/mail")); in AddClangSystemIncludeArgs()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFixIrreducible.cpp13 // 1. Collect the set of headers H of the SCC.
14 // 2. Collect the set of predecessors P of these headers. These may be inside as
22 // INPUT CFG: The blocks A and B form an irreducible loop with two headers.
56 // headers). The function also moves every PHINode in an outgoing block to the
117 SetVector<BasicBlock *> &Headers) { in INITIALIZE_PASS_DEPENDENCY()
136 if (Headers.count(Child->getHeader())) { in INITIALIZE_PASS_DEPENDENCY()
161 // Given a set of blocks and headers in an irreducible SCC, convert it into a in INITIALIZE_PASS_DEPENDENCY()
167 SetVector<BasicBlock *> &Headers) { in createNaturalLoopInternal()
169 // All headers are part of the SCC in createNaturalLoopInternal()
170 for (auto *H : Headers) { in createNaturalLoopInternal() argument
258 createNaturalLoop(LoopInfo & LI,DominatorTree & DT,Function * F,SetVector<BasicBlock * > & Blocks,SetVector<BasicBlock * > & Headers) createNaturalLoop() argument
264 createNaturalLoop(LoopInfo & LI,DominatorTree & DT,Loop & L,SetVector<BasicBlock * > & Blocks,SetVector<BasicBlock * > & Headers) createNaturalLoop() argument
289 SetVector<BasicBlock *> Headers; makeReducible() local
[all...]
/freebsd/crypto/openssh/contrib/
H A Dfindssl.sh4 # Search for all instances of OpenSSL headers and libraries
6 # Intended to help diagnose OpenSSH's "OpenSSL headers do not
18 # "OpenSSL headers do not match your library" are usually caused by
19 # OpenSSH's configure picking up an older version of OpenSSL headers
24 # headers and libraries that were picked up, for example:
28 # checking whether OpenSSL's headers match the library... no
29 # configure: error: Your OpenSSL headers do not match your library
31 # Now run findssl.sh. This should identify the headers and libraries
33 # libraries and headers used and adjust your CFLAGS or remove incorrect
110 # Search for OpenSSL headers and print versions
[all …]
/freebsd/cddl/contrib/opensolaris/tools/ctf/common/
H A Dctf_headers.h34 * the tools need to include the headers installed on the build system,
35 * rather than those in the ON source tree. However, some of the headers
43 * These headers get installed in the proto area in the build environment
45 * headers are not part of the release, in releases including and prior to
49 * ctf headers. Depending on the order of the -I includes, we can also have
50 * a problem with mismatched headers when building the ctf tools with some
51 * headers getting pulled in from /usr/include and others from
56 * ctf headers. Because the <libctf.h> header includes <sys/ctf_api.h>
59 * the headers.
61 * that we first search the directories where the ctf headers
/freebsd/usr.bin/clang/llvm-objdump/
H A Dllvm-objdump.149 .B \-a, \-\-archive\-headers
50 Display the information contained within an archive\(aqs headers.
82 .B \-f, \-\-file\-headers
92 .B \-h, \-\-headers, \-\-section\-headers
93 Display summaries of the headers for each section.
102 .B \-p, \-\-private\-headers
103 Display format\-specific file headers.
150 .B \-x, \-\-all\-headers
152 \fI\%\-\-archive\-headers\fP, \fI\%\-\-file\-headers\fP,
153 \fI\%\-\-private\-headers\fP, \fI\%\-\-reloc\fP, \fI\%\-\-section\-headers\fP,
[all …]
/freebsd/contrib/mandoc/
H A Dmandoc_headers.327 The application developer has to make sure that the headers are
31 The headers and functions form three major groups:
38 combinations of headers into the same file.
72 Each of the following headers can be included without including
74 These headers should be included before any other mandoc headers.
294 but no other mandoc headers.
295 Afterwards, any other mandoc headers can be included as needed.
350 Most of the following headers require inclusion of a parser interface header
352 All parser interface headers should precede all parser internal headers.
353 When any parser internal headers are included, the same file should
[all …]
/freebsd/crypto/heimdal/appl/test/
H A Dhttp_client.c146 char **headers; member
157 req->headers = NULL; in http_req_zero()
170 free(req->headers[i]); in http_req_free()
171 free(req->headers); in http_req_free()
182 if (strncasecmp(header, req->headers[i], len) == 0) { in http_find_header()
183 return req->headers[i] + len + 1; in http_find_header()
192 char **headers, int num_headers, struct http_req *req) in http_query() argument
208 fdprintf(s, "%s\r\n", headers[i]); in http_query()
245 req->headers = realloc(req->headers, in http_query()
246 (req->num_headers + 1) * sizeof(req->headers[0])); in http_query()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td17 def all : FF<"all", "Equivalent to setting: --file-header, --program-headers, --section-headers, "
32 def headers : FF<"headers", "Equivalent to setting: --file-header, --program-headers, --section-hea…
38 def section_headers : FF<"section-headers", "Display section headers">;
64 def program_headers : FF<"program-headers", "Display program headers">, Group<grp_elf>;
118 def : FF<"file-headers", "Alias for --file-header">, Alias<file_header>, Flags<[HelpHidden]>;
120 def : FF<"sections", "Alias for --section-headers">, Alias<section_headers>;
121 def : FF<"segments", "Alias for --program-headers">, Alias<program_headers>, Group<grp_elf>;
128 def : F<"e", "Alias for --headers">, Alias<headers>;
132 def : F<"l", "Alias for --program-headers">, Alias<program_headers>;
136 def : F<"S", "Alias for --section-headers">, Alias<section_headers>;
/freebsd/contrib/elftoolchain/readelf/
H A Dreadelf.138 .Op Fl e | Fl -headers
41 .Op Fl l | Fl -program-headers
59 .Op Fl S | Fl -sections | Fl -section-headers
94 .It Fl e | Fl -headers
95 Print all program, file and section headers in the ELF object.
100 .It Fl l | Fl -program-headers
119 fields in section headers.
190 .It Fl S | Fl -sections | Fl -section-headers
191 Print information in the section headers for each ELF object.
199 will list information in the headers of 64 bit ELF objects on two
/freebsd/crypto/openssl/crypto/asn1/
H A Dasn_mime.c286 /* Headers for signature */ in SMIME_write_ASN1_ex()
316 /* MIME headers */ in SMIME_write_ASN1_ex()
404 STACK_OF(MIME_HEADER) *headers = NULL; in SMIME_read_ASN1_ex()
414 if ((headers = mime_parse_hdr(bio)) == NULL) { in SMIME_read_ASN1_ex()
419 if ((hdr = mime_hdr_find(headers, "content-type")) == NULL in SMIME_read_ASN1_ex()
421 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1_ex()
432 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1_ex()
437 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1_ex()
447 if ((headers = mime_parse_hdr(asnin)) == NULL) { in SMIME_read_ASN1_ex()
455 if ((hdr = mime_hdr_find(headers, "content-type")) == NULL in SMIME_read_ASN1_ex()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DObjdumpOpts.td30 def all_headers : Flag<["--"], "all-headers">,
33 def : Flag<["-"], "x">, Alias<all_headers>, HelpText<"Alias for --all-headers">;
38 def archive_headers : Flag<["--"], "archive-headers">,
46 HelpText<"Alias for --archive-headers">;
111 def file_headers : Flag<["--"], "file-headers">,
114 HelpText<"Alias for --file-headers">;
166 def private_headers : Flag<["--"], "private-headers">,
167 HelpText<"Display format specific file headers">;
169 HelpText<"Alias for --private-headers">;
178 def section_headers : Flag<["--"], "section-headers">,
[all …]
/freebsd/sys/contrib/openzfs/lib/libspl/include/os/linux/sys/
H A Dmount.h37 * Some old glibc headers don't define BLKGETSIZE64
38 * and we don't want to require the kernel headers
45 * Some old glibc headers don't correctly define MS_DIRSYNC and
47 * headers define MS_DIRSYNC to be S_WRITE.
54 * Some old glibc headers don't correctly define MS_POSIXACL and
55 * instead leave it undefined. When using these older headers define
68 * Older glibc <sys/mount.h> headers did not define all the available
/freebsd/share/doc/usd/07.mail/
H A Dmail5.nr45 command, which prints the message headers associated with the
122 For example, to print the headers of all messages that contain the
333 is the easy way to display all the message headers from \*(lqjoe.\*(rq
335 .ip "\fBheaders\fP\ \ "
338 to read your mail, it lists the message headers that you have.
339 These headers tell you who each message is from, when they were
358 list of message headers, you can do so with the
359 .b headers
361 .b headers
363 only lists the first so many message headers.
[all …]
H A Dmail9.nr64 from List headers of a list of messages
65 headers List current window of messages
81 save Append messages, headers included, on a file
92 write Append messages to a file, don't include headers
94 z Scroll to next/previous screenful of headers
126 noheader binary Suppress initial printing of version and headers
130 screen valued Size of window of message headers for \fBz\fP, etc.
177 \-N Suppress the initial printing of headers
/freebsd/contrib/llvm-project/libcxx/modules/
H A Dstd.compat.cppm.in18 // The headers of Table 24: C++ library headers [tab:headers.cpp]
19 // and the headers of Table 25: C++ headers for C library facilities [tab:headers.cpp.c]
48 // *** Headers not yet available ***
53 // and that means the MSVC STL headers can be found as well, tricking __has_include
H A Dstd.cppm
/freebsd/contrib/dialog/
H A Dmakefile.in224 - $(RM) headers.sed
232 $(RM) headers-sh
278 install-lib :: $(LIB_DIRS) $(LIB) headers.sed
281 @ echo "** installing headers in $(INCLUDEDIR)"
282 @ $(SHELL) headers-sh $(INSTALL_DATA) $(INCLUDEDIR) $(srcdir) dialog.h
283 @ $(SHELL) headers-sh $(INSTALL_DATA) $(INCLUDEDIR) $(srcdir) dlg_colors.h
284 @ $(SHELL) headers-sh $(INSTALL_DATA) $(INCLUDEDIR) $(srcdir) dlg_keys.h
285 @ $(SHELL) headers-sh $(INSTALL_DATA) $(INCLUDEDIR) . dlg_config.h
292 @ $(SHELL) headers-sh $(RM) $(INCLUDEDIR) $(srcdir) dialog.h
293 @ $(SHELL) headers-sh $(RM) $(INCLUDEDIR) $(srcdir) dlg_colors.h
[all …]
/freebsd/sys/dev/isci/scil/
H A Dscic_sds_unsolicited_frame_control.c111 * the number of unused UF headers. This value can
115 * the number of actually utilized UF headers.
141 uf->header = &uf_control->headers.array[index]; in scic_sds_unsolicited_frame_control_construct_frames()
156 uf->header = &uf_control->headers.array[index]; in scic_sds_unsolicited_frame_control_construct_frames()
170 * frame control object (buffers, headers, address, table, etc).
196 // Prepare all of the memory sizes for the UF headers, UF address in scic_sds_unsolicited_frame_control_construct()
209 // memory descriptor entry. The headers and address table will be in scic_sds_unsolicited_frame_control_construct()
219 // headers, since we program the UF address table pointers to in scic_sds_unsolicited_frame_control_construct()
221 uf_control->headers.physical_address = uf_buffer_phys_address; in scic_sds_unsolicited_frame_control_construct()
223 uf_control->headers.physical_address, used_uf_buffer_bytes); in scic_sds_unsolicited_frame_control_construct()
[all …]
/freebsd/sys/dev/ice/
H A Dice_flow.h71 * more protocol headers that make up a logical group of protocol headers. Each
72 * logical group of protocol headers encapsulates or is encapsulated using/by
136 /* Flow headers and fields for AVF support */
189 ICE_RSS_OUTER_HEADERS, /* take outer headers as inputset. */
190 ICE_RSS_INNER_HEADERS, /* take inner headers as inputset. */
191 /* take inner headers as inputset for packet with outer IPv4. */
193 /* take inner headers as inputset for packet with outer IPv6. */
195 /* take outer headers first then inner headers a
[all...]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dmodule.modulemap155 // Start -fbuiltin-headers-in-system-modules affected modules
157 // The following modules all ignore their headers when
158 // -fbuiltin-headers-in-system-modules is passed, and many of
159 // those headers join system modules when present.
161 // e.g. if -fbuiltin-headers-in-system-modules is passed, then
244 // -fbuiltin-headers-in-system-modules is passed.
294 // this module even if -fbuiltin-headers-in-system-modules is passed.
319 // End -fbuiltin-headers-in-system-modules affected modules
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DFileList.cpp23 "headers" : [ # Required: Key must exist.
50 Error parseHeaders(Array &Headers);
108 Error Implementation::parseHeaders(Array &Headers) { in parseHeaders() argument
109 for (const auto &H : Headers) { in parseHeaders()
166 auto Headers = Root->getArray("headers"); in parse() local
167 if (!Headers) in parse()
170 Error Err = parseHeaders(*Headers); in parse()
/freebsd/crypto/heimdal/appl/push/
H A Dpush.817 .Op Fl Fl headers Ns = Ns Ar headers
77 .Fl Fl headers Ns = Ns Ar headers
79 a list of comma-separated headers that should get printed.
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp85 yaml::MSFHeaders Headers; in dumpFileHeaders() local
86 Obj.Headers.emplace(); in dumpFileHeaders()
87 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); in dumpFileHeaders()
88 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); in dumpFileHeaders()
89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
91 Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); in dumpFileHeaders()
92 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); in dumpFileHeaders()
93 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); in dumpFileHeaders()
94 Obj.Headers->NumStreams = in dumpFileHeaders()
96 Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock(); in dumpFileHeaders()
[all …]
/freebsd/contrib/libarchive/build/autoconf/
H A Dm4_ax_compile_check_sizeof.m4

12345678910>>...99