/Zephyr-latest/scripts/coredump/gdbstubs/ |
D | __init__.py | 25 def get_gdbstub(logfile, elffile): argument 28 tgt_code = logfile.log_hdr['tgt_code'] 31 stub = GdbStub_x86(logfile=logfile, elffile=elffile) 33 stub = GdbStub_x86_64(logfile=logfile, elffile=elffile) 35 stub = GdbStub_ARM_CortexM(logfile=logfile, elffile=elffile) 37 stub = GdbStub_RISC_V(logfile=logfile, elffile=elffile) 39 stub = GdbStub_Xtensa(logfile=logfile, elffile=elffile) 41 stub = GdbStub_ARM64(logfile=logfile, elffile=elffile)
|
D | gdbstub.py | 18 def __init__(self, logfile, elffile): argument 19 self.logfile = logfile 28 for r in logfile.get_memory_regions(): 181 threads_metadata_data = self.logfile.get_threads_metadata()["data"]
|
/Zephyr-latest/scripts/logging/dictionary/ |
D | log_parser.py | 56 logdata = dictionary_parser.utils.convert_hex_file_to_bin(args.logfile) 60 with open(args.logfile, "r", encoding="iso-8859-1") as hexfile: 93 logfile = open(args.logfile, "rb") 94 if not logfile: 95 logger.error("ERROR: Cannot open binary log data file: %s, exiting...", args.logfile) 98 logdata = logfile.read() 100 logfile.close() 117 logger.error("ERROR: cannot read log from file: %s, exiting...", args.logfile)
|
/Zephyr-latest/scripts/coredump/gdbstubs/arch/ |
D | risc_v.py | 60 def __init__(self, logfile, elffile): argument 61 super().__init__(logfile=logfile, elffile=elffile) 68 arch_data_blk = self.logfile.get_arch_data()['data'] 69 self.arch_data_ver = self.logfile.get_arch_data()['hdr_ver']
|
D | arm64.py | 63 def __init__(self, logfile, elffile): argument 64 super().__init__(logfile=logfile, elffile=elffile) 72 arch_data_blk = self.logfile.get_arch_data()['data']
|
D | x86.py | 89 def __init__(self, logfile, elffile): argument 90 super().__init__(logfile=logfile, elffile=elffile) 100 arch_data_blk = self.logfile.get_arch_data()['data']
|
D | arm_cortex_m.py | 46 def __init__(self, logfile, elffile): argument 47 super().__init__(logfile=logfile, elffile=elffile) 54 arch_data_blk = self.logfile.get_arch_data()['data'] 55 arch_data_ver = self.logfile.get_arch_data()['hdr_ver']
|
D | x86_64.py | 108 def __init__(self, logfile, elffile): argument 109 super().__init__(logfile=logfile, elffile=elffile) 119 arch_data_blk = self.logfile.get_arch_data()['data']
|
D | xtensa.py | 142 def __init__(self, logfile, elffile): argument 143 super().__init__(logfile=logfile, elffile=elffile) 154 arch_data_blk = self.logfile.get_arch_data()['data']
|
/Zephyr-latest/scripts/coredump/coredump_parser/ |
D | log_parser.py | 58 def __init__(self, logfile): argument 59 self.logfile = logfile 68 self.fd = open(self.logfile, "rb")
|
/Zephyr-latest/scripts/coredump/ |
D | coredump_gdbserver.py | 95 if not os.path.isfile(args.logfile): 103 logf = CoredumpLogFile(args.logfile)
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 919 def _thread(handler, timeout, outdir, logfile, fifo_fn, pid_fn, argument 938 open(logfile, "w") as log_out_fp 1204 def _open_log_file(logfile): argument 1205 return open(logfile, "w") 1279 logfile, argument 1292 log_out_fp = self._open_log_file(logfile)
|
/Zephyr-latest/doc/services/debugging/ |
D | coredump.rst | 409 ``self.logfile.get_arch_data()``. This needs to match the format
|
/Zephyr-latest/scripts/ |
D | spelling.txt | 954 logile||logfile
|