Searched refs:logfile (Results 1 – 13 of 13) sorted by relevance
/scripts/coredump/gdbstubs/ |
A 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)
|
A 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"]
|
/scripts/logging/dictionary/ |
A D | log_parser.py | 56 logdata = dictionary_parser.utils.convert_hex_file_to_bin(args.logfile) 60 with open(args.logfile, encoding="iso-8859-1") as hexfile: 93 with open(args.logfile, "rb") as logfile: 94 if not logfile: 97 logdata = logfile.read() 116 logger.error("ERROR: cannot read log from file: %s, exiting...", args.logfile)
|
/scripts/coredump/gdbstubs/arch/ |
A 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']
|
A 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']
|
A 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']
|
A 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']
|
A 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']
|
A 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']
|
/scripts/coredump/coredump_parser/ |
A D | log_parser.py | 58 def __init__(self, logfile): argument 59 self.logfile = logfile 68 self.fd = open(self.logfile, "rb")
|
/scripts/coredump/ |
A D | coredump_gdbserver.py | 95 if not os.path.isfile(args.logfile): 103 logf = CoredumpLogFile(args.logfile)
|
/scripts/pylib/twister/twisterlib/ |
A D | handlers.py | 915 def _thread(handler, timeout, outdir, logfile, fifo_fn, pid_fn, argument 934 open(logfile, "w") as log_out_fp 1200 def _open_log_file(logfile): argument 1201 return open(logfile, "w") 1275 logfile, argument 1288 log_out_fp = self._open_log_file(logfile)
|
/scripts/ |
A D | spelling.txt | 954 logile||logfile
|
Completed in 21 milliseconds