Home
last modified time | relevance | path

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

/external/perfetto/ui/src/frontend/
Dfrontend_local_state.ts42 const startSec = Math.max(ts.start, globals.state.traceTime.startSec); constant
44 this.visibleWindowTime = new TimeSpan(startSec, endSec);
54 startSec: this.visibleWindowTime.start,
68 this.updateVisibleTime(new TimeSpan(visible.startSec, visible.endSec));
Doverview_timeline_panel.ts38 globals.state.traceTime.startSec, globals.state.traceTime.endSec);
88 const xStart = Math.floor(this.timeScale.timeToPx(loads[i].startSec));
Dslice_panel.ts91 details.wakeupTs - globals.state.traceTime.startSec)
108 globals.state.traceTime.startSec))
Dviewer_page.ts220 if (tStart < traceTime.startSec) {
221 tStart = traceTime.startSec;
248 const startTs = Math.max(traceTime.startSec,
Dkeyboard_event_handler.ts31 const startTs = slice.ts + globals.state.traceTime.startSec;
Dthread_state_panel.ts42 timeToCode(attrs.ts - globals.state.traceTime.startSec)
Dtime_axis_panel.ts38 timeToString(range.start - globals.state.traceTime.startSec);
Dglobals.ts36 startSec: number; property
Dlogs_panel.ts132 formatTimestamp(ts / 1e9 - globals.state.traceTime.startSec)),
Dnotes_panel.ts178 const startTime = note.timestamp - globals.state.traceTime.startSec;
/external/perfetto/ui/src/controller/
Dtrace_controller.ts191 startSec: traceTime.start,
521 const startSec = traceTime.start + step * stepSec; constant
522 const startNs = Math.floor(startSec * 1e9);
523 const endSec = startSec + stepSec;
535 schedData[cpu] = {startSec, endSec, load};
561 const startSec = traceTime.start + stepSec * bucket; constant
562 const endSec = startSec + stepSec;
569 loadArray.push({startSec, endSec, load});
Dselection_controller.ts55 const timeFromStart = fromNs(ts) - globals.state.traceTime.startSec;
Dlogs_controller.ts175 const newSpan = new TimeSpan(traceTime.startSec, traceTime.endSec);
/external/perfetto/ui/src/tracks/cpu_freq/
Dcontroller.ts165 const startSec = fromNs(+cols[0].longValues![row]); constant
166 data.tsStarts[row] = startSec;
167 data.tsEnds[row] = startSec + fromNs(+cols[1].longValues![row]);
/external/perfetto/ui/src/tracks/chrome_slices/
Dcontroller.ts139 const startSec = fromNs(+cols[0].longValues![row]); constant
140 slices.starts[row] = startSec;
141 slices.ends[row] = startSec + fromNs(+cols[1].longValues![row]);
/external/perfetto/ui/src/tracks/cpu_slices/
Dcontroller.ts140 const startSec = fromNs(+cols[0].longValues![row]); constant
141 slices.starts[row] = startSec;
142 slices.ends[row] = startSec + fromNs(+cols[1].longValues![row]);
/external/perfetto/ui/src/tracks/process_scheduling/
Dcontroller.ts165 const startSec = fromNs(+cols[0].longValues![row]); constant
166 slices.starts[row] = startSec;
167 slices.ends[row] = startSec + fromNs(+cols[1].longValues![row]);
/external/perfetto/ui/src/tracks/vsync/
Dcontroller.ts61 const startSec = fromNs(+cols[0].longValues![i]); constant
62 result.vsyncs[i] = startSec;
/external/perfetto/ui/src/tracks/counter/
Dcontroller.ts118 const startSec = fromNs(+cols[0].longValues![row]); constant
120 data.timestamps[row] = startSec;
/external/perfetto/ui/src/common/
Dstate.ts67 startSec: number; property
158 startSec: 0,