Lines Matching refs:target
120 def __init__(self, config_filename, target): argument
121 self.target = target
139 def __init__(self, target): argument
140 self.target = target
441 target = result.brd.target
452 boards_selected = {target : result.brd}
457 target = '(starting)'
477 line += target
505 def GetBuildDir(self, commit_upto, target): argument
517 return os.path.join(output_dir, target)
519 def GetDoneFile(self, commit_upto, target): argument
526 return os.path.join(self.GetBuildDir(commit_upto, target), 'done')
528 def GetSizesFile(self, commit_upto, target): argument
535 return os.path.join(self.GetBuildDir(commit_upto, target), 'sizes')
537 def GetFuncSizesFile(self, commit_upto, target, elf_fname): argument
545 return os.path.join(self.GetBuildDir(commit_upto, target),
548 def GetObjdumpFile(self, commit_upto, target, elf_fname): argument
556 return os.path.join(self.GetBuildDir(commit_upto, target),
559 def GetErrFile(self, commit_upto, target): argument
566 output_dir = self.GetBuildDir(commit_upto, target)
680 def GetBuildOutcome(self, commit_upto, target, read_func_sizes, argument
694 done_file = self.GetDoneFile(commit_upto, target)
695 sizes_file = self.GetSizesFile(commit_upto, target)
709 err_file = self.GetErrFile(commit_upto, target)
741 pattern = self.GetFuncSizesFile(commit_upto, target, '*')
749 output_dir = self.GetBuildDir(commit_upto, target)
755 output_dir = self.GetBuildDir(commit_upto, target)
811 outcome = self.GetBuildOutcome(commit_upto, board.target,
814 board_dict[board.target] = outcome
840 tconfig = Config(self.config_filenames, board.target)
845 config[board.target] = tconfig
847 tenvironment = Environment(board.target)
851 environment[board.target] = tenvironment
871 for target in changes:
872 if target in board_dict:
873 arch = board_dict[target].arch
876 str = self.col.Color(color, ' ' + target)
993 target = result['_target']
995 base_outcome = self._base_board_dict[target]
1029 for target in board_dict:
1030 if target not in board_selected:
1032 base_sizes = self._base_board_dict[target].sizes
1033 outcome = board_dict[target]
1041 err = {'_target' : target}
1055 arch = board_selected[target].arch
1264 names = [board.target for board in line.boards]
1284 for target in board_dict:
1285 if target not in board_selected:
1289 if target in self._base_board_dict:
1290 base_outcome = self._base_board_dict[target].rc
1291 outcome = board_dict[target]
1293 unknown_boards.append(target)
1296 warn_boards.append(target)
1298 ok_boards.append(target)
1301 warn_boards.append(target)
1303 err_boards.append(target)
1305 new_boards.append(target)
1342 for target in board_dict:
1343 if target not in board_selected:
1346 tbase = self._base_environment[target]
1347 tenvironment = environment[target]
1364 _AddConfig(lines, target, environment_plus, environment_minus,
1376 for target in board_dict:
1377 if target not in board_selected:
1379 arch = board_selected[target].arch
1392 for target in board_dict:
1393 if target not in board_selected:
1396 arch = board_selected[target].arch
1401 tbase = self._base_config[target]
1402 tconfig = config[target]
1434 summary[target] = '\n'.join(lines)
1437 for target, lines in summary.items():
1439 lines_by_target[lines].append(target)
1441 lines_by_target[lines] = [target]
1707 term = threading.Thread(target=self.queue.join)