| /subsys/dap/ |
| A D | cmsis_dap.c | 162 response[0] = length; in dap_info() 188 response[0] = DAP_OK; in dap_host_status() 229 response[0] = port; in dap_connect() 249 response[0] = DAP_OK; in dap_disconnect() 265 response[0] = DAP_OK; in dap_delay() 274 response[0] = DAP_OK; in dap_reset_target() 275 response[1] = 0U; in dap_reset_target() 314 response[0] = state; in dap_swj_pins() 786 response[2] = 0U; in dap_transferblock() 800 response[2] = 0U; in dap_transferblock() [all …]
|
| A D | Kconfig | 14 int "Maximum packet buffers for request and response data." 18 Maximum packet buffers for request and response data.
|
| /subsys/net/lib/http/ |
| A D | http_client.c | 183 if (req->internal.response.http_cb && in on_url() 314 req->internal.response.body_frag_len = req->internal.response.data_len - in on_body() 315 (req->internal.response.body_frag_start - req->internal.response.recv_buf); in on_body() 439 if (req->internal.response.cb) { in http_report_null() 453 req->internal.response.cb(&req->internal.response, HTTP_DATA_FINAL, in http_report_null() 461 if (req->internal.response.cb) { in http_report_complete() 463 (void)req->internal.response.cb(&req->internal.response, in http_report_complete() 472 if (req->internal.response.cb) { in http_report_progress() 476 return req->internal.response.cb(&req->internal.response, in http_report_progress() 649 memset(&req->internal.response, 0, sizeof(req->internal.response)); in http_client_req() [all …]
|
| A D | Kconfig | 114 int "Maximum HTTP/2 response header frame length" 119 (applies to response headers only, not request headers). The default 120 value is sufficient for the standard headers included with a response, 122 additional response headers. 199 HTTP 500 Internal Server Error response. Otherwise, no information 224 int "Size of static file system response buffer" 230 If set to 0, the server will use the minimal viable buffer size for the response.
|
| /subsys/net/lib/coap/ |
| A D | coap_link_format.c | 228 res = append(response, str + pos, len); in append_to_coap_pkt() 237 struct coap_packet *response, in format_uri() argument 308 struct coap_packet *response, in format_attributes() argument 353 struct coap_packet *response, in format_resource() argument 422 struct coap_packet *response, in coap_well_known_core_get_len() argument 525 r = clear_more_flag(response); in coap_well_known_core_get_len() 569 res = append_u8(response, (uint8_t) '>'); in format_uri() 578 struct coap_packet *response) in format_attributes() argument 603 struct coap_packet *response) in format_resource() argument 624 struct coap_packet *response, in coap_well_known_core_get_len() argument [all …]
|
| A D | coap_client.c | 607 struct coap_packet response; in handle_poll() local 610 ret = recv_response(client, &response, &response_truncated); in handle_poll() 788 uint8_t response_type = coap_header_get_type(response); in handle_response() 789 uint8_t response_code = coap_header_get_code(response); in handle_response() 790 uint16_t response_id = coap_header_get_id(response); in handle_response() 818 internal_req = get_request_with_token(client, response); in handle_response() 823 (void)send_rst(client, response); in handle_response() 829 if (find_echo_option(response, &client->echo_option)) { in handle_response() 880 ret = send_ack(client, response, COAP_CODE_EMPTY); in handle_response() 896 (void) send_rst(client, response); in handle_response() [all …]
|
| /subsys/fs/virtiofs/ |
| A D | virtiofs.h | 12 int virtiofs_init(const struct device *dev, struct fuse_init_out *response); 14 const struct device *dev, uint64_t inode, const char *name, struct fuse_entry_out *response, 17 const struct device *dev, uint64_t inode, uint32_t flags, struct fuse_open_out *response, 27 uint32_t mode, struct fuse_create_out *response); 33 uint32_t whence, struct fuse_lseek_out *response); 36 struct fuse_attr_out *response); 43 int virtiofs_statfs(const struct device *dev, struct fuse_kstatfs *response);
|
| A D | virtiofs.c | 181 *response = req.init_out; in virtiofs_init() 254 *response = req.entry_out; in virtiofs_lookup() 324 *response = req.open_out; in virtiofs_open() 415 uint32_t mode, struct fuse_create_out *response) in virtiofs_create() argument 445 *response = req.create_out; in virtiofs_create() 494 uint32_t whence, struct fuse_lseek_out *response) in virtiofs_lseek() argument 522 *response = req.lseek_out; in virtiofs_lseek() 533 struct fuse_attr_out *response) in virtiofs_setattr() argument 543 { .addr = response, .len = sizeof(*response) }, in virtiofs_setattr() 560 fuse_dump_attr_out(response); in virtiofs_setattr() [all …]
|
| /subsys/sip_svc/ |
| A D | sip_svc_subsys.c | 466 struct sip_svc_response response; in sip_svc_request_handler() local 527 response.a0 = res.a0; in sip_svc_request_handler() 528 response.a1 = res.a1; in sip_svc_request_handler() 529 response.a2 = res.a2; in sip_svc_request_handler() 530 response.a3 = res.a3; in sip_svc_request_handler() 549 struct sip_svc_response response; in sip_svc_async_response_handler() local 612 response.header = in sip_svc_async_response_handler() 614 response.a0 = res.a0; in sip_svc_async_response_handler() 615 response.a1 = res.a1; in sip_svc_async_response_handler() 616 response.a2 = res.a2; in sip_svc_async_response_handler() [all …]
|
| A D | sip_svc_agilex_mailbox_shell.c | 159 static void cmd_send_callback(uint32_t c_token, struct sip_svc_response *response) in cmd_send_callback() argument 161 if (response == NULL) { in cmd_send_callback() 165 struct private_data *priv = (struct private_data *)response->priv_data; in cmd_send_callback() 173 shell_print(sh, "\theader=%08x\n", response->header); in cmd_send_callback() 174 shell_print(sh, "\ta0=%016lx\n", response->a0); in cmd_send_callback() 175 shell_print(sh, "\ta1=%016lx\n", response->a1); in cmd_send_callback() 176 shell_print(sh, "\ta2=%016lx\n", response->a2); in cmd_send_callback() 177 shell_print(sh, "\ta3=%016lx\n", response->a3); in cmd_send_callback() 180 resp_data = (uint32_t *)response->resp_data_addr; in cmd_send_callback() 181 resp_len = response->resp_data_size / 4; in cmd_send_callback()
|
| A D | sip_svc_shell.c | 185 static void cmd_send_callback(uint32_t c_token, struct sip_svc_response *response) in cmd_send_callback() argument 187 if (response == NULL) { in cmd_send_callback() 191 struct private_data *priv = (struct private_data *)response->priv_data; in cmd_send_callback() 195 shell_print(sh, "\theader=%08x\n", response->header); in cmd_send_callback() 196 shell_print(sh, "\ta0=%016lx\n", response->a0); in cmd_send_callback() 197 shell_print(sh, "\ta1=%016lx\n", response->a1); in cmd_send_callback() 198 shell_print(sh, "\ta2=%016lx\n", response->a2); in cmd_send_callback() 199 shell_print(sh, "\ta3=%016lx\n", response->a3); in cmd_send_callback()
|
| /subsys/mgmt/hawkbit/ |
| A D | hawkbit_autohandler.c | 26 enum hawkbit_response response = hawkbit_probe(); in autohandler() local 28 k_event_set(&hawkbit_autohandler_event, BIT(response)); in autohandler() 30 switch (response) { in autohandler() 77 LOG_ERR("Invalid response: %d", response); in autohandler()
|
| /subsys/net/lib/mqtt_sn/ |
| A D | mqtt_sn.c | 595 response.params.gwinfo.gw_id = gw->gw_id; in mqtt_sn_do_gwinfo() 598 response.params.gwinfo.gw_add = addr; in mqtt_sn_do_gwinfo() 1389 encode_and_send(client, &response, 0); in handle_willtopicreq() 1399 encode_and_send(client, &response, 0); in handle_willmsgreq() 1422 encode_and_send(client, &response, 0); in handle_register() 1445 struct mqtt_sn_param response; in handle_publish() local 1457 encode_and_send(client, &response, 0); in handle_publish() 1462 encode_and_send(client, &response, 0); in handle_publish() 1497 encode_and_send(client, &response, 0); in handle_pubrec() 1506 encode_and_send(client, &response, 0); in handle_pubrel() [all …]
|
| /subsys/mgmt/mcumgr/ |
| A D | Kconfig | 23 bool "Legacy rc (result code) response behaviour" 26 This will enable legacy result code response behaviour of having rc 32 response will be empty with the new behaviour enabled, as opposed to 33 the old behaviour where the rc field will be present in the response.
|
| /subsys/sd/ |
| A D | sd_ops.c | 40 if ((cmd.response[0U] & SDHC_SPI_R2_CARD_LOCKED) || in sdmmc_read_status() 41 (cmd.response[0U] & SDHC_SPI_R2_UNLOCK_FAIL)) { in sdmmc_read_status() 43 } else if ((cmd.response[0U] & SDHC_SPI_R2_WP_VIOLATION) || in sdmmc_read_status() 44 (cmd.response[0U] & SDHC_SPI_R2_ERASE_PARAM) || in sdmmc_read_status() 45 (cmd.response[0U] & SDHC_SPI_R2_OUT_OF_RANGE)) { in sdmmc_read_status() 47 } else if ((cmd.response[0U] & SDHC_SPI_R2_ERR) || in sdmmc_read_status() 48 (cmd.response[0U] & SDHC_SPI_R2_CC_ERR) || in sdmmc_read_status() 49 (cmd.response[0U] & SDHC_SPI_R2_ECC_FAIL)) { in sdmmc_read_status() 56 if ((cmd.response[0U] & SD_R1_RDY_DATA) && in sdmmc_read_status() 57 (SD_R1_CURRENT_STATE(cmd.response[0U]) == SDMMC_R1_TRANSFER)) { in sdmmc_read_status() [all …]
|
| A D | sdmmc.c | 87 card->ocr = cmd.response[1]; in sdmmc_spi_send_ocr() 132 if (!(cmd.response[0] & SD_SPI_R1IDLE_STATE)) { in sdmmc_send_ocr() 136 if ((cmd.response[0U] & SD_OCR_PWR_BUSY_FLAG)) { in sdmmc_send_ocr() 150 card->ocr = cmd.response[0U]; in sdmmc_send_ocr() 266 LOG_DBG("ACMD6 reports error, response 0x%x", cmd.response[0U]); in sdmmc_set_bus_width() 286 uint8_t value, uint8_t *response) in sdmmc_switch() argument 301 data.data = response; in sdmmc_switch()
|
| /subsys/net/lib/lwm2m/ |
| A D | lwm2m_pull_context.c | 219 static int do_firmware_transfer_reply_cb(const struct coap_packet *response, in do_firmware_transfer_reply_cb() argument 227 struct coap_packet *check_response = (struct coap_packet *)response; in do_firmware_transfer_reply_cb() 238 if (!tkl && coap_header_get_type(response) == COAP_TYPE_ACK) { in do_firmware_transfer_reply_cb() 240 } else if (coap_header_get_type(response) == COAP_TYPE_CON) { in do_firmware_transfer_reply_cb() 285 payload_start = coap_packet_get_payload(response, &payload_len); in do_firmware_transfer_reply_cb() 287 payload_offset = payload_start - response->data; in do_firmware_transfer_reply_cb() 321 if (buf_read(write_buf, len, CPKT_BUF_READ(response), in do_firmware_transfer_reply_cb()
|
| /subsys/mgmt/mcumgr/grp/os_mgmt/ |
| A D | Kconfig | 32 response to be delivered. 68 Enable this if your client software is able to process "taskstat" response 78 Select what will serve as thread name in "taskstat" response. 102 int "Length of thread name to return in response" 108 The length of the string that is sent in response to taskstat command, 120 Zephyr uses int8_t as thread priorities, but in taskstat response it encodes 133 process "taskstat" response without the "stksiz" and "stkuse" fields. 178 int "Maximum response size for info command" 182 The maximum size of the response to the info command, will use a stack buffer of this 183 size to store the data in. If the output response is too big then the output will not be [all …]
|
| /subsys/mgmt/ec_host_cmd/ |
| A D | Kconfig.logging | 7 bool "Log full params and response buffers in debug log level" 11 to decide if full request and response buffers are logged alongside
|
| /subsys/mgmt/mcumgr/grp/enum_mgmt/ |
| A D | Kconfig | 36 bool "Include group names in detail response" 39 Will include the name of groups in the detail command response. 42 bool "Include group names in detail response" 45 Will include the number of handlers of groups in the detail command response.
|
| /subsys/mgmt/mcumgr/grp/os_mgmt_client/ |
| A D | Kconfig | 15 bool "MCUmgr client request and response handlers for OS management" 19 Enables MCUmgr client request and response handlers for OS management.
|
| /subsys/mgmt/ec_host_cmd/backends/ |
| A D | Kconfig | 78 response to simultaneous Read/Write transactions. 97 int "Max data size for the version 3 response packet" 101 This option indicates maximum data size for a version 3 response 103 response.
|
| /subsys/mgmt/mcumgr/smp_client/ |
| A D | Kconfig | 12 This will enable SMP Request generation and response handling. 29 The time (in ms) which the SMP client will wait for a response before re-sending
|
| /subsys/mgmt/mcumgr/smp_client/src/ |
| A D | client.c | 187 enum mcumgr_op_t response; in smp_client_response_discover() local 197 response = MGMT_OP_READ_RSP; in smp_client_response_discover() 199 response = MGMT_OP_WRITE_RSP; in smp_client_response_discover() 204 } else if (res_hdr->nh_op != response) { in smp_client_response_discover()
|
| /subsys/mgmt/updatehub/ |
| A D | updatehub_priv.h | 34 static char *updatehub_response(enum updatehub_response response) in updatehub_response() argument 36 switch (response) { in updatehub_response()
|