| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | SymbolicFile.h | 67 template <class content_type> class content_iterator { 68 content_type Current; 72 using value_type = content_type; 77 content_iterator(content_type symb) : Current(std::move(symb)) {} in content_iterator() 79 const content_type *operator->() const { return &Current; } 81 const content_type &operator*() const { return Current; }
|
| /freebsd-13.1/sys/arm/nvidia/drm2/ |
| H A D | hdmi.c | 140 ((frame->content_type & 0x3) << 4) | in hdmi_avi_infoframe_pack() 643 hdmi_content_type_get_name(enum hdmi_content_type content_type) in hdmi_content_type_get_name() argument 645 switch (content_type) { in hdmi_content_type_get_name() 688 hdmi_content_type_get_name(frame->content_type)); in hdmi_avi_infoframe_log() 1035 frame->content_type = (ptr[4] >> 4) & 0x3; in hdmi_avi_infoframe_unpack()
|
| H A D | hdmi.h | 151 enum hdmi_content_type content_type; member
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_set_msg_callback.pod | 17 int content_type, const void *buf, 23 int content_type, const void *buf, 59 =item I<content_type>
|
| H A D | OCSP_sendreq_new.pod | 35 int OCSP_REQ_CTX_i2d(OCSP_REQ_CTX *rctx, const char *content_type, 70 The B<content_type>, if not NULL, will be included in the HTTP request.
|
| /freebsd-13.1/contrib/wpa/src/utils/ |
| H A D | http-utils.h | 52 const char *content_type, const char *ext_hdr,
|
| H A D | http_curl.c | 1681 const char *content_type, const char *ext_hdr, in http_post() argument 1700 if (content_type) { in http_post() 1702 snprintf(ct, sizeof(ct), "Content-Type: %s", content_type); in http_post()
|
| /freebsd-13.1/contrib/googletest/googletest/scripts/ |
| H A D | upload.py | 292 content_type="application/octet-stream", argument 324 req.add_header("Content-Type", content_type) 529 content_type = 'multipart/form-data; boundary=%s' % BOUNDARY 530 return content_type, body 694 content_type=ctype) 1200 response_body = rpc_server.Send(url, body, content_type=ctype) 1347 response_body = rpc_server.Send("/upload", body, content_type=ctype)
|
| /freebsd-13.1/contrib/googletest/googlemock/scripts/ |
| H A D | upload.py | 292 content_type="application/octet-stream", argument 324 req.add_header("Content-Type", content_type) 529 content_type = 'multipart/form-data; boundary=%s' % BOUNDARY 530 return content_type, body 694 content_type=ctype) 1200 response_body = rpc_server.Send(url, body, content_type=ctype) 1347 response_body = rpc_server.Send("/upload", body, content_type=ctype)
|
| /freebsd-13.1/contrib/wpa/src/tls/ |
| H A D | tlsv1_record.h | 64 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
|
| H A D | tlsv1_record.c | 150 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf, in tlsv1_record_send() argument 165 *pos++ = content_type; in tlsv1_record_send()
|
| /freebsd-13.1/contrib/libevent/sample/ |
| H A D | http-server.c | 72 const char *content_type; member 101 return ent->content_type; in guess_content_type()
|
| /freebsd-13.1/crypto/openssl/crypto/pkcs7/ |
| H A D | pk7_lib.c | 139 p7->d.signed_and_enveloped->enc_data->content_type in PKCS7_set_type() 149 p7->d.enveloped->enc_data->content_type = OBJ_nid2obj(NID_pkcs7_data); in PKCS7_set_type() 158 p7->d.encrypted->enc_data->content_type = OBJ_nid2obj(NID_pkcs7_data); in PKCS7_set_type()
|
| H A D | pk7_asn1.c | 146 ASN1_SIMPLE(PKCS7_ENC_CONTENT, content_type, ASN1_OBJECT),
|
| /freebsd-13.1/crypto/openssl/apps/ |
| H A D | s_apps.h | 40 void msg_cb(int write_p, int version, int content_type, const void *buf,
|
| H A D | s_cb.c | 561 void msg_cb(int write_p, int version, int content_type, const void *buf, in msg_cb() argument 576 switch (content_type) { in msg_cb()
|
| /freebsd-13.1/contrib/wpa/src/crypto/ |
| H A D | tls_openssl.c | 1330 static const char * openssl_content_type(int content_type) in openssl_content_type() argument 1332 switch (content_type) { in openssl_content_type() 1356 if (content_type == 257 && buf && len == 1) in openssl_handshake_type() 1358 if (content_type != 22 || !buf || len == 0) in openssl_handshake_type() 1505 version, content_type); in tls_msg_cb() 1511 write_p ? "TX" : "RX", version, content_type, in tls_msg_cb() 1512 openssl_content_type(content_type), in tls_msg_cb() 1513 openssl_handshake_type(content_type, buf, len)); in tls_msg_cb() 1515 if (content_type == 24 && len >= 3 && pos[0] == 1) { in tls_msg_cb() 1529 if (content_type == 22 && pos && len > 0 && pos[0] == 2) in tls_msg_cb() [all …]
|
| /freebsd-13.1/lib/libfetch/ |
| H A D | http.c | 1588 struct url *purl, const char *flags, const char *content_type, in http_request_body() argument 1778 if (content_type != NULL) in http_request_body() 1779 http_cmd(conn, "Content-Type: %s", content_type); in http_request_body() 2147 const char *content_type, const char *body) in fetchReqHTTP() argument 2151 flags, content_type, body)); in fetchReqHTTP()
|
| /freebsd-13.1/contrib/ntp/sntp/libevent/include/event2/ |
| H A D | http.h | 234 const char *content_type);
|
| /freebsd-13.1/crypto/openssl/include/openssl/ |
| H A D | pkcs7.h | 75 ASN1_OBJECT *content_type; member
|
| H A D | ssl.h | 630 int content_type, const void *buf, 634 int content_type, const void *buf, 2169 void SSL_trace(int write_p, int version, int content_type,
|
| /freebsd-13.1/contrib/libevent/include/event2/ |
| H A D | http.h | 234 const char *content_type);
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_ra_serf/ |
| H A D | util.c | 814 serf_bucket_t *body_bkt, const char *content_type, in setup_serf_req() argument 868 if (content_type) in setup_serf_req() 870 serf_bucket_headers_setn(*hdrs_bkt, "Content-Type", content_type); in setup_serf_req()
|
| /freebsd-13.1/crypto/openssl/ssl/ |
| H A D | t1_trce.c | 1510 void SSL_trace(int write_p, int version, int content_type, in SSL_trace() argument 1516 switch (content_type) { in SSL_trace()
|
| /freebsd-13.1/crypto/openssl/doc/man7/ |
| H A D | ssl.pod | 358 …_msg_callback>(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *bu… 651 =item void B<SSL_set_msg_callback>(SSL *ctx, void (*cb)(int write_p, int version, int content_type,…
|