Home
last modified time | relevance | path

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

12

/external/perfetto/ui/src/frontend/
Dfrontend_local_state.ts102 startSec: 0,
205 new TimeSpan(this._visibleState.startSec, this._visibleState.endSec));
210 startSec: number, endSec: number,
212 assertTrue(endSec >= startSec);
214 this._selectedArea = {startSec, endSec, tracks},
248 const startSec = capBetween(ts.start, traceTime.startSec, traceTime.endSec); constant
249 const endSec = capBetween(ts.end, traceTime.startSec, traceTime.endSec);
250 this.visibleWindowTime = new TimeSpan(startSec, endSec);
264 this._visibleState.startSec = this.visibleWindowTime.start;
Dtime_selection_panel.ts135 const start = Math.min(localArea.startSec, localArea.endSec);
136 const end = Math.max(localArea.startSec, localArea.endSec);
140 const start = Math.min(selectedArea.startSec, selectedArea.endSec);
141 const end = Math.max(selectedArea.startSec, selectedArea.endSec);
158 new TimeSpan(selectedArea.startSec, selectedArea.endSec));
166 const offsetTime = timeToString(ts - globals.state.traceTime.startSec);
Dviewer_page.ts49 const start = globals.frontendLocalState.timeScale.timeToPx(area.startSec);
108 if (tStart < traceTime.startSec) {
109 tStart = traceTime.startSec;
154 curBoundary === 'START' ? area.endSec : area.startSec;
164 Math.max(Math.min(keepTime, newTime), traceTime.startSec),
Dkeyboard_event_handler.ts176 startTs = slice.ts + globals.state.traceTime.startSec;
179 startTs = slice.ts + globals.state.traceTime.startSec;
185 startTs = threadState.ts + globals.state.traceTime.startSec;
204 const area: Area = {startSec: range.startTs, endSec: range.endTs, tracks};
Dtime_axis_panel.ts39 timeToString(range.start - globals.state.traceTime.startSec);
43 const startTime = timeToString(globals.state.traceTime.startSec);
Dslice_panel.ts103 trackId, toNs(sliceInfo.ts + globals.state.traceTime.startSec), true);
131 details.wakeupTs - globals.state.traceTime.startSec)} on CPU ${
146 (details.wakeupTs - globals.state.traceTime.startSec))}`;
Dtickmark_panel.ts57 const startSec = fromNs(globals.currentSearchResults.tsStarts[index]); constant
59 Math.max(timeScale.timeToPx(startSec), 0) + TRACK_SHELL_WIDTH;
Dtrack_group_panel.ts167 localState.timeScale.timeToPx(selectedArea.startSec) +
171 selectedArea.endSec - selectedArea.startSec),
251 globals.state.areas[note.areaId].startSec,
Dnotes_panel.ts41 return globals.state.areas[note.areaId].startSec;
103 globals.state.areas[note.areaId].startSec))) {
268 getStartTimestamp(note) - globals.state.traceTime.startSec;
Doverview_timeline_panel.ts46 globals.state.traceTime.startSec, globals.state.traceTime.endSec);
105 const xStart = Math.floor(this.timeScale.timeToPx(loads[i].startSec));
Dtrack_panel.ts301 timeScale.timeToPx(selectedArea.startSec) + TRACK_SHELL_WIDTH,
303 timeScale.deltaTimeToPx(selectedArea.endSec - selectedArea.startSec),
374 globals.state.areas[note.areaId].startSec,
Dpanel_container.ts136 globals.frontendLocalState.timeScale.timeToPx(area.startSec),
158 globals.frontendLocalState.selectArea(area.startSec, area.endSec, tracks);
418 const startX = globals.frontendLocalState.timeScale.timeToPx(area.startSec);
Dthread_state_panel.ts94 trackId, toNs(ts + globals.state.traceTime.startSec));
/external/perfetto/ui/src/controller/
Dtrack_controller.ts141 this.data.start + (traceTime.startSec - traceTime.endSec);
142 return traceTime.startSec !== prevWindowStart;
147 const inRange = traceTime.startSec >= this.data.start &&
166 const traceDurNs = toNs(bounds.endSec - bounds.startSec);
239 const dur = visibleState.endSec - visibleState.startSec;
264 visibleState.startSec - dur,
Dtrace_controller.ts288 let startSec = traceTime.start; variable
290 startSec -= TRACE_MARGIN_TIME_S;
293 startSec,
301 let visibleStartSec = startSec;
316 startSec: visibleStartSec,
398 const startSec = traceTime.start + step * stepSec; constant
399 const startNs = toNsFloor(startSec);
400 const endSec = startSec + stepSec;
412 schedData[cpu] = {startSec, endSec, load};
447 const startSec = traceTime.start + stepSec * bucket; constant
[all …]
Dflow_events_controller.ts133 this.lastSelectedArea.startSec === area.startSec) {
159 const startNs = toNs(area.startSec);
Dselection_controller.ts150 ts = fromNs(Number(v)) - globals.state.traceTime.startSec;
265 const timeFromStart = fromNs(ts) - globals.state.traceTime.startSec;
300 const timeFromStart = fromNs(ts) - globals.state.traceTime.startSec;
343 const startTime = fromNs(ts) - globals.state.traceTime.startSec;
Dheap_profile_controller.ts332 let width = (timeState.endSec - timeState.startSec) / timeState.resolution;
354 const startTime = fromNs(ts) - globals.state.traceTime.startSec;
/external/perfetto/ui/src/controller/aggregation/
Dcounter_aggregation_controller.ts46 toNs(area.endSec) - toNs(area.startSec)}, 2) as avg_value,
50 round((max(last) - min(first))/${area.endSec - area.startSec}, 2) as rate,
55 (min(ts + dur, ${toNs(area.endSec)}) - max(ts,${toNs(area.startSec)}))
64 and ts + dur >= ${toNs(area.startSec)} and
Dthread_aggregation_controller.ts63 thread_state.ts + thread_state.dur > ${toNs(area.startSec)} AND
80 toNs(area.startSec)} AND
Dcpu_by_process_aggregation_controller.ts48 thread_state.ts + thread_state.dur > ${toNs(area.startSec)} AND
Dslice_aggregation_controller.ts61 ts + dur > ${toNs(area.startSec)} AND
Dcpu_aggregation_controller.ts49 thread_state.ts + thread_state.dur > ${toNs(area.startSec)} AND
/external/perfetto/ui/src/common/
Dstate.ts30 Timestamped<{startSec: number; endSec: number; resolution: number;}>;
47 startSec: number; property
150 startSec: number; property
341 startSec: 0,
Dactions.ts530 assertTrue(args.area.endSec >= args.area.startSec);
533 startSec: args.area.startSec,
751 assertTrue(args.area.endSec >= args.area.startSec);
754 startSec: args.area.startSec,
762 assertTrue(args.area.endSec >= args.area.startSec);
765 startSec: args.area.startSec,

12