Home
last modified time | relevance | path

Searched refs:traceFile (Results 1 – 20 of 20) sorted by relevance

/development/tools/winscope/src/parsers/view_capture/perfetto/
Dparser_view_capture.ts29 private readonly traceFile: TraceFile; property in ParserViewCapture
38 traceFile: TraceFile,
42 this.traceFile = traceFile;
61 this.traceFile,
Dparser_view_capture_window.ts67 traceFile: TraceFile,
73 super(traceFile, traceProcessor, timestampConverter);
/development/tools/winscope/src/parsers/legacy/
Dparser_factory.ts66 for (const [index, traceFile] of traceFiles.entries()) { constant
76 const p = new ParserType(traceFile, timestampConverter);
82 parsers.push(new FileAndParser(traceFile, subParser)),
85 parsers.push({file: traceFile, parser: p});
95 new UnsupportedFileFormat(traceFile.getDescriptor()),
Dabstract_parser.ts35 protected traceFile: TraceFile; property in AbstractParser
45 this.traceFile = trace;
50 const traceBuffer = new Uint8Array(await this.traceFile.file.arrayBuffer());
59 return [this.traceFile.getDescriptor()];
/development/tools/winscope/src/parsers/perfetto/
Dparser_factory.ts58 traceFile: TraceFile,
66 chunkStart < traceFile.file.size;
71 (chunkStart / traceFile.file.size) * 100,
74 const data = await traceFile.file
98 traceFile,
117 new InvalidPerfettoTrace(traceFile.getDescriptor(), errors),
Dabstract_parser.ts40 private traceFile: TraceFile;
45 traceFile: TraceFile,
49 this.traceFile = traceFile;
111 return [this.traceFile.getDescriptor()];
/development/tools/winscope/src/parsers/view_capture/legacy/
Dparser_view_capture.ts32 private readonly traceFile: TraceFile, property in ParserViewCapture
37 const traceBuffer = new Uint8Array(await this.traceFile.file.arrayBuffer());
55 [this.traceFile.getDescriptor()],
/development/tools/winscope/src/parsers/input_method/perfetto/
Dparser_input_method_manager_service.ts48 traceFile: TraceFile,
52 super(traceFile, traceProcessor, timestampConverter);
Dparser_input_method_service.ts48 traceFile: TraceFile,
52 super(traceFile, traceProcessor, timestampConverter);
Dparser_input_method_clients.ts48 traceFile: TraceFile,
52 super(traceFile, traceProcessor, timestampConverter);
/development/tools/winscope/src/parsers/input/perfetto/
Dparser_key_event.ts43 traceFile: TraceFile,
47 super(traceFile, traceProcessor, timestampConverter);
Dparser_motion_event.ts43 traceFile: TraceFile,
47 super(traceFile, traceProcessor, timestampConverter);
Dabstract_input_event_parser.ts49 traceFile: TraceFile,
53 super(traceFile, traceProcessor, timestampConverter);
/development/tools/winscope/src/parsers/transactions/perfetto/
Dparser_transactions.ts57 traceFile: TraceFile,
61 super(traceFile, traceProcessor, timestampConverter);
/development/tools/winscope/src/parsers/protolog/legacy/
Dparser_protolog_test.ts36 traceFile: string,
47 traceFile,
/development/tools/winscope/src/parsers/screen_recording/
Dparser_screenshot.ts60 const screenshotData = this.traceFile.file;
Dparser_screen_recording_legacy.ts59 const videoData = this.traceFile.file;
Dparser_screen_recording.ts100 const videoData = this.traceFile.file;
/development/tools/winscope/src/parsers/surface_flinger/perfetto/
Dparser_surface_flinger.ts102 traceFile: TraceFile,
106 super(traceFile, traceProcessor, timestampConverter);
/development/tools/winscope/src/test/unit/
Dutils.ts153 const traceFile = new TraceFile(file); constant
156 traceFile,