Home
last modified time | relevance | path

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

/frameworks/base/tools/preload2/src/com/android/preload/actions/
DClearTableAction.java26 private final DumpTableModel dataTableModel; field in ClearTableAction
28 public ClearTableAction(DumpTableModel dataTableModel) { in ClearTableAction() argument
30 this.dataTableModel = dataTableModel; in ClearTableAction()
35 dataTableModel.clear(); in actionPerformed()
DExportAction.java28 private DumpTableModel dataTableModel; field in ExportAction
30 public ExportAction(DumpTableModel dataTableModel) { in ExportAction() argument
32 this.dataTableModel = dataTableModel; in ExportAction()
47 String serialized = DumpDataIO.serialize(dataTableModel.getData()); in run()
DImportAction.java32 private DumpTableModel dataTableModel; field in ImportAction
34 public ImportAction(DumpTableModel dataTableModel) { in ImportAction() argument
36 this.dataTableModel = dataTableModel; in ImportAction()
57 dataTableModel.addData(d); in run()
DScanAllPackagesAction.java32 private DumpTableModel dataTableModel; field in ScanAllPackagesAction
34 public ScanAllPackagesAction(ClientUtils utils, IDevice device, DumpTableModel dataTableModel) { in ScanAllPackagesAction() argument
37 this.dataTableModel = dataTableModel; in ScanAllPackagesAction()
54 dataTableModel.addData(dumpData); in run()
DScanPackageAction.java32 private DumpTableModel dataTableModel; field in ScanPackageAction
34 public ScanPackageAction(ClientUtils utils, IDevice device, DumpTableModel dataTableModel) { in ScanPackageAction() argument
37 this.dataTableModel = dataTableModel; in ScanPackageAction()
78 dataTableModel.addData(dumpData); in work()
DShowDataAction.java37 private DumpTableModel dataTableModel; field in ShowDataAction
39 public ShowDataAction(DumpTableModel dataTableModel) { in ShowDataAction() argument
41 this.dataTableModel = dataTableModel; in ShowDataAction()
49 DumpData data = dataTableModel.getData().get(selRow); in actionPerformed()
DRunMonkeyAction.java38 private DumpTableModel dataTableModel; field in RunMonkeyAction
40 public RunMonkeyAction(IDevice device, DumpTableModel dataTableModel) { in RunMonkeyAction() argument
43 this.dataTableModel = dataTableModel; in RunMonkeyAction()
104 dataTableModel.addData(dumpData); in run()
DComputeThresholdAction.java44 private DumpTableModel dataTableModel; field in ComputeThresholdAction
50 public ComputeThresholdAction(String name, DumpTableModel dataTableModel, int threshold, in ComputeThresholdAction() argument
53 this.dataTableModel = dataTableModel; in ComputeThresholdAction()
62 List<DumpData> data = dataTableModel.getData(); in actionPerformed()
82 for (DumpData d : dataTableModel.getData()) { in run()
DComputeThresholdXAction.java24 public ComputeThresholdXAction(String name, DumpTableModel dataTableModel, in ComputeThresholdXAction() argument
26 super(name, dataTableModel, 1, blacklist); in ComputeThresholdXAction()
DWritePreloadedClassesAction.java35 …lic WritePreloadedClassesAction(ClientUtils utils, IDevice device, DumpTableModel dataTableModel) { in WritePreloadedClassesAction() argument
/frameworks/base/tools/preload2/src/com/android/preload/
DMain.java73 private DumpTableModel dataTableModel; field in Main
121 dataTableModel = new DumpTableModel(); in Main()
127 actions.add(new ClearTableAction(dataTableModel)); in Main()
128 actions.add(new RunMonkeyAction(null, dataTableModel)); in Main()
129 actions.add(new ScanPackageAction(clientUtils, null, dataTableModel)); in Main()
130 actions.add(new ScanAllPackagesAction(clientUtils, null, dataTableModel)); in Main()
131 actions.add(new ComputeThresholdAction("Compute preloaded-classes", dataTableModel, 2, in Main()
133 actions.add(new ComputeThresholdAction("Compute compiled-classes", dataTableModel, 1, in Main()
135 actions.add(new ComputeThresholdXAction("Compute(X)", dataTableModel, in Main()
137 actions.add(new WritePreloadedClassesAction(clientUtils, null, dataTableModel)); in Main()
[all …]
/frameworks/base/tools/preload2/src/com/android/preload/ui/
DSequenceUI.java16 private TableModel dataTableModel; field in SequenceUI
30 public void prepare(ListModel<Client> clientListModel, TableModel dataTableModel, in prepare() argument
33 this.dataTableModel = dataTableModel; in prepare()
DIUI.java16 void prepare(ListModel<Client> clientListModel, TableModel dataTableModel, in prepare() argument
DSwingUI.java62 public void prepare(ListModel<Client> clientListModel, TableModel dataTableModel, in prepare() argument
69 dataTable = new JTable(dataTableModel); in prepare()