/hal_espressif-latest/components/bt/host/bluedroid/hci/ |
D | hci_packet_parser.c | 29 BT_HDR *response, 33 static void parse_generic_command_complete(BT_HDR *response) in parse_generic_command_complete() argument 35 read_command_complete_header(response, NO_OPCODE_CHECKING, 0 /* bytes after */); in parse_generic_command_complete() 37 osi_free(response); in parse_generic_command_complete() 41 BT_HDR *response, in parse_read_buffer_size_response() argument 48 …uint8_t *stream = read_command_complete_header(response, HCI_READ_BUFFER_SIZE, 7 /* bytes after */… in parse_read_buffer_size_response() 54 osi_free(response); in parse_read_buffer_size_response() 58 BT_HDR *response, in parse_read_local_version_info_response() argument 62 …uint8_t *stream = read_command_complete_header(response, HCI_READ_LOCAL_VERSION_INFO, 8 /* bytes a… in parse_read_local_version_info_response() 70 osi_free(response); in parse_read_local_version_info_response() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/hci/include/hci/ |
D | hci_packet_parser.h | 32 void (*parse_generic_command_complete)(BT_HDR *response); 35 BT_HDR *response, 43 BT_HDR *response, 48 BT_HDR *response, 53 BT_HDR *response, 59 BT_HDR *response, 64 BT_HDR *response, 72 BT_HDR *response, 77 BT_HDR *response, 83 BT_HDR *response, [all …]
|
D | hci_layer.h | 76 typedef void (*command_complete_cb)(BT_HDR *response, void *context);
|
/hal_espressif-latest/components/bt/host/bluedroid/device/ |
D | controller.c | 102 BT_HDR *response; in start_up() local 105 response = AWAIT_COMMAND(controller_param.packet_factory->make_reset()); in start_up() 106 controller_param.packet_parser->parse_generic_command_complete(response); in start_up() 110 response = AWAIT_COMMAND(controller_param.packet_factory->make_read_buffer_size()); in start_up() 112 … response, &controller_param.acl_data_size_classic, &controller_param.acl_buffer_count_classic, in start_up() 118 …response = AWAIT_COMMAND(controller_param.packet_factory->make_set_c2h_flow_control(HCI_HOST_FLOW_… in start_up() 119 controller_param.packet_parser->parse_generic_command_complete(response); in start_up() 123 …response = AWAIT_COMMAND(controller_param.packet_factory->make_set_adv_report_flow_control(HCI_HOS… in start_up() 124 controller_param.packet_parser->parse_generic_command_complete(response); in start_up() 128 response = AWAIT_COMMAND( in start_up() [all …]
|
/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | ms_funcs.c | 146 u8 *response) in challenge_response() argument 150 if (des_encrypt(challenge, password_hash, response) < 0 || in challenge_response() 151 des_encrypt(challenge, password_hash + 7, response + 8) < 0) in challenge_response() 156 return des_encrypt(challenge, zpwd, response + 16); in challenge_response() 174 u8 *response) in generate_nt_response() argument 182 challenge_response(challenge, password_hash, response)) in generate_nt_response() 202 u8 *response) in generate_nt_response_pwhash() argument 209 challenge_response(challenge, password_hash, response)) in generate_nt_response_pwhash() 231 const u8 *nt_response, u8 *response) in generate_authenticator_response_pwhash() argument 257 addr2[0] = response; in generate_authenticator_response_pwhash() [all …]
|
D | ms_funcs.h | 15 u8 *response); 20 u8 *response); 25 const u8 *nt_response, u8 *response); 30 const u8 *nt_response, u8 *response); 32 size_t password_len, u8 *response); 35 u8 *response);
|
/hal_espressif-latest/components/driver/spi/sdspi/ |
D | sdspi_transaction.c | 36 memset(hw_cmd->response, 0xff, sizeof(hw_cmd->response)); in make_hw_cmd() 155 ESP_LOGV(TAG, "r1 = 0x%02x hw_cmd.r[0]=0x%08"PRIx32, hw_cmd.r1, hw_cmd.response[0]); in sdspi_host_do_transaction() 158 cmdinfo->response[0] = hw_cmd.r1; in sdspi_host_do_transaction() 161 cmdinfo->response[0] = ((uint32_t)hw_cmd.r1) | ((hw_cmd.response[0] & 0xff) << 8); in sdspi_host_do_transaction() 164 cmdinfo->response[0] = __builtin_bswap32(hw_cmd.response[0]); in sdspi_host_do_transaction() 167 cmdinfo->response[0] = __builtin_bswap32(hw_cmd.response[0]); in sdspi_host_do_transaction() 170 cmdinfo->response[0] = hw_cmd.response[0]; in sdspi_host_do_transaction()
|
D | sdspi_private.h | 67 uint32_t response[4]; member
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/ |
D | l2cap_client.c | 226 tL2CAP_CFG_INFO response = { 0 }; in config_request_cb() local 234 response.result = L2CAP_CFG_OK; in config_request_cb() 240 response.mtu = L2CAP_MTU_MINIMUM; in config_request_cb() 241 response.mtu_present = true; in config_request_cb() 242 response.result = L2CAP_CFG_UNACCEPTABLE_PARAMS; in config_request_cb() 250 response.fcr_present = true; in config_request_cb() 251 response.fcr = requested_parameters->fcr; in config_request_cb() 252 response.fcr.mode = L2CAP_FCR_BASIC_MODE; in config_request_cb() 253 response.result = L2CAP_CFG_UNACCEPTABLE_PARAMS; in config_request_cb() 257 if (!L2CA_ConfigRsp(local_channel_id, &response)) { in config_request_cb()
|
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/ |
D | chap.c | 14 size_t challenge_len, u8 *response) in chap_md5() argument 25 return md5_vector(3, addr, len, response); in chap_md5()
|
D | chap.h | 15 size_t challenge_len, u8 *response);
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/btu/ |
D | btu_hcif.c | 77 static void btu_hcif_command_complete_evt (BT_HDR *response, void *context); 1166 …uint8_t *stream = hack->response->data + hack->response->offset + 3; // 2 to skip the event header… in btu_hcif_command_complete_evt_on_task() 1172 hack->response->len - 5, // 3 for the command complete headers, 2 for the event headers in btu_hcif_command_complete_evt_on_task() 1175 osi_free(hack->response); in btu_hcif_command_complete_evt_on_task() 1179 static void btu_hcif_command_complete_evt(BT_HDR *response, void *context) in btu_hcif_command_complete_evt() argument 1183 uint8_t *stream = response->data + response->offset + 3; in btu_hcif_command_complete_evt() 1219 …stream = response->data + response->offset + 3 + 2; // 2 to skip the event headers, 1 to skip the … in btu_hcif_command_complete_evt() 1226 hack->response = response; in btu_hcif_command_complete_evt()
|
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/ |
D | serial-protocol.rst | 23 … the ESP chip. The ESP chip responds to the request with a SLIP encoded response packet, including… 37 Each command is a SLIP packet initiated by the host and results in a response packet. Inside the pa… 61 …h received command will result in a response SLIP packet sent from the ESP chip to the host. Conte… 72 …me value as Command identifier in the request packet that triggered the response … 148 - The status response is always 2 bytes regardless of chip type. 151 After sending a command, the host should continue to read response packets until one is received wh… 323 …* The host should wait until it sees a valid response to a SYNC command, indicating the ESP chip … 351 … write to flash, etc. The ROM loaders erase the to-be-written region in response to the FLASH_BEGI… 376 …ash and the size of data to calculate. The MD5 value is returned in the response payload, before t… 444 … SPI peripheral registers to send a JEDEC flash ID command to the flash chip and read the response. [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/ |
D | btu.h | 42 BT_HDR *response; member
|
D | hcimsgs.h | 33 typedef void (*hci_cmd_cmpl_cb)(BT_HDR *response, void *context);
|
/hal_espressif-latest/components/wpa_supplicant/src/eap_server/ |
D | eap.h | 292 const u8 *challenge, const u8 *response);
|
D | eap_server.c | 2090 const u8 *challenge, const u8 *response) in eap_server_mschap_rx_callback() argument 2101 wpa_snprintf_hex_sep(hex_response, sizeof(hex_response), response, 24, in eap_server_mschap_rx_callback()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | sdmmc_ll.h | 255 hw->tmout.response = timeout_cycles; in sdmmc_ll_set_response_timeout()
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | sdmmc_ll.h | 251 hw->tmout.response = timeout_cycles; in sdmmc_ll_set_response_timeout()
|
/hal_espressif-latest/components/soc/esp32s3/include/soc/ |
D | sdmmc_struct.h | 133 uint32_t response: 8; ///< response timeout, in card output clock cycles member
|
/hal_espressif-latest/components/soc/esp32/include/soc/ |
D | sdmmc_struct.h | 135 uint32_t response: 8; ///< response timeout, in card output clock cycles member
|
/hal_espressif-latest/components/bt/esp_ble_mesh/ |
D | Kconfig.in | 803 request and listening for a response. This delay allows the Friend 804 node time to prepare the response. The value is in units of milliseconds. 992 int "Timeout(ms) for client message response" 996 Timeout value used by the node to get response of the acknowledged 999 the response of the sent acknowledged messages. If a client model
|
/hal_espressif-latest/components/bt/host/bluedroid/ |
D | Kconfig.in | 1118 bool "Report adv data and scan response individually when BLE active scan" 1123 … until receive scan response. This option is used to disable the behavior. When enable this option, 1124 Bluedroid will report adv data or scan response to application layer immediately.
|
/hal_espressif-latest/tools/esptool_py/docs/en/ |
D | troubleshooting.rst | 175 …nload mode and sends data to the host computer, but doesn't receive any response sent by ``esptool…
|