Home
last modified time | relevance | path

Searched refs:sliceId (Results 1 – 14 of 14) sorted by relevance

/external/perfetto/ui/src/frontend/
Dflow_events_panel.ts46 const flowClickHandler = (sliceId: number, trackId: number) => {
51 {id: sliceId, trackId: uiTrackId, table: 'slice'}),
75 if (selection.id !== flow.begin.sliceId &&
76 selection.id !== flow.end.sliceId) {
80 const outgoing = selection.id === flow.begin.sliceId;
84 onclick: () => flowClickHandler(otherEnd.sliceId, otherEnd.trackId),
86 globals.frontendLocalState.setHighlightedSliceId(otherEnd.sliceId),
92 m('td.flow-link', args, otherEnd.sliceId.toString()),
Dkeyboard_event_handler.ts118 const sliceId = globals.state.currentSelection.id; constant
119 if (sliceId === -1) {
124 flow => flow.begin.sliceId === sliceId && direction === 'Forward' ||
125 flow.end.sliceId === sliceId && direction === 'Backward');
145 const sliceId = globals.state.currentSelection.id; constant
151 if (sliceId === -1 || flowId === -1) {
162 {id: flowPoint.sliceId, trackId: uiTrackId, table: 'slice'}));
Dthread_state_panel.ts54 threadState.sliceId,
70 state: string, cpu: number|undefined, sliceId: number|undefined,
72 if (sliceId === undefined || cpu === undefined) {
92 Actions.selectSlice({id: sliceId, trackId}));
Dquery_table.ts63 let sliceId: number|undefined; variable
65 sliceId = row.id as number | undefined;
67 sliceId = row.slice_id as number | undefined;
69 if (sliceId !== undefined) {
72 {id: sliceId, trackId: uiTrackId, table: 'slice'}),
Dchrome_slice_panel.ts214 const sliceId = value.sliceId; constant
222 {id: sliceId, trackId, table: 'slice'}));
Dindex.ts159 const sliceId = globals.state.currentSelection.id; constant
161 if (flow.begin.sliceId === sliceId) {
164 if (flow.end.sliceId === sliceId) {
Dfrontend_local_state.ts131 setHighlightedSliceId(sliceId: number) {
132 this.highlightedSliceId = sliceId;
Dglobals.ts58 sliceId: number; property
88 sliceId?: number; property
Dflow_events_renderer.ts216 flow.end.sliceId === globals.frontendLocalState.highlightedSliceId ||
217 flow.begin.sliceId === globals.frontendLocalState.highlightedSliceId;
/external/perfetto/ui/src/controller/
Dflow_events_controller.ts79 sliceId: beginSliceId,
88 sliceId: endSliceId,
103 sliceSelected(sliceId: number) {
105 this.lastSelectedSliceId === sliceId) {
108 this.lastSelectedSliceId = sliceId;
120 from directly_connected_flow(${sliceId}) f
Dselection_controller.ts220 {kind: 'SLICE', trackId: destTrackId, sliceId: Number(value)});
228 async getDestTrackId(sliceId: string): Promise<string> {
230 where slice_id = ${sliceId}`;
273 const sliceId = constant
283 sliceId, constant
/external/perfetto/ui/src/tracks/chrome_slices/
Dfrontend.ts83 const sliceId = data.sliceIds[i]; constant
100 currentSelection.id !== undefined && currentSelection.id === sliceId;
104 globals.frontendLocalState.highlightedSliceId === sliceId;
242 const sliceId = data.sliceIds[sliceIndex]; constant
243 if (sliceId !== undefined && sliceId !== -1) {
245 id: sliceId,
/external/perfetto/ui/src/common/
Darg_types.ts15 export type Arg = string|{kind: 'SLICE', trackId: string, sliceId: number};
/external/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10addrlib.cpp4095 const UINT_32 sliceId = isThin ? pIn->slice : (pIn->slice / localOut.blockSlices); in ComputeSurfaceAddrFromCoordMacroTiled() local
4107 pOut->addr = sliceSize * sliceId + in ComputeSurfaceAddrFromCoordMacroTiled()