Searched refs:elf_path (Results 1 – 3 of 3) sorted by relevance
32 def __init__(self, elf_path, log): argument34 self.elf_path = elf_path35 self.elf_fd = open(elf_path, "rb+")
130 def __init__(self, elf_path: str, log: logging.Logger, slid_listing_path: str | None):131 self.elf_path = elf_path132 self.elf_fd = open(self.elf_path, 'rb+')
150 elf_path = Path(self.cfg.elf_file).as_posix()152 gdb_args = ["-ex", f"target remote :{self._gdb_port}", elf_path]
Completed in 9 milliseconds