Home
last modified time | relevance | path

Searched refs:inf (Results 1 – 6 of 6) sorted by relevance

/scripts/
A Dmake_fit.py160 def compress_data(inf, compress): argument
171 return inf.read()
210 with open(fname, 'rb') as inf:
211 compressed = compress_data(inf, compress)
228 with open(fname, 'rb') as inf:
229 data = inf.read()
239 cmd = inf.read()
272 with open(args.kernel, 'rb') as inf:
273 comp_data = compress_data(inf, args.compress)
319 with open(args.output, 'rb') as inf:
[all …]
/scripts/gdb/linux/
A Ddmesg.py33 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,
A Dconfig.py33 inf = gdb.inferiors()[0]
34 zconfig_buf = utils.read_memoryview(inf, py_config_ptr,
A Dproc.py262 inf = gdb.inferiors()[0]
263 fdt_buf = utils.read_memoryview(inf, py_fdt_header_ptr,
A Dtimerlist.py156 inf = gdb.inferiors()[0]
159 buf = utils.read_memoryview(inf, bits, num_bytes).tobytes()
A Dutils.py115 def read_memoryview(inf, start, length): argument
116 m = inf.read_memory(start, length)

Completed in 8 milliseconds