Home
last modified time | relevance | path

Searched refs:on_read (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/esp_hw_support/
Dcpu.c203 bool on_read = (trigger == ESP_CPU_WATCHPOINT_LOAD || trigger == ESP_CPU_WATCHPOINT_ACCESS); in esp_cpu_set_watchpoint() local
206 xt_utils_set_watchpoint(wp_num, (uint32_t)wp_addr, size, on_read, on_write); in esp_cpu_set_watchpoint()
211 … (long)((on_read ? ESP_SEMIHOSTING_WP_FLG_RD : 0) | (on_write ? ESP_SEMIHOSTING_WP_FLG_WR : 0)) in esp_cpu_set_watchpoint()
218 rv_utils_set_watchpoint(wp_num, (uint32_t)wp_addr, size, on_read, on_write); in esp_cpu_set_watchpoint()
/hal_espressif-latest/components/esp_hw_support/include/hal/
Dcpu_ll.h72 void cpu_ll_set_watchpoint(int id, const void *addr, size_t size, bool on_read, bool on_write) in cpu_ll_set_watchpoint() argument
75 if (on_read && on_write) { in cpu_ll_set_watchpoint()
77 } else if (on_read) { in cpu_ll_set_watchpoint()
/hal_espressif-latest/components/riscv/include/riscv/
Drv_utils.h143 bool on_read, in rv_utils_set_watchpoint() argument
151 (on_read ? TDATA1_LOAD : 0) | in rv_utils_set_watchpoint()
/hal_espressif-latest/components/xtensa/include/
Dxt_utils.h150 bool on_read, in xt_utils_set_watchpoint() argument
157 if (on_read) { in xt_utils_set_watchpoint()