Home
last modified time | relevance | path

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/
Drole.rs325 *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 …]
Dmod.rs77 req_method: &'a mut Option<Method>, field
101 req_method: &'a mut Option<Method>, field
Dio.rs189 req_method: parse_ctx.req_method, in parse()
734 req_method: &mut None, in parse_reads_until_blocked()
Dconn.rs199 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 Dhttp.c2147 *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 Dhttp_auth_handler_digest_unittest.cc439 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 Dwolfssl.c851 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 Dopenssl.c3488 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()