Home | History | Annotate | Download | only in buildman

Lines Matching refs:board_selected

737             board_selected: Dict containing boards to summarise
859 def ResetResultSummary(self, board_selected):
869 board_selected: Dict containing boards to summarise, keyed by
873 for board in board_selected:
969 def PrintSizeSummary(self, board_selected, board_dict, show_detail,
984 board_selected: Dict containing boards to summarise, keyed by
997 if target not in board_selected:
1022 arch = board_selected[target].arch
1074 def PrintResultSummary(self, board_selected, board_dict, err_lines,
1080 Only boards mentioned in board_selected will be considered. This
1086 board_selected: Dict containing boards to summarise, keyed by
1203 if target not in board_selected:
1229 self.AddOutcome(board_selected, arch_list, better, '',
1231 self.AddOutcome(board_selected, arch_list, worse, '+',
1233 self.AddOutcome(board_selected, arch_list, new, '*', self.col.BLUE)
1235 self.AddOutcome(board_selected, arch_list, unknown, '?',
1254 self.PrintSizeSummary(board_selected, board_dict, show_detail,
1261 if target not in board_selected:
1295 if target not in board_selected:
1297 arch = board_selected[target].arch
1311 if target not in board_selected:
1314 arch = board_selected[target].arch
1397 for board in board_selected:
1404 def ProduceResultSummary(self, commit_upto, commits, board_selected):
1407 board_selected, commit_upto,
1415 self.PrintResultSummary(board_selected, board_dict,
1421 def ShowSummary(self, commits, board_selected):
1429 board_selected: Dict containing boards to summarise
1433 self.ResetResultSummary(board_selected)
1437 self.ProduceResultSummary(commit_upto, commits, board_selected)
1442 def SetupBuild(self, board_selected, commits):
1446 board_selected: Selected boards to build
1451 self.count = len(board_selected) * count
1525 def BuildBoards(self, commits, board_selected, keep_outputs, verbose):
1543 self.ResetResultSummary(board_selected)
1545 self._PrepareWorkingSpace(min(self.num_threads, len(board_selected)),
1549 self.SetupBuild(board_selected, commits)
1553 for brd in board_selected.itervalues():