Home
last modified time | relevance | path

Searched refs:reply_code (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/doc/examples/
Dhttp_multiclient.c40 int ret, n, reply_code; in process_client() local
54 reply_code = 200; in process_client()
56 reply_code = AVERROR_HTTP_NOT_FOUND; in process_client()
58 if ((ret = av_opt_set_int(client, "reply_code", reply_code, AV_OPT_SEARCH_CHILDREN)) < 0) { in process_client()
62 av_log(client, AV_LOG_TRACE, "Set reply code to %d\n", reply_code); in process_client()
70 if (reply_code != 200) in process_client()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
Dhttp_client.c57 int reply_code = httpread_reply_code_get(c->hread); in http_client_got_response() local
58 if (reply_code == 200 /* OK */) { in http_client_got_response()
66 "%s:%d", reply_code, in http_client_got_response()
Dhttpread.c67 int reply_code; /* for type REPLY, e.g. 200 for HTTP/1.1 200 OK */ member
221 h->reply_code = atol(hbp); in httpread_hdr_analyze()
328 if (h->reply_code != 200) in httpread_hdr_analyze()
789 return h->reply_code; in httpread_reply_code_get()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
Dhttp_client.c57 int reply_code = httpread_reply_code_get(c->hread); in http_client_got_response() local
58 if (reply_code == 200 /* OK */) { in http_client_got_response()
66 "%s:%d", reply_code, in http_client_got_response()
Dhttpread.c67 int reply_code; /* for type REPLY, e.g. 200 for HTTP/1.1 200 OK */ member
221 h->reply_code = atol(hbp); in httpread_hdr_analyze()
328 if (h->reply_code != 200) in httpread_hdr_analyze()
789 return h->reply_code; in httpread_reply_code_get()
/third_party/ffmpeg/libavformat/
Dhttp.c125 int reply_code; member
172 …{ "reply_code", "The http status code to return to a client", OFFSET(reply_code), AV_OPT_TYPE_INT,…
469 int ret, body = 0, reply_code, message_len; in http_write_reply() local
480 reply_code = 400; in http_write_reply()
485 reply_code = 403; in http_write_reply()
490 reply_code = 404; in http_write_reply()
494 reply_code = 200; in http_write_reply()
500 reply_code = 500; in http_write_reply()
515 reply_code, in http_write_reply()
520 reply_code, in http_write_reply()
[all …]