| /minix3/crypto/external/bsd/heimdal/dist/lib/hx509/ |
| H A D | file.c | 78 hx509_pem_header *headers, FILE *f, in hx509_pem_write() argument 89 while (headers) { in hx509_pem_write() 91 headers->header, headers->value, in hx509_pem_write() 92 headers->next ? "" : "\n"); in hx509_pem_write() 93 headers = headers->next; in hx509_pem_write() 125 hx509_pem_add_header(hx509_pem_header **headers, in hx509_pem_add_header() argument 145 h->next = *headers; in hx509_pem_add_header() 146 *headers = h; in hx509_pem_add_header() 152 hx509_pem_free_header(hx509_pem_header *headers) in hx509_pem_free_header() argument 155 while (headers) { in hx509_pem_free_header() [all …]
|
| /minix3/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| H A D | asn_mime.c | 423 STACK_OF(MIME_HEADER) *headers = NULL; in SMIME_read_ASN1() 433 if (!(headers = mime_parse_hdr(bio))) { in SMIME_read_ASN1() 438 if (!(hdr = mime_hdr_find(headers, "content-type")) || !hdr->value) { in SMIME_read_ASN1() 439 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1() 450 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1() 455 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1() 465 if (!(headers = mime_parse_hdr(asnin))) { in SMIME_read_ASN1() 473 if (!(hdr = mime_hdr_find(headers, "content-type")) || !hdr->value) { in SMIME_read_ASN1() 474 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1() 483 sk_MIME_HEADER_pop_free(headers, mime_hdr_free); in SMIME_read_ASN1() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/Object/ |
| H A D | yaml2obj-elf-bits-endian.test | 1 RUN: yaml2obj -format=elf %p/Inputs/ELF/LE64.yaml | llvm-readobj -file-headers - | FileCheck %s --c… 2 RUN: yaml2obj -format=elf %p/Inputs/ELF/BE64.yaml | llvm-readobj -file-headers - | FileCheck %s --c… 3 RUN: yaml2obj -format=elf %p/Inputs/ELF/LE32.yaml | llvm-readobj -file-headers - | FileCheck %s --c… 4 RUN: yaml2obj -format=elf %p/Inputs/ELF/BE32.yaml | llvm-readobj -file-headers - | FileCheck %s --c…
|
| H A D | yaml2obj-readobj.test | 1 RUN: yaml2obj %p/Inputs/COFF/i386.yaml | llvm-readobj -file-headers -relocations -expand-relocs - |… 3 RUN: llvm-readobj -file-headers -relocations -expand-relocs %t \
|
| /minix3/crypto/external/bsd/netpgp/dist/src/lib/ |
| H A D | reader.c | 314 pgp_headers_t headers; member 540 find_header(pgp_headers_t *headers, const char *key) in find_header() argument 544 for (n = 0; n < headers->headerc; ++n) { in find_header() 545 if (strcmp(headers->headers[n].key, key) == 0) { in find_header() 546 return headers->headers[n].value; in find_header() 561 if ((dest->headers = calloc(src->headerc, sizeof(*dest->headers))) == NULL) { in dup_headers() 566 dest->headers[n].key = netpgp_strdup(src->headers[n].key); in dup_headers() 567 dest->headers[n].value = netpgp_strdup(src->headers[n].value); in dup_headers() 595 hashstr = find_header(&dearmour->headers, "Hash"); in process_dash_escaped() 723 n = dearmour->headers.headerc; in add_header() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/tools/llvm-readobj/ |
| H A D | program-headers.test | 1 RUN: llvm-readobj -program-headers %p/../../Object/Inputs/program-headers.elf-i386 \ 3 RUN: llvm-readobj -program-headers %p/../../Object/Inputs/program-headers.elf-x86-64 \ 5 RUN: llvm-readobj -program-headers %p/../../Object/Inputs/program-headers.mips \ 7 RUN: llvm-readobj -program-headers %p/../../Object/Inputs/program-headers.mips64 \
|
| /minix3/external/bsd/libevent/dist/include/event2/ |
| H A D | http.h | 566 const char *evhttp_find_header(const struct evkeyvalq *headers, 577 int evhttp_remove_header(struct evkeyvalq *headers, const char *key); 588 int evhttp_add_header(struct evkeyvalq *headers, const char *key, const char *value); 595 void evhttp_clear_headers(struct evkeyvalq *headers); 682 int evhttp_parse_query(const char *uri, struct evkeyvalq *headers); 701 int evhttp_parse_query_str(const char *uri, struct evkeyvalq *headers);
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | Modules.rst | 29 and *M* headers included in each translation unit, the compiler is 30 performing *M x N* work even though most of the *M* headers are 33 code into headers. 44 problems occur when the headers for two different libraries interact 52 the vast majority of headers to ensure that multiple inclusion 56 in headers to avoid collisions with "normal" names that (by 59 boilerplate for more experienced developers, and make our headers 64 the libraries are not clear. Which headers belong to a particular 65 library, and in what order should those headers be included to 66 guarantee that they compile correctly? Are the headers C, C++, [all …]
|
| H A D | PCHInternals.rst | 9 headers (PCH) and modules. If you are interested in the end-user view, please 10 see the :ref:`User's Manual <usersmanual-precompiled-headers>`. 37 Precompiled headers are meant to improve overall compile times for projects, so 38 the design of precompiled headers is entirely driven by performance concerns. 39 The use case for precompiled headers is relatively simple: when there is a 40 common set of headers that is included in nearly every source file in the 41 project, we *precompile* that bundle of headers into a single precompiled 44 bundle of headers. 49 headers stored within the PCH file. Thus, a precompiled header design 55 need to parse the bundled headers in the first place. This is particularly [all …]
|
| H A D | FAQ.rst | 11 I run ``clang -cc1 ...`` and get weird errors about missing headers 54 I get errors about some headers being missing (``stddef.h``, ``stdarg.h``) 60 ``clang`` binary, you need to move the builtin headers, too.
|
| /minix3/external/bsd/llvm/dist/llvm/docs/CommandGuide/ |
| H A D | llvm-readobj.rst | 30 .. option:: -file-headers, -h 32 Display file headers. 79 .. option:: -program-headers 81 Display the ELF program headers (only for ELF object files).
|
| /minix3/external/bsd/libevent/dist/test/ |
| H A D | regress_http.c | 1897 struct evkeyvalq headers; in http_bad_header_test() local 1899 TAILQ_INIT(&headers); in http_bad_header_test() 1901 tt_want(evhttp_add_header(&headers, "One", "Two") == 0); in http_bad_header_test() 1902 tt_want(evhttp_add_header(&headers, "One", "Two\r\n Three") == 0); in http_bad_header_test() 1903 tt_want(evhttp_add_header(&headers, "One\r", "Two") == -1); in http_bad_header_test() 1904 tt_want(evhttp_add_header(&headers, "One\n", "Two") == -1); in http_bad_header_test() 1905 tt_want(evhttp_add_header(&headers, "One", "Two\r") == -1); in http_bad_header_test() 1906 tt_want(evhttp_add_header(&headers, "One", "Two\n") == -1); in http_bad_header_test() 1908 evhttp_clear_headers(&headers); in http_bad_header_test() 1912 const struct evkeyvalq* headers, in validate_header() argument [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/Modules/ |
| H A D | validate-system-headers.m | 12 …dify the system header, and confirm that we don't notice without -fmodules-validate-system-headers. 19 // Now make sure we rebuild the module when -fmodules-validate-system-headers is set. 20 // RUN: %clang_cc1 -isystem %t/Inputs/usr/include -fmodules -fmodules-validate-system-headers -fmod… 37 // Now add -fmodules-validate-system-headers and rebuild 38 // RUN: %clang_cc1 -isystem %t/Inputs/usr/include -fmodules -fmodules-validate-system-headers -fmod…
|
| H A D | Werror-Wsystem-headers.m | 15 // Unless -Wsystem-headers is on 18 // RUN: -Werror=unused -Wsystem-headers
|
| /minix3/libexec/httpd/ |
| H A D | printenv.lua | 13 function printenv(env, headers, query) 41 for k, v in pairs(headers) do
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | CMakeLists.txt | 1 # Make sure that the path to libffi headers is on the command 4 # searching for headers (CMAKE_SYSTEM_INCLUDE_PATH, for instance):
|
| /minix3/external/bsd/llvm/dist/llvm/test/tools/gold/ |
| H A D | mtriple.ll | 6 ; RUN: llvm-readobj --file-headers %t2 | FileCheck --check-prefix=DSO %s 7 ; RUN: llvm-readobj --file-headers %t3.o | FileCheck --check-prefix=REL %s
|
| /minix3/crypto/external/bsd/heimdal/dist/cf/ |
| H A D | test-package.m4 | 3 dnl rk_TEST_PACKAGE(package,headers,libraries,extra libs, 4 dnl default locations, conditional, config-program, headers) 17 AS_HELP_STRING([--with-$1-include=dir],[use $1 headers in dir]), 116 AC_MSG_RESULT([headers $ires, libraries $lres])
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Config/ |
| H A D | config.h.cmake | 1 /* This generated file is for internal use. Do not include it from headers. */ 17 /* Directories clang will search for headers */
|
| H A D | config.h.in | 1 /* This generated file is for internal use. Do not include it from headers. */ 17 /* Directories clang will search for headers */
|
| /minix3/external/bsd/bind/dist/bin/named/ |
| H A D | statschannel.c | 1288 const char *querystring, const char *headers, void *arg, in render_xml() argument 1300 UNUSED(headers); in render_xml() 1323 const char *querystring, const char *headers, void *arg, in render_xml_all() argument 1329 querystring, headers, arg, in render_xml_all() 1336 const char *querystring, const char *headers, void *arg, in render_xml_status() argument 1342 querystring, headers, arg, in render_xml_status() 1349 const char *querystring, const char *headers, void *arg, in render_xml_server() argument 1355 querystring, headers, arg, in render_xml_server() 1362 const char *querystring, const char *headers, void *arg, in render_xml_zones() argument 1368 querystring, headers, arg, in render_xml_zones() [all …]
|
| /minix3/external/bsd/libevent/dist/ |
| H A D | http.c | 187 static int evhttp_add_header_internal(struct evkeyvalq *headers, 475 evhttp_is_connection_close(int flags, struct evkeyvalq* headers) in evhttp_is_connection_close() argument 479 const char *connection = evhttp_find_header(headers, "Proxy-Connection"); in evhttp_is_connection_close() 482 const char *connection = evhttp_find_header(headers, "Connection"); in evhttp_is_connection_close() 489 evhttp_is_connection_keepalive(struct evkeyvalq* headers) in evhttp_is_connection_keepalive() argument 491 const char *connection = evhttp_find_header(headers, "Connection"); in evhttp_is_connection_keepalive() 498 evhttp_maybe_add_date_header(struct evkeyvalq *headers) in evhttp_maybe_add_date_header() argument 500 if (evhttp_find_header(headers, "Date") == NULL) { in evhttp_maybe_add_date_header() 515 evhttp_add_header(headers, "Date", date); in evhttp_maybe_add_date_header() 523 evhttp_maybe_add_content_length_header(struct evkeyvalq *headers, in evhttp_maybe_add_content_length_header() argument [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/Driver/ |
| H A D | modules.m | 31 // MODULES_VALIDATE_SYSTEM_HEADERS_DEFAULT-NOT: -fmodules-validate-system-headers 33 // RUN: %clang -fmodules-validate-system-headers -### %s 2>&1 | FileCheck -check-prefix=MODULES_VAL… 34 // MODULES_VALIDATE_SYSTEM_HEADERS: -fmodules-validate-system-headers
|
| /minix3/external/bsd/llvm/dist/llvm/utils/ |
| H A D | sort_includes.py | 70 headers = api_headers + local_headers + project_headers + system_headers 71 header_lines = ['#include ' + h for h in headers]
|
| /minix3/external/bsd/file/dist/magic/magdir/ |
| H A D | vms | 8 # GRR 950122: I'm just guessing on these, based on inspection of the headers 10 # all had headers similar to this:
|