Home | History | Annotate | Download | only in commands

Lines Matching refs:patches

45         # FIXME: This command is poorly named.  It's fetching the commit-queue list here.  The name implies it's fetching pending-commit (all r+'d patches).
52 name = "patches-in-commit-queue"
53 help_text = "List patches in the commit-queue"
56 patches = tool.bugs.queries.fetch_patches_from_commit_queue()
57 log("Patches in commit queue:")
58 for patch in patches:
63 name = "patches-to-commit-queue"
64 help_text = "Patches which should be added to the commit queue"
77 # We only need to worry about patches from contributers who are not yet committers.
84 patches = tool.bugs.queries.fetch_patches_from_pending_commit_list()
85 patches_needing_cq = filter(self._needs_commit_queue, patches)
97 name = "patches-to-review"
98 help_text = "List patches that are pending review"
102 log("Patches pending review:")