Lines Matching refs:target

114     def __init__(self, config_filename, target):  argument
115 self.target = target
408 target = result.brd.target
420 boards_selected = {target : result.brd}
425 target = '(starting)'
445 name += target
470 def GetBuildDir(self, commit_upto, target): argument
480 return os.path.join(output_dir, target)
482 def GetDoneFile(self, commit_upto, target): argument
489 return os.path.join(self.GetBuildDir(commit_upto, target), 'done')
491 def GetSizesFile(self, commit_upto, target): argument
498 return os.path.join(self.GetBuildDir(commit_upto, target), 'sizes')
500 def GetFuncSizesFile(self, commit_upto, target, elf_fname): argument
508 return os.path.join(self.GetBuildDir(commit_upto, target),
511 def GetObjdumpFile(self, commit_upto, target, elf_fname): argument
519 return os.path.join(self.GetBuildDir(commit_upto, target),
522 def GetErrFile(self, commit_upto, target): argument
529 output_dir = self.GetBuildDir(commit_upto, target)
610 def GetBuildOutcome(self, commit_upto, target, read_func_sizes, argument
623 done_file = self.GetDoneFile(commit_upto, target)
624 sizes_file = self.GetSizesFile(commit_upto, target)
632 err_file = self.GetErrFile(commit_upto, target)
664 pattern = self.GetFuncSizesFile(commit_upto, target, '*')
672 output_dir = self.GetBuildDir(commit_upto, target)
723 outcome = self.GetBuildOutcome(commit_upto, board.target,
725 board_dict[board.target] = outcome
750 tconfig = Config(self.config_filenames, board.target)
755 config[board.target] = tconfig
775 for target in changes:
776 if target in board_dict:
777 arch = board_dict[target].arch
780 str = self.col.Color(color, ' ' + target)
895 target = result['_target']
897 base_outcome = self._base_board_dict[target]
931 for target in board_dict:
932 if target not in board_selected:
934 base_sizes = self._base_board_dict[target].sizes
935 outcome = board_dict[target]
943 err = {'_target' : target}
957 arch = board_selected[target].arch
1054 if not board.target in names:
1055 names.append(board.target)
1134 for target in board_dict:
1135 if target not in board_selected:
1139 if target in self._base_board_dict:
1140 base_outcome = self._base_board_dict[target].rc
1141 outcome = board_dict[target]
1143 unknown.append(target)
1145 better.append(target)
1147 worse.append(target)
1149 new.append(target)
1196 for target in board_dict:
1197 if target not in board_selected:
1199 arch = board_selected[target].arch
1212 for target in board_dict:
1213 if target not in board_selected:
1216 arch = board_selected[target].arch
1221 tbase = self._base_config[target]
1222 tconfig = config[target]
1254 summary[target] = '\n'.join(lines)
1257 for target, lines in summary.iteritems():
1259 lines_by_target[lines].append(target)
1261 lines_by_target[lines] = [target]
1461 term = threading.Thread(target=self.queue.join)