Searched refs:req_method (Results 1 – 8 of 8) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/proto/h1/ |
D | role.rs | 325 *ctx.req_method = Some(subject.0.clone()); in parse() 346 msg.req_method in encode() 357 } else if msg.req_method == &Some(Method::CONNECT) && msg.head.subject.is_success() { in encode() 753 if msg.req_method == &Some(Method::HEAD) { in encode_headers() 776 || !Server::can_chunked(msg.req_method, msg.head.subject) in encode_headers() 844 || !Server::can_chunked(msg.req_method, msg.head.subject) in encode_headers() 858 msg.req_method, in encode_headers() 870 if !Server::can_have_content_length(msg.req_method, msg.head.subject) { in encode_headers() 886 if !Server::can_have_body(msg.req_method, msg.head.subject) { in encode_headers() 889 msg.req_method, in encode_headers() [all …]
|
D | mod.rs | 77 req_method: &'a mut Option<Method>, field 101 req_method: &'a mut Option<Method>, field
|
D | io.rs | 189 req_method: parse_ctx.req_method, in parse() 734 req_method: &mut None, in parse_reads_until_blocked()
|
D | conn.rs | 199 req_method: &mut self.state.method, in poll_read_head() 562 req_method: &mut self.state.method, in encode_head()
|
/aosp_15_r20/external/libcups/cups/ |
H A D | http.c | 2147 *req_method, /* HTTP request method */ in httpReadRequest() local 2208 req_method = line; in httpReadRequest() 2247 if (!strcmp(req_method, "OPTIONS")) in httpReadRequest() 2249 else if (!strcmp(req_method, "GET")) in httpReadRequest() 2251 else if (!strcmp(req_method, "HEAD")) in httpReadRequest() 2253 else if (!strcmp(req_method, "POST")) in httpReadRequest() 2255 else if (!strcmp(req_method, "PUT")) in httpReadRequest() 2257 else if (!strcmp(req_method, "DELETE")) in httpReadRequest() 2259 else if (!strcmp(req_method, "TRACE")) in httpReadRequest() 2261 else if (!strcmp(req_method, "CONNECT")) in httpReadRequest() [all …]
|
/aosp_15_r20/external/cronet/net/http/ |
H A D | http_auth_handler_digest_unittest.cc | 439 const char* req_method; in TEST() member 663 test.req_method, test.req_path, in TEST()
|
/aosp_15_r20/external/curl/lib/vtls/ |
H A D | wolfssl.c | 851 WOLFSSL_METHOD* req_method = NULL; in wolfssl_connect_step1() local 863 req_method = wolfSSLv23_client_method(); in wolfssl_connect_step1() 865 req_method = wolfTLS_client_method(); in wolfssl_connect_step1() 867 if(!req_method) { in wolfssl_connect_step1() 875 backend->ctx = wolfSSL_CTX_new(req_method); in wolfssl_connect_step1()
|
H A D | openssl.c | 3488 SSL_METHOD_QUAL SSL_METHOD *req_method = NULL; in Curl_ossl_ctx_init() local 3521 req_method = TLS_client_method(); in Curl_ossl_ctx_init() 3523 req_method = SSLv23_client_method(); in Curl_ossl_ctx_init() 3545 req_method = OSSL_QUIC_client_method(); in Curl_ossl_ctx_init() 3547 req_method = TLS_method(); in Curl_ossl_ctx_init() 3549 req_method = SSLv23_client_method(); in Curl_ossl_ctx_init() 3559 octx->ssl_ctx = SSL_CTX_new(req_method); in Curl_ossl_ctx_init()
|