/development/tools/winscope/src/parsers/view_capture/perfetto/ |
D | parser_view_capture.ts | 29 private readonly traceFile: TraceFile; property in ParserViewCapture 38 traceFile: TraceFile, 42 this.traceFile = traceFile; 61 this.traceFile,
|
D | parser_view_capture_window.ts | 67 traceFile: TraceFile, 73 super(traceFile, traceProcessor, timestampConverter);
|
/development/tools/winscope/src/parsers/legacy/ |
D | parser_factory.ts | 66 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()),
|
D | abstract_parser.ts | 35 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/ |
D | parser_factory.ts | 58 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),
|
D | abstract_parser.ts | 40 private traceFile: TraceFile; 45 traceFile: TraceFile, 49 this.traceFile = traceFile; 111 return [this.traceFile.getDescriptor()];
|
/development/tools/winscope/src/parsers/view_capture/legacy/ |
D | parser_view_capture.ts | 32 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/ |
D | parser_input_method_manager_service.ts | 48 traceFile: TraceFile, 52 super(traceFile, traceProcessor, timestampConverter);
|
D | parser_input_method_service.ts | 48 traceFile: TraceFile, 52 super(traceFile, traceProcessor, timestampConverter);
|
D | parser_input_method_clients.ts | 48 traceFile: TraceFile, 52 super(traceFile, traceProcessor, timestampConverter);
|
/development/tools/winscope/src/parsers/input/perfetto/ |
D | parser_key_event.ts | 43 traceFile: TraceFile, 47 super(traceFile, traceProcessor, timestampConverter);
|
D | parser_motion_event.ts | 43 traceFile: TraceFile, 47 super(traceFile, traceProcessor, timestampConverter);
|
D | abstract_input_event_parser.ts | 49 traceFile: TraceFile, 53 super(traceFile, traceProcessor, timestampConverter);
|
/development/tools/winscope/src/parsers/transactions/perfetto/ |
D | parser_transactions.ts | 57 traceFile: TraceFile, 61 super(traceFile, traceProcessor, timestampConverter);
|
/development/tools/winscope/src/parsers/protolog/legacy/ |
D | parser_protolog_test.ts | 36 traceFile: string, 47 traceFile,
|
/development/tools/winscope/src/parsers/screen_recording/ |
D | parser_screenshot.ts | 60 const screenshotData = this.traceFile.file;
|
D | parser_screen_recording_legacy.ts | 59 const videoData = this.traceFile.file;
|
D | parser_screen_recording.ts | 100 const videoData = this.traceFile.file;
|
/development/tools/winscope/src/parsers/surface_flinger/perfetto/ |
D | parser_surface_flinger.ts | 102 traceFile: TraceFile, 106 super(traceFile, traceProcessor, timestampConverter);
|
/development/tools/winscope/src/test/unit/ |
D | utils.ts | 153 const traceFile = new TraceFile(file); constant 156 traceFile,
|