Symbol: headers
crypto/heimdal/appl/push/push.c
230
char **headers = NULL;
crypto/heimdal/appl/push/push.c
254
headers = emalloc(sizeof(char *) * (numheaders + 1));
crypto/heimdal/appl/push/push.c
256
headers[i] = strtok_r(tmp2, ",", &tmp2);
crypto/heimdal/appl/push/push.c
258
headers[numheaders] = NULL;
crypto/heimdal/appl/push/push.c
346
len = min(p - copy + 1, strlen(headers[i]));
crypto/heimdal/appl/push/push.c
347
if (strncasecmp(copy, headers[i], len) == 0) {
crypto/heimdal/appl/push/push.c
506
free (headers);
crypto/heimdal/appl/test/http_client.c
146
char **headers;
crypto/heimdal/appl/test/http_client.c
157
req->headers = NULL;
crypto/heimdal/appl/test/http_client.c
170
free(req->headers[i]);
crypto/heimdal/appl/test/http_client.c
171
free(req->headers);
crypto/heimdal/appl/test/http_client.c
182
if (strncasecmp(header, req->headers[i], len) == 0) {
crypto/heimdal/appl/test/http_client.c
183
return req->headers[i] + len + 1;
crypto/heimdal/appl/test/http_client.c
192
char **headers, int num_headers, struct http_req *req)
crypto/heimdal/appl/test/http_client.c
208
fdprintf(s, "%s\r\n", headers[i]);
crypto/heimdal/appl/test/http_client.c
245
req->headers = realloc(req->headers,
crypto/heimdal/appl/test/http_client.c
246
(req->num_headers + 1) * sizeof(req->headers[0]));
crypto/heimdal/appl/test/http_client.c
247
req->headers[req->num_headers] = emalloc(p - in_buf + 1);
crypto/heimdal/appl/test/http_client.c
248
memcpy(req->headers[req->num_headers], in_buf, p - in_buf);
crypto/heimdal/appl/test/http_client.c
249
req->headers[req->num_headers][p - in_buf] = '\0';
crypto/heimdal/appl/test/http_client.c
250
if (req->headers[req->num_headers] == NULL)
crypto/heimdal/appl/test/http_client.c
278
printf("header[%d] %s\n", i, req->headers[i]);
crypto/heimdal/appl/test/http_client.c
293
char *headers[10]; /* XXX */
crypto/heimdal/appl/test/http_client.c
340
http_query(host, page, headers, num_headers, &req);
crypto/heimdal/appl/test/http_client.c
342
free(headers[i]);
crypto/heimdal/appl/test/http_client.c
478
asprintf(&headers[0], "Authorization: Negotiate %s",
crypto/heimdal/appl/test/http_client.c
497
printf("%s\n", req.headers[i]);
crypto/heimdal/lib/hx509/file.c
123
hx509_pem_add_header(hx509_pem_header **headers,
crypto/heimdal/lib/hx509/file.c
143
h->next = *headers;
crypto/heimdal/lib/hx509/file.c
144
*headers = h;
crypto/heimdal/lib/hx509/file.c
150
hx509_pem_free_header(hx509_pem_header *headers)
crypto/heimdal/lib/hx509/file.c
153
while (headers) {
crypto/heimdal/lib/hx509/file.c
154
h = headers;
crypto/heimdal/lib/hx509/file.c
155
headers = headers->next;
crypto/heimdal/lib/hx509/file.c
188
hx509_pem_header *headers = NULL;
crypto/heimdal/lib/hx509/file.c
244
ret = hx509_pem_add_header(&headers, buf, p);
crypto/heimdal/lib/hx509/file.c
274
ret = (*func)(context, type, headers, data, len, ctx);
crypto/heimdal/lib/hx509/file.c
282
hx509_pem_free_header(headers);
crypto/heimdal/lib/hx509/file.c
283
headers = NULL;
crypto/heimdal/lib/hx509/file.c
298
if (headers)
crypto/heimdal/lib/hx509/file.c
299
hx509_pem_free_header(headers);
crypto/heimdal/lib/hx509/file.c
76
hx509_pem_header *headers, FILE *f,
crypto/heimdal/lib/hx509/file.c
87
while (headers) {
crypto/heimdal/lib/hx509/file.c
89
headers->header, headers->value,
crypto/heimdal/lib/hx509/file.c
90
headers->next ? "" : "\n");
crypto/heimdal/lib/hx509/file.c
91
headers = headers->next;
crypto/heimdal/lib/hx509/hxtool.c
155
const hx509_pem_header *headers,
crypto/heimdal/lib/hx509/hxtool.c
167
h = hx509_pem_find_header(headers, "Content-disposition");
crypto/heimdal/lib/hx509/ks_file.c
142
const hx509_pem_header *headers,
crypto/heimdal/lib/hx509/ks_file.c
171
const hx509_pem_header *headers,
crypto/heimdal/lib/hx509/ks_file.c
178
enc = hx509_pem_find_header(headers, "Proc-Type");
crypto/heimdal/lib/hx509/ks_file.c
207
dek = hx509_pem_find_header(headers, "DEK-Info");
crypto/heimdal/lib/hx509/ks_file.c
51
const hx509_pem_header *headers,
crypto/openssl/apps/include/apps.h
194
int use_ssl, STACK_OF(CONF_VALUE) *headers,
crypto/openssl/apps/include/apps.h
297
const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/apps/include/apps.h
303
const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/apps/lib/apps.c
2606
const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/apps/lib/apps.c
2643
app_http_tls_cb, &info, 0 /* buf_size */, headers,
crypto/openssl/apps/lib/apps.c
2658
const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/apps/lib/apps.c
2681
0 /* buf_size */, headers, content_type, req_mem,
crypto/openssl/apps/ocsp.c
1289
int use_ssl, STACK_OF(CONF_VALUE) *headers,
crypto/openssl/apps/ocsp.c
1305
ctx, headers, "application/ocsp-request",
crypto/openssl/apps/ocsp.c
265
STACK_OF(CONF_VALUE) *headers = NULL;
crypto/openssl/apps/ocsp.c
550
if (!X509V3_add_value(header, value, &headers))
crypto/openssl/apps/ocsp.c
778
use_ssl, headers, req_timeout);
crypto/openssl/apps/ocsp.c
921
sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
crypto/openssl/crypto/asn1/asn_mime.c
415
STACK_OF(MIME_HEADER) *headers = NULL;
crypto/openssl/crypto/asn1/asn_mime.c
425
if ((headers = mime_parse_hdr(bio)) == NULL) {
crypto/openssl/crypto/asn1/asn_mime.c
430
if ((hdr = mime_hdr_find(headers, "content-type")) == NULL
crypto/openssl/crypto/asn1/asn_mime.c
432
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
443
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
448
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
458
if ((headers = mime_parse_hdr(asnin)) == NULL) {
crypto/openssl/crypto/asn1/asn_mime.c
466
if ((hdr = mime_hdr_find(headers, "content-type")) == NULL
crypto/openssl/crypto/asn1/asn_mime.c
468
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
477
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
481
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
504
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
508
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
587
STACK_OF(MIME_HEADER) *headers;
crypto/openssl/crypto/asn1/asn_mime.c
590
if ((headers = mime_parse_hdr(in)) == NULL) {
crypto/openssl/crypto/asn1/asn_mime.c
594
if ((hdr = mime_hdr_find(headers, "content-type")) == NULL
crypto/openssl/crypto/asn1/asn_mime.c
597
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
603
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
606
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/asn1/asn_mime.c
698
STACK_OF(MIME_HEADER) *headers;
crypto/openssl/crypto/asn1/asn_mime.c
701
headers = sk_MIME_HEADER_new(mime_hdr_cmp);
crypto/openssl/crypto/asn1/asn_mime.c
702
if (headers == NULL)
crypto/openssl/crypto/asn1/asn_mime.c
737
if (!sk_MIME_HEADER_push(headers, new_hdr))
crypto/openssl/crypto/asn1/asn_mime.c
794
if (!sk_MIME_HEADER_push(headers, new_hdr))
crypto/openssl/crypto/asn1/asn_mime.c
806
sk_MIME_HEADER_sort(headers);
crypto/openssl/crypto/asn1/asn_mime.c
807
for (i = 0; i < sk_MIME_HEADER_num(headers); i++)
crypto/openssl/crypto/asn1/asn_mime.c
808
if ((mhdr = sk_MIME_HEADER_value(headers, i)) != NULL
crypto/openssl/crypto/asn1/asn_mime.c
811
return headers;
crypto/openssl/crypto/asn1/asn_mime.c
815
sk_MIME_HEADER_pop_free(headers, mime_hdr_free);
crypto/openssl/crypto/cmp/cmp_http.c
120
sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
crypto/openssl/crypto/cmp/cmp_http.c
52
STACK_OF(CONF_VALUE) *headers = NULL;
crypto/openssl/crypto/cmp/cmp_http.c
65
if (!X509V3_add_value("Pragma", "no-cache", &headers))
crypto/openssl/crypto/cmp/cmp_http.c
98
0 /* buf_size */, headers,
crypto/openssl/crypto/http/http_client.c
1160
const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/crypto/http/http_client.c
1182
&& add1_headers(rctx, headers, rctx->server)
crypto/openssl/crypto/http/http_client.c
1269
int buf_size, const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/crypto/http/http_client.c
1303
if (!OSSL_HTTP_set1_request(rctx, path, headers,
crypto/openssl/crypto/http/http_client.c
1361
int buf_size, const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/crypto/http/http_client.c
1376
if (OSSL_HTTP_set1_request(rctx, path, headers, content_type, req,
crypto/openssl/crypto/http/http_client.c
375
const STACK_OF(CONF_VALUE) *headers, const char *host)
crypto/openssl/crypto/http/http_client.c
381
for (i = 0; i < sk_CONF_VALUE_num(headers); i++) {
crypto/openssl/crypto/http/http_client.c
382
hdr = sk_CONF_VALUE_value(headers, i);
crypto/openssl/include/openssl/http.h
100
int buf_size, const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/include/openssl/http.h
83
const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/include/openssl/http.h
91
int buf_size, const STACK_OF(CONF_VALUE) *headers,
crypto/openssl/test/http_test.c
162
STACK_OF(CONF_VALUE) *headers = NULL;
crypto/openssl/test/http_test.c
197
0 /* buf_size */, headers,
crypto/openssl/test/http_test.c
204
0 /* buf_size */, headers, content_type,
crypto/openssl/test/http_test.c
238
sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
lib/libc/tests/sys/sendfile_test.c
655
struct iovec headers[1], trailers[1];
lib/libc/tests/sys/sendfile_test.c
684
headers[0].iov_base = "This is a header";
lib/libc/tests/sys/sendfile_test.c
685
headers[0].iov_len = strlen(headers[0].iov_base);
lib/libc/tests/sys/sendfile_test.c
696
hdtr.headers = headers;
lib/libc/tests/sys/sendfile_test.c
697
hdtr.hdr_cnt = nitems(headers);
lib/libc/tests/sys/sendfile_test.c
699
hdtr.headers = NULL;
lib/libc/tests/sys/sendfile_test.c
716
testcases[i].include_headers ? (char *)headers[0].iov_base : "",
lib/libc/tests/sys/sendfile_test.c
797
hdtr2.headers = (struct iovec*)-1;
stand/efi/libefi/efihttp.c
391
EFI_HTTP_HEADER headers[3];
stand/efi/libefi/efihttp.c
465
message.Headers = headers;
stand/efi/libefi/efihttp.c
470
headers[0].FieldName = (CHAR8 *)"Host";
stand/efi/libefi/efihttp.c
471
headers[0].FieldValue = (CHAR8 *)hostp;
stand/efi/libefi/efihttp.c
472
headers[1].FieldName = (CHAR8 *)"Connection";
stand/efi/libefi/efihttp.c
473
headers[1].FieldValue = (CHAR8 *)"close";
stand/efi/libefi/efihttp.c
474
headers[2].FieldName = (CHAR8 *)"Accept";
stand/efi/libefi/efihttp.c
475
headers[2].FieldValue = (CHAR8 *)"*/*";
sys/compat/freebsd32/freebsd32_misc.c
2163
uint32_t headers;
sys/compat/freebsd32/freebsd32_misc.c
2192
PTRIN_CP(hdtr32, hdtr, headers);
sys/compat/freebsd32/freebsd32_misc.c
2197
if (hdtr.headers != NULL) {
sys/compat/freebsd32/freebsd32_misc.c
2198
iov32 = PTRIN(hdtr32.headers);
sys/dev/isci/scil/scic_sds_controller.c
413
this_controller->uf_control.headers.physical_address);
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
141
uf->header = &uf_control->headers.array[index];
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
156
uf->header = &uf_control->headers.array[index];
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
221
uf_control->headers.physical_address = uf_buffer_phys_address;
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
223
uf_control->headers.physical_address, used_uf_buffer_bytes);
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
225
uf_control->headers.physical_address, unused_uf_header_bytes);
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
227
uf_control->headers.array = (SCU_UNSOLICITED_FRAME_HEADER_T*)
sys/dev/isci/scil/scic_sds_unsolicited_frame_control.h
247
SCIC_SDS_UF_HEADER_ARRAY_T headers;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1779
#define HEADER_IS_ZERO(match_criteria, headers) \
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1780
!(memchr_inv(MLX5_ADDR_OF(fte_match_param, match_criteria, headers), \
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1781
0, MLX5_FLD_SZ_BYTES(fte_match_param, headers))) \
sys/kern/kern_sendfile.c
1220
if (hdtr.headers != NULL) {
sys/kern/kern_sendfile.c
1221
error = copyinuio(hdtr.headers, hdtr.hdr_cnt,
sys/sys/socket.h
654
struct iovec *headers; /* pointer to an array of header struct iovec's */
tools/regression/sockets/sendfile/sendfile.c
271
struct iovec headers;
tools/regression/sockets/sendfile/sendfile.c
300
bzero(&headers, sizeof(headers));
tools/regression/sockets/sendfile/sendfile.c
301
headers.iov_base = header;
tools/regression/sockets/sendfile/sendfile.c
302
headers.iov_len = test.hdr_length;
tools/regression/sockets/sendfile/sendfile.c
304
hdtr.headers = &headers;
tools/tools/netrate/httpd/httpd.c
147
sf_hdtr.headers = header_iovec;
usr.bin/mail/cmd1.c
121
return (headers(cur));
usr.bin/mail/cmdtab.c
84
{ "headers", headers, MSGLIST, 0, MMNDEL },
usr.bin/mail/extern.h
136
int headers(void *);
usr.bin/mail/lex.c
584
headers(vec);
usr.bin/truss/syscalls.c
2625
print_iovec(fp, trussinfo, (uintptr_t)hdtr.headers,
usr.sbin/config/config.h
249
void headers(void);
usr.sbin/config/main.cc
258
headers(); /* make a lot of .h files */