Home
last modified time | relevance | path

Searched defs:cmd (Results 1 – 25 of 133) sorted by relevance

123456

/hal_espressif-3.6.0/components/sdmmc/
Dsdmmc_cmd.c12 esp_err_t sdmmc_send_cmd(sdmmc_card_t* card, sdmmc_command_t* cmd) in sdmmc_send_cmd()
39 esp_err_t sdmmc_send_app_cmd(sdmmc_card_t* card, sdmmc_command_t* cmd) in sdmmc_send_app_cmd()
61 sdmmc_command_t cmd = { in sdmmc_send_cmd_go_idle_state() local
89 sdmmc_command_t cmd = { in sdmmc_send_cmd_send_if_cond() local
110 sdmmc_command_t cmd = { in sdmmc_send_cmd_send_op_cond() local
166 sdmmc_command_t cmd = { in sdmmc_send_cmd_read_ocr() local
182 sdmmc_command_t cmd = { in sdmmc_send_cmd_all_send_cid() local
200 sdmmc_command_t cmd = { in sdmmc_send_cmd_send_cid() local
219 sdmmc_command_t cmd = { in sdmmc_send_cmd_set_relative_addr() local
242 sdmmc_command_t cmd = { in sdmmc_send_cmd_set_blocklen() local
[all …]
Dsdmmc_mmc.c206 sdmmc_command_t cmd = { in sdmmc_mmc_send_ext_csd_data() local
219 sdmmc_command_t cmd = { in sdmmc_mmc_switch() local
/hal_espressif-3.6.0/components/esp_gdbstub/src/
Dgdbstub.c77 unsigned char *cmd; in esp_gdbstub_panic_handler() local
203 unsigned char *cmd; in gdbstub_handle_uart_int() local
258 static void handle_g_command(const unsigned char *cmd, int len) in handle_g_command()
269 static void handle_G_command(const unsigned char *cmd, int len) in handle_G_command()
279 static void handle_m_command(const unsigned char *cmd, int len) in handle_m_command()
299 static void handle_M_command(const unsigned char *cmd, int len) in handle_M_command()
320 int esp_gdbstub_handle_command(unsigned char *cmd, int len) in esp_gdbstub_handle_command()
432 static void handle_H_command(const unsigned char *cmd, int len) in handle_H_command()
458 static void handle_qC_command(const unsigned char *cmd, int len) in handle_qC_command()
470 static void handle_T_command(const unsigned char *cmd, int len) in handle_T_command()
[all …]
/hal_espressif-3.6.0/examples/bluetooth/nimble/throughput_app/blecent_throughput/components/cmd_system/
Dcmd_system.c73 const esp_console_cmd_t cmd = { in register_version() local
92 const esp_console_cmd_t cmd = { in register_restart() local
111 const esp_console_cmd_t cmd = { in register_free() local
164 const esp_console_cmd_t cmd = { in register_tasks() local
231 const esp_console_cmd_t cmd = { in register_deep_sleep() local
324 const esp_console_cmd_t cmd = { in register_light_sleep() local
/hal_espressif-3.6.0/examples/system/console/advanced/components/cmd_system/
Dcmd_system.c87 const esp_console_cmd_t cmd = { in register_version() local
106 const esp_console_cmd_t cmd = { in register_restart() local
125 const esp_console_cmd_t cmd = { in register_free() local
178 const esp_console_cmd_t cmd = { in register_tasks() local
259 const esp_console_cmd_t cmd = { in register_deep_sleep() local
356 const esp_console_cmd_t cmd = { in register_light_sleep() local
/hal_espressif-3.6.0/components/driver/
Dsdmmc_transaction.c251 static esp_err_t handle_event(sdmmc_command_t* cmd, sdmmc_req_state_t* state, in handle_event()
273 static bool cmd_needs_auto_stop(const sdmmc_command_t* cmd) in cmd_needs_auto_stop()
283 static sdmmc_hw_cmd_t make_hw_cmd(sdmmc_command_t* cmd) in make_hw_cmd()
322 static void process_command_response(uint32_t status, sdmmc_command_t* cmd) in process_command_response()
354 static void process_data_status(uint32_t status, sdmmc_command_t* cmd) in process_data_status()
384 static esp_err_t process_events(sdmmc_event_t evt, sdmmc_command_t* cmd, in process_events()
Di2c.c109 i2c_cmd_t cmd; /*!< command in current cmd link */ member
1049 i2c_cmd_desc_t *cmd = (i2c_cmd_desc_t *) cmd_handle; in i2c_cmd_link_delete_static() local
1059 i2c_cmd_desc_t *cmd = (i2c_cmd_desc_t *) cmd_handle; in i2c_cmd_link_delete() local
1121 static esp_err_t i2c_cmd_link_append(i2c_cmd_handle_t cmd_handle, i2c_cmd_t *cmd) in i2c_cmd_link_append()
1153 i2c_cmd_t cmd = { 0 }; in i2c_master_start() local
1161 i2c_cmd_t cmd = { 0 }; in i2c_master_stop() local
1177 i2c_cmd_t cmd = { in i2c_master_write() local
1193 i2c_cmd_t cmd = { in i2c_master_write_byte() local
1207 i2c_cmd_t cmd = { in i2c_master_read_static() local
1225 i2c_cmd_t cmd = { in i2c_master_read_byte() local
[all …]
Dsdspi_transaction.c44 static void r1_response_to_err(uint8_t r1, int cmd, esp_err_t *out_err) in r1_response_to_err()
72 static void r1_sdio_response_to_err(uint8_t r1, int cmd, esp_err_t *out_err) in r1_sdio_response_to_err()
Dsdspi_host.c420 esp_err_t sdspi_host_start_command(sdspi_dev_handle_t handle, sdspi_hw_cmd_t *cmd, void *data, in sdspi_host_start_command()
478 static esp_err_t start_command_default(slot_info_t *slot, int flags, sdspi_hw_cmd_t *cmd) in start_command_default()
604 static esp_err_t shift_cmd_response(sdspi_hw_cmd_t* cmd, int sent_bytes) in shift_cmd_response()
664 static esp_err_t start_command_read_blocks(slot_info_t *slot, sdspi_hw_cmd_t *cmd, in start_command_read_blocks()
797 static esp_err_t start_command_write_blocks(slot_info_t *slot, sdspi_hw_cmd_t *cmd, in start_command_write_blocks()
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/
Dble_mesh_console_system.c52 const esp_console_cmd_t cmd = { in register_restart() local
71 const esp_console_cmd_t cmd = { in register_free() local
174 const esp_console_cmd_t cmd = { in register_make() local
/hal_espressif-3.6.0/components/console/test/
Dtest_console.c26 const esp_console_cmd_t cmd = { variable
55 esp_console_cmd_t cmd = { variable
/hal_espressif-3.6.0/examples/peripherals/rmt/ir_protocols/main/
Dir_protocols_main.c30 uint32_t cmd = 0; in example_ir_rx_task() local
78 uint32_t cmd = 0x20; in example_ir_tx_task() local
/hal_espressif-3.6.0/components/lwip/port/esp32/
Dvfs_lwip.c63 static int lwip_fcntl_r_wrapper(int fd, int cmd, int arg) in lwip_fcntl_r_wrapper()
68 static int lwip_ioctl_r_wrapper(int fd, int cmd, va_list args) in lwip_ioctl_r_wrapper()
Dno_vfs_syscalls.c61 int _fcntl_r(struct _reent *r, int fd, int cmd, int arg) in _fcntl_r()
66 int ioctl(int fd, int cmd, ...) in ioctl()
/hal_espressif-3.6.0/components/console/
Dcommands.c85 esp_err_t esp_console_cmd_register(const esp_console_cmd_t *cmd) in esp_console_cmd_register()
172 const cmd_item_t *cmd = NULL; in find_command_by_name() local
202 const cmd_item_t *cmd = find_command_by_name(argv[0]); in esp_console_run() local
/hal_espressif-3.6.0/components/bt/host/bluedroid/btc/profile/std/a2dp/
Dbtc_a2dp_control.c42 static inline void a2dp_cmd_acknowledge(int cmd, int status) in a2dp_cmd_acknowledge()
61 int cmd = btc_aa_ctrl_cb.a2dp_cmd_pending; in btc_a2dp_control_command_ack() local
/hal_espressif-3.6.0/components/esp_hid/src/
Desp_hid_common.c32 uint8_t cmd; member
208 hid_report_cmd_t *cmd = (hid_report_cmd_t *)malloc(sizeof(hid_report_cmd_t)); in parse_cmd() local
229 static int handle_cmd(hid_report_cmd_t *cmd) in handle_cmd()
352 hid_report_cmd_t *cmd; in esp_hid_parse_report_map() local
/hal_espressif-3.6.0/west/
Dtools.py35 def cmd_check(cmd, cwd=None, stderr=subprocess.STDOUT): argument
39 def cmd_exec(cmd, cwd=None, shell=False): argument
/hal_espressif-3.6.0/examples/peripherals/i2c/i2c_self_test/main/
Di2c_example_main.c68 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in i2c_master_read_slave() local
95 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in i2c_master_write_slave() local
121 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in i2c_master_sensor_test() local
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/
Dsmp_l2c.c160 UINT8 cmd ; in smp_data_received() local
304 UINT8 cmd ; in smp_br_data_received() local
/hal_espressif-3.6.0/components/espcoredump/corefile/
Dgdb.py55 def _gdbmi_run_cmd_get_responses(self, cmd, resp_message, resp_type, multiple=True, argument
77 def _gdbmi_run_cmd_get_one_response(self, cmd, resp_message, resp_type): argument
/hal_espressif-3.6.0/examples/peripherals/i2c/i2c_tools/main/
Dcmd_i2ctools.c125 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in do_i2cdetect_cmd() local
189 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in do_i2cget_cmd() local
267 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in do_i2cset_cmd() local
343 i2c_cmd_handle_t cmd = i2c_cmd_link_create(); in do_i2cdump_cmd() local
/hal_espressif-3.6.0/examples/peripherals/spi_master/lcd/main/
Dspi_master_example_main.c74 uint8_t cmd; member
187 void lcd_cmd(spi_device_handle_t spi, const uint8_t cmd) in lcd_cmd()
247 int cmd=0; in lcd_init() local
/hal_espressif-3.6.0/examples/system/gcov/
Dexample_test.py30 def dump_coverage(cmd): argument
/hal_espressif-3.6.0/components/driver/test/
Dtest_rmt.c279 uint32_t cmd = 0x20; in do_nec_tx_rx() local
376 uint32_t cmd = 0x20; variable
552 uint32_t cmd = 0x20; variable

123456