Home
last modified time | relevance | path

Searched refs:filename (Results 1 – 15 of 15) sorted by relevance

/hal_espressif-3.7.0/components/esp_system/
Dcheck_system_init_priorities.py26 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/
Dcheck_callgraph.py63 …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/
Dwrap_stub.py72 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/
Desp_genblobs.py91 filename = path_leaf(path_in_str)
94 FILENAME=filename,
102 os.remove(filename)
/hal_espressif-3.7.0/components/bt/common/osi/include/osi/
Dconfig.h45 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/
Dconfig.c74 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/
Dcmds.py172 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:
Dbin_image.py580 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/
Dadvanced-options.rst113 … 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 …
Dbasic-commands.rst102 …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/
Dtraceparse.py306 def parse_and_dump(filename, disassemble=WITH_GDB): argument
312 with open(filename, 'rb') as f:
/hal_espressif-3.7.0/components/efuse/
Defuse_table_gen.py457 def ckeck_md5_in_file(md5, filename): argument
458 if os.path.exists(filename):
459 with open(filename, 'r') as f:
DCMakeLists.txt57 # Custom filename expands any path relative to the project
DKconfig14 Name of the custom eFuse CSV filename. This path is evaluated
/hal_espressif-3.7.0/tools/esptool_py/docs/en/
Dtroubleshooting.rst70 …On ESP8266, firmware bootloader image (with a filename like ``boot_v1.x.bin``) has to be flashed a…