Home
last modified time | relevance | path

Searched refs:endTs (Results 1 – 9 of 9) sorted by relevance

/external/perfetto/ui/src/frontend/
Dkeyboard_event_handler.ts171 let endTs = -1;
177 endTs = startTs + slice.dur;
180 endTs = startTs + INSTANT_FOCUS_DURATION_S;
186 endTs = startTs + threadState.dur;
190 endTs = selection.rightTs;
193 return {startTs, endTs};
199 if (range.startTs !== -1 && range.endTs !== -1 &&
204 const area: Area = {startSec: range.startTs, endSec: range.endTs, tracks};
214 if (range.startTs !== -1 && range.endTs !== -1) {
215 horizontalScrollAndZoomToRange(range.startTs, range.endTs);
Dscroll_helper.ts42 export function horizontalScrollAndZoomToRange(startTs: number, endTs: number) {
45 let selectDur = endTs - startTs;
48 endTs = startTs;
53 endTs > viewEndNs) {
55 new TimeSpan(startTs - (selectDur * 2), endTs + (selectDur * 2)));
Dlogs_panel.ts96 const {total, startTs, endTs, firstRowTs, lastRowTs} = this.bounds; constant
99 const rightSpan = new TimeSpan(lastRowTs, endTs);
/external/perfetto/ui/src/controller/
Dtrack_decider.ts534 endTs: NUM_NULL,
547 const endTs = row.endTs === null ? undefined : row.endTs; constant
557 config: {name, trackId, startTs, endTs, tid}
832 endTs: NUM_NULL,
844 const endTs = row.endTs === null ? undefined : row.endTs; constant
858 endTs,
Dlogs_controller.ts52 const endTs = endNs ? fromNs(endNs) : trace.end; constant
53 const firstRowTs = firstRowNs ? fromNs(firstRowNs) : endTs;
57 endTs,
Dselection_controller.ts339 const endTs = constant
342 const duration = endTs - ts;
/external/perfetto/ui/src/common/
Dlogs.ts23 endTs: number; property
/external/perfetto/ui/src/tracks/counter/
Dcommon.ts39 endTs?: number; property
Dfrontend.ts280 Math.min(timeScale.timeToPx(this.config.endTs || Infinity), endPx);