Searched refs:ioWait (Results 1 – 5 of 5) sorted by relevance
/external/perfetto/ui/src/tracks/thread_state/ |
D | index.ts | 122 {shortState: string | undefined; ioWait: boolean | undefined}, 125 shortState: string|undefined, ioWait: boolean|undefined) { 126 let idx = stringIndexes.get({shortState, ioWait}); 129 data.strings.push(translateState(shortState, ioWait)); 130 stringIndexes.set({shortState, ioWait}, idx); 153 const ioWait = it.ioWait === null ? undefined : !!it.ioWait; 162 data.state[row] = internState(state, ioWait);
|
/external/perfetto/ui/src/controller/aggregation/ |
D | thread_aggregation_controller.ts | 87 ioWait: NUM_NULL, 100 const ioWait = it.ioWait === null ? undefined : it.ioWait > 0; constant 101 summary.states.push(translateState(state, ioWait));
|
/external/perfetto/ui/src/common/ |
D | thread_state.ts | 33 state: string|undefined|null, ioWait: boolean|undefined = undefined) { 42 if (ioWait === true) { 44 } else if (ioWait === false) {
|
/external/perfetto/ui/src/frontend/ |
D | thread_state.ts | 98 ioWait: NUM_NULL, 106 const ioWait = it.ioWait === null ? undefined : it.ioWait > 0; constant 117 state: translateState(it.state || undefined, ioWait),
|
D | aggregation_panel.ts | 101 const ioWait = constant 103 return translateState(split[0], ioWait);
|