Home
last modified time | relevance | path

Searched refs:HTTP_GET (Results 1 – 19 of 19) sorted by relevance

/Zephyr-latest/samples/net/sockets/echo_server/src/ws_console/
Dws.c21 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
35 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
49 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/samples/net/sockets/http_server/src/
Dmain.c51 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
62 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
109 .bitmask_of_supported_http_methods = BIT(HTTP_GET) | BIT(HTTP_POST),
145 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
225 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
238 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/tests/net/lib/http_server/common/src/
Dmain.c16 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
20 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
24 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
28 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
32 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
36 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/include/zephyr/net/http/
Dmethod.h30 HTTP_GET = 1, /**< GET */ enumerator
/Zephyr-latest/samples/net/prometheus/src/
Dstats.c75 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
Dmain.c79 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/include/zephyr/shell/
Dshell_websocket.h92 .bitmask_of_supported_http_methods = BIT(HTTP_GET), \
/Zephyr-latest/tests/net/lib/http_server/crime/src/
Dmain.c54 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/samples/net/sockets/http_client/src/
Dmain.c197 req.method = HTTP_GET; in run_queries()
215 req.method = HTTP_GET; in run_queries()
/Zephyr-latest/doc/connectivity/networking/api/
Dhttp_client.rst34 req.method = HTTP_GET;
Dhttp_server.rst167 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
201 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
273 BIT(HTTP_GET) | BIT(HTTP_POST),
355 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/tests/net/lib/http_server/tls/src/
Dmain.c118 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
/Zephyr-latest/tests/net/lib/http_server/core/src/
Dmain.c237 .bitmask_of_supported_http_methods = BIT(HTTP_GET),
261 case HTTP_GET: in dynamic_cb()
301 BIT(HTTP_GET) | BIT(HTTP_DELETE) | BIT(HTTP_POST) |
364 .bitmask_of_supported_http_methods = BIT(HTTP_GET) | BIT(HTTP_POST),
374 .bitmask_of_supported_http_methods = BIT(HTTP_GET) | BIT(HTTP_POST),
485 if (client->method == HTTP_GET) { in dynamic_response_headers_cb()
522 .bitmask_of_supported_http_methods = BIT(HTTP_GET) | BIT(HTTP_POST),
/Zephyr-latest/subsys/net/lib/http/
Dhttp_server_http1.c59 if (static_detail->common.bitmask_of_supported_http_methods & BIT(HTTP_GET)) { in handle_http1_static_resource()
408 if (!(static_fs_detail->common.bitmask_of_supported_http_methods & BIT(HTTP_GET))) { in handle_http1_static_fs_resource()
528 case HTTP_GET: in handle_http1_dynamic_resource()
Dhttp_server_http2.c362 if (!(static_detail->common.bitmask_of_supported_http_methods & BIT(HTTP_GET))) { in handle_http2_static_resource()
416 if (!(static_fs_detail->common.bitmask_of_supported_http_methods & BIT(HTTP_GET))) { in handle_http2_static_fs_resource()
737 case HTTP_GET: in handle_http2_dynamic_resource()
1272 HTTP_GET, HTTP_DELETE, HTTP_POST, HTTP_PUT, HTTP_PATCH in process_header() enumerator
Dhttp_parser.c1130 parser->method = HTTP_GET; in parser_execute()
/Zephyr-latest/tests/net/lib/http_header_fields/src/
Dmain.c622 zassert_false(strcmp("GET", http_method_str(HTTP_GET)), in ZTEST()
/Zephyr-latest/subsys/net/lib/websocket/
Dwebsocket.c310 req.method = HTTP_GET; in websocket_connect()
/Zephyr-latest/subsys/mgmt/hawkbit/
Dhawkbit.c1064 http_req.method = HTTP_GET; in send_request()