Searched refs:InputRecord (Results 1 – 1 of 1) sorted by relevance
/aosp12/frameworks/base/startop/scripts/iorap/ |
H A D | compile_handcrafted_file.py | 66 InputRecord = NamedTuple('InputRecord', [('filepath', str), ('offset', int), ('length', int), ('rem… variable 118 return InputRecord(in_filepath, in_offset, in_length, 'zip entry (%s)' %(in_zip_entry)) 120 def parse_input_file(input: Iterable[str], zip_paths: List[str]) -> Iterable[InputRecord]: 140 … yield handle_zip_entry(InputRecord(in_filepath, in_offset, in_length, 'regular file'), zip_paths) 200 yield InputRecord(pinlist_meta_parent, pin_offset, pin_length, remark) 202 def write_text_file_output(input_records: Iterable[InputRecord], output_text_file): argument 206 def build_trace_file(input_records: Iterable[InputRecord]) -> TraceFile: argument
|