/external/perfetto/ui/src/controller/ |
D | search_controller.ts | 102 const startNs = Math.round(newSpan.start * 1e9); constant 106 this.update(newSearch, startNs, endNs, newResolution).then(summary => { 125 search: string, startNs: number, endNs: number, 129 startNs = Math.floor(startNs / quantumNs) * quantumNs; 132 window_start=${startNs}, 133 window_dur=${endNs - startNs}, 148 (quantum_ts * ${quantumNs} + ${startNs})/1e9 as tsStart, 149 ((quantum_ts+1) * ${quantumNs} + ${startNs})/1e9 as tsEnd,
|
D | logs_controller.ts | 43 const startNs = minResult[0]; constant 50 const startTs = startNs ? fromNs(startNs) : trace.start;
|
D | trace_controller.ts | 903 const startNs = toNsFloor(startSec); constant 910 `where ts >= ${startNs} and ts < ${endNs} and utid != 0 ` +
|
/external/perfetto/ui/src/tracks/gpu_freq/ |
D | controller.ts | 35 const startNs = toNs(start); constant 74 window_start = ${startNs}, 75 window_dur = ${Math.max(1, endNs - startNs)}, 90 const windowStartNs = Math.floor(startNs / bucketSizeNs) * bucketSizeNs; 94 window_start = ${startNs},
|
/external/perfetto/ui/src/tracks/cpu_freq/ |
D | controller.ts | 36 const startNs = toNs(start); constant 104 window_start = ${startNs}, 105 window_dur = ${Math.max(1, endNs - startNs)}, 120 const windowStartNs = Math.floor(startNs / bucketSizeNs) * bucketSizeNs; 124 window_start = ${startNs},
|
/external/perfetto/ui/src/tracks/counter/ |
D | controller.ts | 37 const startNs = toNs(start); constant 82 where ts <= ${endNs} and ${startNs} <= ts + dur`); 88 let windowStartNs = startNs; 115 where ts <= ${startNs} 124 where ts <= ${endNs} and ${startNs} <= ts + dur
|
/external/perfetto/ui/src/tracks/async_slices/ |
D | controller.ts | 30 const startNs = toNs(start); constant 53 const windowDurNs = Math.max(1, endNs - startNs); 56 window_start=${startNs}, 75 `and ts >= ${startNs} - dur ` + 83 (quantum_ts * ${minNs} + ${startNs}) as ts,
|
/external/perfetto/ui/src/tracks/process_summary/ |
D | controller.ts | 38 const startNs = toNs(start); constant 73 const windowStartNs = Math.floor(startNs / bucketSizeNs) * bucketSizeNs; 89 const startNs = toNs(start); constant 92 Math.min(Math.ceil((endNs - startNs) / bucketSizeNs), LIMIT);
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | controller.ts | 37 const startNs = toNs(start); constant 52 let windowStartNs = startNs; 75 const startNs = toNs(start); constant 77 const numBuckets = Math.ceil((endNs - startNs) / bucketSizeNs);
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | controller.ts | 45 const startNs = toNs(start); constant 68 let windowStartNs = startNs; 91 const startNs = toNs(start); constant 93 const numBuckets = Math.ceil((endNs - startNs) / bucketSizeNs);
|
/external/perfetto/ui/src/frontend/ |
D | scroll_helper.ts | 26 const startNs = toNs(globals.frontendLocalState.visibleWindowTime.start); constant 28 const currentViewNs = endNs - startNs; constant 29 if (ts < startNs || ts > endNs) {
|
D | search_handler.ts | 25 const startNs = toNs(globals.frontendLocalState.visibleWindowTime.start); constant 31 if (index === -1 || currentTs < startNs || currentTs > endNs) { 38 searchSegment(globals.currentSearchResults.tsStarts, startNs);
|
/external/perfetto/ui/src/tracks/chrome_slices/ |
D | controller.ts | 30 const startNs = toNs(start); constant 53 const windowDurNs = Math.max(1, endNs - startNs); 56 window_start=${startNs}, 76 and ts >= ${startNs} - dur
|
/external/perfetto/ui/src/tracks/thread_state/ |
D | controller.ts | 35 const startNs = toNs(start); constant 56 where ts <= ${endNs} and ts + dur >= ${startNs}`; 71 where ts <= ${endNs} and ts + dur >= ${startNs}
|
/external/perfetto/ui/src/tracks/android_log/ |
D | controller.ts | 29 const startNs = toNsFloor(start); constant 41 where ts >= ${startNs} and ts <= ${endNs}
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/ |
D | JarInstrumentor.java | 52 long startNs = System.nanoTime(); in instrumentJar() local 106 long elapsedNs = System.nanoTime() - startNs; in instrumentJar()
|
/external/okhttp/okhttp-logging-interceptor/src/main/java/com/squareup/okhttp/logging/ |
D | HttpLoggingInterceptor.java | 203 long startNs = System.nanoTime(); in intercept() local 205 long tookMs = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - startNs); in intercept()
|