Home
last modified time | relevance | path

Searched refs:ioWait (Results 1 – 5 of 5) sorted by relevance

/external/perfetto/ui/src/tracks/thread_state/
Dindex.ts122 {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/
Dthread_aggregation_controller.ts87 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/
Dthread_state.ts33 state: string|undefined|null, ioWait: boolean|undefined = undefined) {
42 if (ioWait === true) {
44 } else if (ioWait === false) {
/external/perfetto/ui/src/frontend/
Dthread_state.ts98 ioWait: NUM_NULL,
106 const ioWait = it.ioWait === null ? undefined : it.ioWait > 0; constant
117 state: translateState(it.state || undefined, ioWait),
Daggregation_panel.ts101 const ioWait = constant
103 return translateState(split[0], ioWait);