/hal_espressif-latest/components/esp_system/ |
D | esp_err.c | 27 static void esp_error_check_failed_print(const char *msg, esp_err_t rc, const char *file, int line,… in esp_error_check_failed_print() argument 38 …esp_rom_printf("file: \"%s\" line %d\nfunc: %s\nexpression: %s\n", file, line, function, expressio… in esp_error_check_failed_print() 42 void _esp_error_check_failed_without_abort(esp_err_t rc, const char *file, int line, const char *fu… in _esp_error_check_failed_without_abort() argument 44 …esp_error_check_failed_print("ESP_ERROR_CHECK_WITHOUT_ABORT", rc, file, line, function, expression… in _esp_error_check_failed_without_abort() 47 void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const … in _esp_error_check_failed() argument 49 …esp_error_check_failed_print("ESP_ERROR_CHECK", rc, file, line, function, expression, (intptr_t)__… in _esp_error_check_failed()
|
D | check_system_init_priorities.py | 84 for line in startup_entries_expected_file: 85 if line.startswith('#') or len(line.strip()) == 0: 87 startup_entries_expected_lines.append(line.rstrip()) 96 for line in diff_lines:
|
/hal_espressif-latest/components/mbedtls/port/ |
D | mbedtls_debug.c | 19 const char *file, int line, 54 const char *file, int line, in mbedtls_esp_debug() argument 70 ESP_LOGW(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug() 73 ESP_LOGI(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug() 76 ESP_LOGD(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug() 79 ESP_LOGV(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug()
|
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | serial_handler.py | 84 for line in sp: 85 if line == b'': 87 if self._serial_check_exit and line == console_parser.exit_key.encode('latin-1'): 90 self.check_panic_decode_trigger(line, gdb_helper) 91 with coredump.check(line): 92 if self._force_line_print or line_matcher.match(line.decode(errors='ignore')): 93 self.logger.print(line + b'\n') 94 self.logger.handle_possible_pc_address_in_line(line) 95 check_gdb_stub_and_run(line) 124 def check_panic_decode_trigger(self, line, gdb_helper): # type: (bytes, GDBHelper) -> None argument [all …]
|
D | coredump.py | 90 def _check_coredump_trigger_before_print(self, line): # type: (bytes) -> None argument 93 if COREDUMP_UART_PROMPT in line: 97 if COREDUMP_UART_START in line: 103 if COREDUMP_UART_END in line: 111 self._coredump_buffer += line.replace(b'\r', b'') + b'\n' 127 def check(self, line): # type: (bytes) -> Generator argument 128 self._check_coredump_trigger_before_print(line)
|
D | gdbhelper.py | 78 def check_gdb_stub_trigger(self, line): argument 80 line = self.gdb_buffer + line 82 m = re.search(b'\\$(T..)#(..)', line) # look for a gdb "reason" for a break
|
D | logger.py | 126 def handle_possible_pc_address_in_line(self, line): # type: (bytes) -> None argument 127 line = self._pc_address_buffer + line 131 for m in re.finditer(MATCH_PCADDR, line.decode(errors='ignore')):
|
D | serial_reader.py | 112 for line in self._stdout: 113 if line: 114 self.event_queue.put((TAG_SERIAL, line), False)
|
D | line_matcher.py | 57 def match(self, line): argument 60 m = self._re.search(line)
|
/hal_espressif-latest/components/bt/common/osi/ |
D | allocator.c | 35 int line; member 58 mem_dbg_info[i].line = 0; in osi_mem_dbg_init() 70 void osi_mem_dbg_record(void *p, int size, const char *func, int line) in osi_mem_dbg_record() argument 84 mem_dbg_info[i].line = line; in osi_mem_dbg_record() 91 OSI_TRACE_ERROR("%s full %s %d !!\n", __func__, func, line); in osi_mem_dbg_record() 108 void osi_mem_dbg_clean(void *p, const char *func, int line) in osi_mem_dbg_clean() argument 123 mem_dbg_info[i].line = 0; in osi_mem_dbg_clean() 130 OSI_TRACE_ERROR("%s full %s %d !!\n", __func__, func, line); in osi_mem_dbg_clean() 140 … %s, l %d\n", mem_dbg_info[i].p, mem_dbg_info[i].size, mem_dbg_info[i].func, mem_dbg_info[i].line); in osi_mem_dbg_show()
|
D | config.c | 412 char *line = osi_calloc(1024); in config_save() local 417 if (!line || !buf || !keyname) { in config_save() 435 w_cnt = snprintf(line, 1024, "[%s]\n", section->name); in config_save() 447 memcpy(buf + w_cnt_total, line, w_cnt); in config_save() 453 w_cnt = snprintf(line, 1024, "%s = %s\n", entry->key, entry->value); in config_save() 465 memcpy(buf + w_cnt_total, line, w_cnt); in config_save() 515 osi_free(line); in config_save() 524 if (line) { in config_save() 525 osi_free(line); in config_save() 566 char *line = osi_calloc(1024); in config_parse() local [all …]
|
/hal_espressif-latest/components/newlib/ |
D | assert.c | 33 void __attribute__((noreturn)) __assert_func(const char *file, int line, const char *func, const ch… in __assert_func() argument 48 itoa(line, lbuf, 10); in __assert_func() 85 void __attribute__((noreturn)) __assert(const char *file, int line, const char *failedexpr) in __assert() argument 87 __assert_func(file, line, NULL, failedexpr); in __assert()
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/ |
D | util.py | 34 for line in file.readlines(): 35 if line.startswith("#"): 37 config = line.strip().split("=", 1)
|
D | csv_table_parser.py | 25 for line_no, line in enumerate(lines): 26 line = expand_vars(line).strip() 27 if line.startswith("#") or len(line) == 0: 30 res.append(FuseDefinition.from_csv(line)) 192 def from_csv(cls, line): argument 194 line_w_defaults = line + ",,,,"
|
/hal_espressif-latest/components/wpa_supplicant/port/ |
D | eloop.c | 29 int line; member 84 void *user_data, const char *func, int line) in eloop_register_timeout_debug() argument 123 timeout->line = line; in eloop_register_timeout_debug() 145 timeout->func_name, line, timeout->handler, count); in eloop_register_timeout_debug() 196 void *user_data, const char *func, int line) in eloop_cancel_timeout_debug() argument 218 func, line, handler, removed); in eloop_cancel_timeout_debug() 365 int line = timeout->line; in eloop_run() local 371 handler, fn_name, line); in eloop_run()
|
/hal_espressif-latest/tools/ |
D | esp_bin2c_array.py | 13 line = ', '.join([ '0x{val:02x}'.format(val=c) for c in x ]) 14 out.append(' {line}{end_comma}'.format(line=line, end_comma=',' if i<len(l)-1 else ''))
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | bootloader_panic.c | 13 void __assert_func(const char *file, int line, const char *func, const char *expr) in __assert_func() argument 17 esp_rom_printf("Assert failed in %s, %s:%d (%s)\r\n", func, file, line, expr); in __assert_func()
|
/hal_espressif-latest/components/esp_common/src/ |
D | esp_err_check_linux.c | 15 void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const … in _esp_error_check_failed() argument 22 printf("file: \"%s\" line %d\nfunc: %s\nexpression: %s\n", file, line, function, expression); in _esp_error_check_failed()
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/ |
D | Kconfig.cache | 18 prompt "Instruction cache line size" 21 Instruction cache line size to be set on application startup. 47 prompt "Data cache line size" 50 Data cache line size to be set on application startup.
|
/hal_espressif-latest/tools/esptool_py/ci/ |
D | patch_dev_release.py | 19 for i, line in enumerate(lines, start=0): 20 m = LINE_RE.search(line)
|
/hal_espressif-latest/components/esp_pm/ |
D | pm_locks.c | 174 char line[128]; in esp_pm_dump_locks() local 176 char *buf = line; in esp_pm_dump_locks() 177 size_t len = sizeof(line); in esp_pm_dump_locks() 202 fputs(line, stream); in esp_pm_dump_locks()
|
/hal_espressif-latest/components/esp_hw_support/ |
D | esp_etm.c | 283 char line[80]; in esp_etm_dump() local 284 size_t len = sizeof(line); in esp_etm_dump() 296 snprintf(line, len, "channel %d is enabled but not recorded\r\n", j); in esp_etm_dump() 299 snprintf(line, len, "channel %d: event %"PRIu32" ==> task %"PRIu32"\r\n", j, in esp_etm_dump() 306 snprintf(line, len, "channel %d is created but not enabled\r\n", j); in esp_etm_dump() 314 fputs(line, out_stream); in esp_etm_dump()
|
/hal_espressif-latest/components/heap/ |
D | multi_heap_platform.h | 45 inline static void multi_heap_assert(bool condition, const char *format, int line, intptr_t address) in multi_heap_assert() argument 54 esp_rom_printf(format, line, address); in multi_heap_assert()
|
/hal_espressif-latest/components/esp_common/include/ |
D | esp_err.h | 81 void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const … 83 void _esp_error_check_failed_without_abort(esp_err_t rc, const char *file, int line, const char *fu…
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/ |
D | Kconfig.cache | 40 prompt "Instruction cache line size" 43 Instruction cache line size to be set on application startup. 107 prompt "Data cache line size" 110 Data cache line size to be set on application startup.
|