Searched refs:inf (Results 1 – 6 of 6) sorted by relevance
| /scripts/ |
| D | make_fit.py | 160 def compress_data(inf, compress): argument 171 return inf.read() 182 subprocess.call([tool, '-c'], stdin=inf, stdout=outf) 210 with open(fname, 'rb') as inf: 211 compressed = compress_data(inf, compress) 228 with open(fname, 'rb') as inf: 229 data = inf.read() 238 with open(cmd_fname, 'r', encoding='ascii') as inf: 239 cmd = inf.read() 272 with open(args.kernel, 'rb') as inf: [all …]
|
| /scripts/gdb/linux/ |
| D | dmesg.py | 33 inf = gdb.inferiors()[0] 38 prb = utils.read_memoryview(inf, prb_addr, sz).tobytes() 44 desc_ring = utils.read_memoryview(inf, addr, sz).tobytes() 62 text_data_ring = utils.read_memoryview(inf, addr, sz).tobytes() 99 desc = utils.read_memoryview(inf, desc_addr + desc_off, desc_sz).tobytes() 112 info = utils.read_memoryview(inf, info_addr + info_off, info_sz).tobytes() 131 text_data = utils.read_memoryview(inf, text_data_addr + text_start,
|
| D | config.py | 33 inf = gdb.inferiors()[0] 34 zconfig_buf = utils.read_memoryview(inf, py_config_ptr,
|
| D | utils.py | 110 def read_memoryview(inf, start, length): argument 111 m = inf.read_memory(start, length)
|
| D | timerlist.py | 156 inf = gdb.inferiors()[0] 159 buf = utils.read_memoryview(inf, bits, num_bytes).tobytes()
|
| D | proc.py | 262 inf = gdb.inferiors()[0] 263 fdt_buf = utils.read_memoryview(inf, py_fdt_header_ptr,
|