Home
last modified time | relevance | path

Searched refs:http_code (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/libavformat/
Dhttp.c71 int http_code; member
280 char http_code[4]; in http_should_reconnect() local
305 snprintf(http_code, sizeof(http_code), "%d", s->http_code); in http_should_reconnect()
307 return av_match_list(http_code, s->reconnect_on_http_error, ',') > 0; in http_should_reconnect()
400 if (s->http_code == 401) { in http_open_cnx()
408 if (s->http_code == 407) { in http_open_cnx()
416 if ((s->http_code == 301 || s->http_code == 302 || in http_open_cnx()
417 s->http_code == 303 || s->http_code == 307 || s->http_code == 308) && in http_open_cnx()
425 s->expires = (s->http_code == 301 || s->http_code == 308) ? INT64_MAX : -1; in http_open_cnx()
449 return ff_http_averror(s->http_code, AVERROR(EIO)); in http_open_cnx()
[all …]
/third_party/node/deps/openssl/openssl/apps/
Dtsget.in103 my $http_code = $curl->getinfo(CURLINFO_HTTP_CODE);
105 $error_string .= ", http code: $http_code" unless $http_code == 0;
/third_party/openssl/apps/
Dtsget.in103 my $http_code = $curl->getinfo(CURLINFO_HTTP_CODE);
105 $error_string .= ", http code: $http_code" unless $http_code == 0;
/third_party/curl/tests/data/
Dtest1531 http://%HOSTIP:%HTTPPORT/want/%TESTNUMBER --write-out "%{url_effective} %{http_code} %{size_downloa…
Dtest99039 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -w '%output{%LOGDIR/output}%{http_code}\n'
Dtest99142 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -w '%output{>>%LOGDIR/output}%{http_code}'
Dtest21735 …th/%TESTNUMBER0002 --proxy http://%HOSTIP:%HTTPPORT --proxytunnel -w "%{http_code} %{http_connect}…
Dtest97263 …xitcode":0,"filename_effective":"%LOGDIR/out972","ftp_entry_path":null,"http_code":200,"http_conne…
Dtest97062 …:0,"filename_effective":"%LOGDIR/out%TESTNUMBER","ftp_entry_path":null,"http_code":200,"http_conne…
/third_party/curl/docs/cmdline-opts/
Dwrite-out.md88 ## `http_code`
152 known as "http_code"). (Added in 7.18.2)
/third_party/elfutils/debuginfod/
Ddebuginfod.cxx2584 int http_code = 500; in handler_cb() local
2677 http_code = MHD_HTTP_OK; in handler_cb()
2684 http_code = e.code; in handler_cb()
2695 << ' ' << http_code << ' ' << http_size in handler_cb()
2700 string http_code_str = to_string(http_code); in handler_cb()