Lines Matching full:board
80 manifests for a given board.
82 manifests for a given board.
170 def ManifestsSinceDate(self, since_date, board):
171 """Return map of branch:manifests for |board| since |since_date|.
179 @param board: the board whose manifests we want to check for.
183 re.compile(self._BOARD_MANIFEST_RE_PATTERN % board),
184 self._QueryManifestsSinceDate(since_date, board))
187 def ManifestsSinceRev(self, rev, board):
188 """Return map of branch:manifests for |board| since git |rev|.
195 @param board: the board whose manifests we want to check for.
199 re.compile(self._BOARD_MANIFEST_RE_PATTERN % board),
200 self._QueryManifestsSinceRev(rev, board))
203 def GetLatestManifest(self, board, build_type, milestone=None):
204 """Get the latest manifest of a given board and type.
206 @param board: the board whose manifests we want to check for.
216 self._BOARD_BRANCH_MANIFEST_GLOB_PATTERN % (board, build_type))
315 def _QueryManifestsSinceRev(self, git_rev, board):
316 """Get manifest filenames for |board|, since |git_rev|.
319 @param board: the board whose manifests we want to check for.
323 return self._QueryManifestsSince(git_rev + '..HEAD', board)
326 def _QueryManifestsSinceDate(self, since_date, board):
327 """Return list of manifest files for |board| since |since_date|.
331 @param board: the board whose manifests we want to check for.
334 return self._QueryManifestsSince('--since="%s"' % since_date, board)
355 def _QueryManifestsSince(self, since_spec, board):
356 """Return list of manifest files for |board|, since |since_spec|.
361 @param board: the board whose manifests we want to check for.
365 self._tempdir.name, self._BOARD_MANIFEST_GLOB_PATTERN % board)