Home
last modified time | relevance | path

Searched refs:DeferredAction (Results 1 – 7 of 7) sorted by relevance

/external/perfetto/ui/src/controller/
Dglobals.ts19 import {DeferredAction, StateActions} from '../common/actions';
32 dispatch(action: DeferredAction): void;
44 private _queuedActions = new Array<DeferredAction>();
52 dispatch(action: DeferredAction): void {
56 dispatchMultiple(actions: DeferredAction[]): void {
76 this._queuedActions = new Array<DeferredAction>();
106 applyAction(action: DeferredAction): Patch[] {
Dtrack_decider.ts21 DeferredAction,
56 engineId: string, engine: Engine): Promise<DeferredAction[]> {
66 private addTrackGroupActions: DeferredAction[] = [];
1034 async decideTracks(): Promise<DeferredAction[]> {
Dtrace_controller.ts20 DeferredAction,
296 const actions: DeferredAction[] = [
/external/perfetto/ui/src/frontend/
Drouter_jsdomtest.ts17 import {Actions, DeferredAction} from '../common/actions';
59 const dispatch = dingus<(a: DeferredAction) => void>();
78 const dispatch = dingus<(a: DeferredAction) => void>();
89 const mockDispatch = (a: DeferredAction) => {
105 const mockDispatch = (a: DeferredAction) => {
123 const dispatch = dingus<(a: DeferredAction) => void>();
132 const dispatch = dingus<(a: DeferredAction) => void>();
Drouter.ts17 import {Actions, DeferredAction} from '../common/actions';
29 private dispatch: (a: DeferredAction) => void,
Dglobals.ts16 import {DeferredAction} from '../common/actions';
29 type Dispatch = (action: DeferredAction) => void;
421 makeSelection(action: DeferredAction<{}>, tabToOpen = 'current_selection') {
/external/perfetto/ui/src/common/
Dactions.ts866 export interface DeferredAction<Args = {}> { interface
878 (args: Args) => DeferredAction<Args>:
894 return (args: {}): DeferredAction<{}> => {