/subsys/net/lib/http/ |
A D | http_parser.c | 1005 parser->method = HTTP_HEAD; in parser_execute() 1281 parser->method = HTTP_ACL; in parser_execute() 1284 parser->method = HTTP_BIND; in parser_execute() 1294 parser->method = HTTP_GET; in parser_execute() 1297 parser->method = HTTP_HEAD; in parser_execute() 1303 parser->method = in parser_execute() 1316 parser->method = HTTP_POST; in parser_execute() 1326 parser->method = HTTP_TRACE; in parser_execute() 1368 parser->method = HTTP_PUT; in parser_execute() 1377 parser->method = HTTP_COPY; in parser_execute() [all …]
|
A D | http_server_http1.c | 139 if (client->method != HTTP_GET) { in handle_http1_static_resource() 509 if (client->method != HTTP_GET) { in handle_http1_static_fs_resource() 602 if (!(BIT(client->method) & user_method)) { in handle_http1_dynamic_resource() 617 switch (client->method) { in handle_http1_dynamic_resource() 637 if (user_method & BIT(client->method)) { in handle_http1_dynamic_resource() 646 if (user_method & BIT(client->method)) { in handle_http1_dynamic_resource() 655 http_method_str(client->method), in handle_http1_dynamic_resource() 656 client->method); in handle_http1_dynamic_resource() 950 client->method = client->parser.method; in handle_http1_request()
|
A D | http_client.c | 341 if ((req->method == HTTP_HEAD || req->method == HTTP_OPTIONS) && in on_headers_complete() 364 http_method_str(req->method)); in on_message_begin() 381 http_method_str(req->method)); in on_message_complete() 640 const char *method; in http_client_req() local 658 method = http_method_str(req->method); in http_client_req() 661 req_end_timepoint, method, in http_client_req()
|
A D | http_server_http2.c | 421 if (client->method != HTTP_GET) { in handle_http2_static_resource() 474 if (client->method != HTTP_GET) { in handle_http2_static_fs_resource() 796 switch (client->method) { in handle_http2_dynamic_resource() 799 if (user_method & BIT(client->method)) { in handle_http2_dynamic_resource() 811 if (user_method & BIT(client->method)) { in handle_http2_dynamic_resource() 833 http_method_str(client->method), in handle_http2_dynamic_resource() 834 client->method); in handle_http2_dynamic_resource() 1121 if (client->method == HTTP_POST || in handle_http1_to_http2_upgrade() 1122 client->method == HTTP_PUT || in handle_http1_to_http2_upgrade() 1123 client->method == HTTP_PATCH) { in handle_http1_to_http2_upgrade() [all …]
|
/subsys/sip_svc/ |
A D | sip_svc_shell.c | 53 shell_error(sh, "%s: register fail", ctrl->method); in cmd_reg() 56 shell_print(sh, "%s: register success: client token %08x\n", ctrl->method, c_token); in cmd_reg() 87 shell_error(sh, "%s: unregister fail (%d): client token %08x", ctrl->method, err, in cmd_unreg() 90 shell_print(sh, "%s: unregister success: client token %08x", ctrl->method, in cmd_unreg() 141 shell_error(sh, "%s: open fail (%d): client token %08x", ctrl->method, err, in cmd_open() 144 shell_print(sh, "%s: open success: client token %08x", ctrl->method, in cmd_open() 175 shell_error(sh, "%s: close fail (%d): client token %08x", ctrl->method, err, in cmd_close() 178 shell_print(sh, "%s: close success: client token %08x", ctrl->method, in cmd_close() 327 shell_error(sh, "%s: send fail: client token %08x", ctrl->method, in cmd_send() 334 shell_print(sh, "%s: send success: client token %08x, trans_id %d", ctrl->method, in cmd_send()
|
A D | sip_svc_subsys.c | 509 LOG_INF("%s : triggering %s call", __func__, ctrl->method); in sip_svc_request_handler() 583 LOG_INF("%s : triggering %s call", __func__, ctrl->method); in sip_svc_async_response_handler() 584 LOG_DBG("%s (polling async response)", ctrl->method); in sip_svc_async_response_handler() 793 void *sip_svc_get_controller(char *method) in sip_svc_get_controller() argument 795 if (method == NULL) { in sip_svc_get_controller() 804 if (!strncmp(ctrl->method, method, SIP_SVC_SUBSYS_CONDUIT_NAME_LENGTH)) { in sip_svc_get_controller() 838 LOG_INF("Got registered conduit %.*s", (int)sizeof(ctrl->method), ctrl->method); in sip_svc_subsys_init()
|
/subsys/bluetooth/host/ |
A D | smp.c | 159 uint8_t method; member 2171 switch (smp->method) { in smp_send_pairing_confirm() 2430 uint8_t method; in legacy_get_pair_method() local 2462 return method; in legacy_get_pair_method() 2484 switch (smp->method) { in legacy_request_tk() 3564 switch (smp->method) { in smp_pairing_confirm() 3611 switch (smp->method) { in compute_and_send_central_dhcheck() 3656 switch (smp->method) { in compute_and_check_and_send_periph_dhcheck() 3817 switch (smp->method) { in sc_smp_check_confirm() 3971 switch (smp->method) { in smp_pairing_random() [all …]
|
A D | Kconfig | 223 This method is generally recommended within 16 bytes.
|
/subsys/net/lib/coap/ |
A D | coap.c | 1137 uint8_t code, coap_method_t *method) in method_from_code() argument 1141 *method = resource->get; in method_from_code() 1144 *method = resource->post; in method_from_code() 1147 *method = resource->put; in method_from_code() 1150 *method = resource->del; in method_from_code() 1153 *method = resource->fetch; in method_from_code() 1156 *method = resource->patch; in method_from_code() 1159 *method = resource->ipatch; in method_from_code() 1192 coap_method_t method; in coap_handle_request_len() local 1204 if (!method) { in coap_handle_request_len() [all …]
|
A D | coap_client.c | 218 COAP_TOKEN_MAX_LEN, internal_req->request_token, req->method, in coap_client_init_request() 1048 if (a->method && b->method && a->method != b->method) { in requests_match()
|
/subsys/net/lib/socks/ |
A D | socks_internal.h | 48 uint8_t method; member
|
A D | socks.c | 115 if (method_rsp.method != SOCKS5_AUTH_METHOD_NOAUTH) { in socks5_tcp_connect()
|
/subsys/bluetooth/mesh/ |
A D | prov.c | 172 int bt_mesh_prov_auth(bool is_provisioner, uint8_t method, uint8_t action, uint8_t size) in bt_mesh_prov_auth() argument 179 switch (method) { in bt_mesh_prov_auth()
|
A D | prov.h | 185 int bt_mesh_prov_auth(bool is_provisioner, uint8_t method, uint8_t action, uint8_t size);
|
A D | provisioner.c | 729 static void prov_set_method(uint8_t method, uint8_t action, uint8_t size) in prov_set_method() argument 731 bt_mesh_prov_link.oob_method = method; in prov_set_method()
|
/subsys/mgmt/updatehub/ |
A D | updatehub.c | 248 static int send_request(enum coap_msgtype msgtype, enum coap_method method, in send_request() argument 262 COAP_TOKEN_MAX_LEN, coap_next_token(), method, in send_request() 269 switch (method) { in send_request()
|
/subsys/net/ip/ |
A D | Kconfig.ipv6 | 231 method for generating IPv6 Interface Identifiers to be used with 233 address configured using this method is stable within each subnet, 235 moves from one network to another. This method is meant to be an
|
/subsys/mgmt/hawkbit/ |
A D | hawkbit.c | 1122 http_req.method = HTTP_PUT; in send_request() 1139 http_req.method = HTTP_POST; in send_request() 1157 http_req.method = HTTP_GET; in send_request() 1169 http_req.method = HTTP_GET; in send_request()
|
/subsys/logging/ |
A D | Kconfig.misc | 44 If enabled, runtime method is always used for message creation. Static
|
/subsys/pm/ |
A D | Kconfig | 60 prompt "Pre-wakeup microseconds to ticks conversion method"
|
/subsys/mgmt/mcumgr/grp/fs_mgmt/ |
A D | Kconfig | 169 write due to MCUmgr's method of operation with a single file state.
|
/subsys/mgmt/mcumgr/grp/img_mgmt/ |
A D | Kconfig | 167 to swap, this selects which method to use.
|
/subsys/net/lib/websocket/ |
A D | websocket.c | 312 req.method = HTTP_GET; in websocket_connect()
|
/subsys/bluetooth/mesh/shell/ |
A D | shell.c | 1675 SHELL_CMD(auth-method, &auth_cmds, "Authentication methods", bt_mesh_shell_mdl_cmds_help),
|