/hal_espressif-3.7.0/components/esp_system/ |
D | check_system_init_priorities.py | 26 def __init__(self, filename: str, func: str, affinity: str, priority: int) -> None: 27 self.filename = filename 52 for filename in itertools.chain(*source_files_iters): 53 with open(filename, 'r') as f_obj: 66 filename=os.path.relpath(filename, idf_path),
|
/hal_espressif-3.7.0/tools/ci/ |
D | check_callgraph.py | 63 …def __init__(self, name: str, addr: int, local: bool, filename: Optional[str], section: Optional[s… 67 self.filename = filename 78 self.filename 115 filename = None 119 filename = sym.name 128 filename if local else None, 258 assert sym.filename # should be set for local functions 259 return rtl_filename_matches_sym_filename(rtl_filename, sym.filename) 268 assert sym.filename # should be set for local functions 271 return sym_from.filename == sym.filename [all …]
|
/hal_espressif-3.7.0/tools/esptool_py/flasher_stub/ |
D | wrap_stub.py | 72 for filename, stub_data in stubs_dict.items(): 73 with open(os.path.join(BUILD_DIR, filename), "w") as outfile: 77 def stub_name(filename): argument 79 return os.path.splitext(os.path.basename(filename))[0] + ".json"
|
/hal_espressif-3.7.0/zephyr/scripts/blobs/ |
D | esp_genblobs.py | 91 filename = path_leaf(path_in_str) 94 FILENAME=filename, 102 os.remove(filename)
|
/hal_espressif-3.7.0/components/bt/common/osi/include/osi/ |
D | config.h | 45 config_t *config_new(const char *filename); 138 bool config_save(const config_t *config, const char *filename);
|
/hal_espressif-3.7.0/components/bt/common/osi/ |
D | config.c | 74 config_t *config_new(const char *filename) in config_new() argument 76 assert(filename != NULL); in config_new() 85 err = nvs_open(filename, NVS_READWRITE, &fp); in config_new() 91 OSI_TRACE_ERROR("%s unable to open NVS namespace '%s'\n", __func__, filename); in config_new() 377 bool config_save(const config_t *config, const char *filename) in config_save() argument 380 assert(filename != NULL); in config_save() 381 assert(*filename != '\0'); in config_save() 396 err = nvs_open(filename, NVS_READWRITE, &fp); in config_save()
|
/hal_espressif-3.7.0/tools/esptool_py/esptool/ |
D | cmds.py | 172 image = LoadFirmwareImage(esp.CHIP_NAME, args.filename) 204 with open(args.filename, "wb") as f: 536 (offs, filename, args.encrypt) for (offs, filename) in args.addr_filename 545 (offs, filename, True) for (offs, filename) in args.encrypt_files 937 with open(args.filename, "rb") as f: 974 image = LoadFirmwareImage(args.chip, args.filename) 1197 with open(args.filename, "wb") as f:
|
D | bin_image.py | 580 def save(self, filename): argument 581 with open(filename, "wb") as f: 613 with open(filename, "rb") as f: 615 with open(filename, "ab") as f: 705 def save(self, filename): argument 906 with open(filename, "wb") as real_file: 978 def save(self, filename): argument 1046 with open(filename, "wb") as real_file:
|
/hal_espressif-3.7.0/tools/esptool_py/docs/en/esptool/ |
D | advanced-options.rst | 113 … line, you can specify a file name as ``@filename.txt`` to read one or more arguments from text fi… 119 …s to a command as a unit) there is a need to add quotes around @filename.txt ("@filename.txt") to …
|
D | basic-commands.rst | 102 …ts of flash. The arguments to the command are an address, a size, and a filename to dump the outpu… 265 * It is possible to append options from a text file with ``@filename`` (see the advanced options p…
|
/hal_espressif-3.7.0/components/xtensa/trax/ |
D | traceparse.py | 306 def parse_and_dump(filename, disassemble=WITH_GDB): argument 312 with open(filename, 'rb') as f:
|
/hal_espressif-3.7.0/components/efuse/ |
D | efuse_table_gen.py | 457 def ckeck_md5_in_file(md5, filename): argument 458 if os.path.exists(filename): 459 with open(filename, 'r') as f:
|
D | CMakeLists.txt | 57 # Custom filename expands any path relative to the project
|
D | Kconfig | 14 Name of the custom eFuse CSV filename. This path is evaluated
|
/hal_espressif-3.7.0/tools/esptool_py/docs/en/ |
D | troubleshooting.rst | 70 …On ESP8266, firmware bootloader image (with a filename like ``boot_v1.x.bin``) has to be flashed a…
|