Searched refs:endTs (Results 1 – 9 of 9) sorted by relevance
/external/perfetto/ui/src/frontend/ |
D | keyboard_event_handler.ts | 171 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);
|
D | scroll_helper.ts | 42 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)));
|
D | logs_panel.ts | 96 const {total, startTs, endTs, firstRowTs, lastRowTs} = this.bounds; constant 99 const rightSpan = new TimeSpan(lastRowTs, endTs);
|
/external/perfetto/ui/src/controller/ |
D | track_decider.ts | 534 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,
|
D | logs_controller.ts | 52 const endTs = endNs ? fromNs(endNs) : trace.end; constant 53 const firstRowTs = firstRowNs ? fromNs(firstRowNs) : endTs; 57 endTs,
|
D | selection_controller.ts | 339 const endTs = constant 342 const duration = endTs - ts;
|
/external/perfetto/ui/src/common/ |
D | logs.ts | 23 endTs: number; property
|
/external/perfetto/ui/src/tracks/counter/ |
D | common.ts | 39 endTs?: number; property
|
D | frontend.ts | 280 Math.min(timeScale.timeToPx(this.config.endTs || Infinity), endPx);
|