Searched refs:trackControllerRegistry (Results 1 – 16 of 16) sorted by relevance
18 trackControllerRegistry68 trackControllerRegistry.register(HeapProfileTrackController);
18 trackControllerRegistry58 trackControllerRegistry.register(CpuProfileTrackController);
20 trackControllerRegistry,67 trackControllerRegistry.register(AndroidLogTrackController);
20 trackControllerRegistry132 trackControllerRegistry.register(ProcessSummaryTrackController);
20 trackControllerRegistry148 trackControllerRegistry.register(CpuSliceTrackController);
22 trackControllerRegistry,102 trackControllerRegistry.register(DebugSliceTrackController);
19 trackControllerRegistry,122 trackControllerRegistry.register(AsyncSliceTrackController);
19 trackControllerRegistry173 trackControllerRegistry.register(CounterTrackController);
19 trackControllerRegistry,125 trackControllerRegistry.register(ExpectedFramesSliceTrackController);
19 trackControllerRegistry,127 trackControllerRegistry.register(ChromeSliceTrackController);
21 trackControllerRegistry166 trackControllerRegistry.register(ProcessSchedulingTrackController);
20 trackControllerRegistry,141 trackControllerRegistry.register(ActualFramesSliceTrackController);
27 trackControllerRegistry160 trackControllerRegistry.register(ThreadStateTrackController);
21 trackControllerRegistry239 trackControllerRegistry.register(CpuFreqTrackController);
83 import {TrackControllerArgs, trackControllerRegistry} from './track_controller';144 if (!trackControllerRegistry.has(trackCfg.kind)) continue;145 const trackCtlFactory = trackControllerRegistry.get(trackCfg.kind);
293 export const trackControllerRegistry = new Registry<TrackControllerFactory>(); constant