Searched refs:ioWait (Results 1 – 5 of 5) sorted by relevance
/external/perfetto/ui/src/tracks/thread_state/ |
D | controller.ts | 107 new Map<{shortState: string, ioWait: boolean | undefined}, number>(); 108 function internState(shortState: string, ioWait: boolean|undefined) { 109 let idx = stringIndexes.get({shortState, ioWait}); 112 data.strings.push(translateState(shortState, ioWait)); 113 stringIndexes.set({shortState, ioWait}, idx); 138 const ioWait = constant 148 data.state[row] = internState(state, ioWait);
|
/external/perfetto/ui/src/common/ |
D | thread_state.ts | 33 state: string|undefined, ioWait: boolean|undefined = undefined) { 39 if (ioWait === true) { 41 } else if (ioWait === false) {
|
/external/perfetto/ui/src/controller/aggregation/ |
D | thread_aggregation_controller.ts | 94 const ioWait = result.columns[1].isNulls![row] ? constant 97 summary.states.push(translateState(state, ioWait));
|
/external/perfetto/ui/src/frontend/ |
D | aggregation_panel.ts | 100 const ioWait = constant 102 return translateState(split[0], ioWait);
|
/external/perfetto/ui/src/controller/ |
D | selection_controller.ts | 268 const ioWait = constant 270 const state = translateState(stateStr, ioWait);
|