/hal_espressif-latest/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-latest/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-latest/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-latest/zephyr/scripts/blobs/ |
D | esp_genblobs.py | 91 filename = path_leaf(path_in_str) 94 FILENAME=filename, 102 os.remove(filename)
|
/hal_espressif-latest/components/bt/common/osi/include/osi/ |
D | config.h | 45 config_t *config_new(const char *filename); 143 bool config_save(const config_t *config, const char *filename);
|
/hal_espressif-latest/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() 403 bool config_save(const config_t *config, const char *filename) in config_save() argument 406 assert(filename != NULL); in config_save() 407 assert(*filename != '\0'); in config_save() 422 err = nvs_open(filename, NVS_READWRITE, &fp); in config_save()
|
/hal_espressif-latest/tools/esptool_py/test/ |
D | test_image_info.py | 21 def read_image(filename): argument 22 with open(os.path.join(IMAGES_DIR, filename), "rb") as f:
|
D | test_espsecure_hsm.py | 64 def softhsm_setup_token(self, filename, token_label): argument 111 configfile = os.path.join(TEST_DIR, "secure_images", filename)
|
D | test_merge_bin.py | 27 def read_image(filename): argument 28 with open(os.path.join(IMAGES_DIR, filename), "rb") as f:
|
/hal_espressif-latest/tools/esptool_py/esptool/ |
D | cmds.py | 172 image = LoadFirmwareImage(esp.CHIP_NAME, args.filename) 204 with open(args.filename, "wb") as f: 549 (offs, filename, args.encrypt) for (offs, filename) in args.addr_filename 558 (offs, filename, True) for (offs, filename) in args.encrypt_files 959 with open(args.filename, "rb") as f: 994 image = LoadFirmwareImage(args.chip, args.filename) 1232 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 909 with open(filename, "wb") as real_file: 981 def save(self, filename): argument 1049 with open(filename, "wb") as real_file:
|
/hal_espressif-latest/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-latest/tools/esptool_py/docs/en/esptool/ |
D | advanced-options.rst | 134 … line, you can specify a file name as ``@filename.txt`` to read one or more arguments from text fi… 140 …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-latest/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-latest/tools/esptool_py/docs/en/ |
D | troubleshooting.rst | 72 …On ESP8266, firmware bootloader image (with a filename like ``boot_v1.x.bin``) has to be flashed a…
|