Searched refs:req_method (Results 1 – 8 of 8) sorted by relevance
/third_party/libsoup/libsoup/ |
D | soup-message-server-io.c | 48 char *req_method, *req_path, *url; in parse_request_headers() local 56 &req_method, in parse_request_headers() 69 SOUP_MESSAGE_METHOD, req_method, in parse_request_headers() 72 g_free (req_method); in parse_request_headers()
|
D | soup-headers.h | 25 char **req_method,
|
D | soup-headers.c | 181 char **req_method, in soup_headers_parse_request() argument 259 if (req_method) in soup_headers_parse_request() 260 *req_method = g_strndup (method, method_end - method); in soup_headers_parse_request()
|
/third_party/curl/lib/vtls/ |
D | wolfssl.c | 216 SSL_METHOD* req_method = NULL; in wolfssl_connect_step1() local 239 req_method = SSLv23_client_method(); in wolfssl_connect_step1() 243 req_method = TLSv1_client_method(); in wolfssl_connect_step1() 249 req_method = TLSv1_client_method(); in wolfssl_connect_step1() 258 req_method = TLSv1_1_client_method(); in wolfssl_connect_step1() 266 req_method = TLSv1_2_client_method(); in wolfssl_connect_step1() 271 req_method = wolfTLSv1_3_client_method(); in wolfssl_connect_step1() 283 if(!req_method) { in wolfssl_connect_step1() 290 backend->ctx = SSL_CTX_new(req_method); in wolfssl_connect_step1()
|
D | mesalink.c | 104 SSL_METHOD *req_method = NULL; in mesalink_connect_step1() local 124 req_method = TLSv1_2_client_method(); in mesalink_connect_step1() 127 req_method = TLSv1_3_client_method(); in mesalink_connect_step1() 137 if(!req_method) { in mesalink_connect_step1() 144 BACKEND->ctx = SSL_CTX_new(req_method); in mesalink_connect_step1()
|
D | openssl.c | 2589 SSL_METHOD_QUAL SSL_METHOD *req_method = NULL; in ossl_connect_step1() local 2644 req_method = TLS_client_method(); in ossl_connect_step1() 2646 req_method = SSLv23_client_method(); in ossl_connect_step1() 2663 backend->ctx = SSL_CTX_new(req_method); in ossl_connect_step1()
|
/third_party/cef/tests/ceftests/ |
D | cors_unittest.cc | 1644 const std::string& req_method = request->GetMethod(); in VerifyRequest() local 1648 EXPECT_STREQ("GET", req_method.c_str()) << GetPathURL(); in VerifyRequest() 1649 return !has_post_data && req_method == "GET"; in VerifyRequest() 1652 EXPECT_STREQ("POST", req_method.c_str()) << GetPathURL(); in VerifyRequest() 1653 return has_post_data && req_method == "POST"; in VerifyRequest()
|
/third_party/libsoup/ |
D | ChangeLog.pre-git | 3392 the right place). Allow req_method and req_path to be NULL.
|