HomeSort by relevance Sort by last modified time
    Searched refs:patch_id (Results 1 - 11 of 11) sorted by null

  /external/webkit/Tools/QueueStatusServer/handlers/
nextpatch.py 46 patch_id = db.run_in_transaction(self._assign_patch, queue.active_work_items().key(), queue.work_items().item_ids)
47 if not patch_id:
50 self.response.out.write(patch_id)
queuestatus_unittest.py 36 def __init__(self, patch_id, bot_id):
37 self.active_patch_id = patch_id
updatestatus.py 50 patch_id = self._int_from_request("patch_id")
56 queue_status.active_patch_id = patch_id
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
feeders_unittest.py 74 def __init__(self, patch_id, review):
75 self.id = patch_id
  /external/webkit/Tools/Scripts/webkitpy/common/net/
statusserver.py 68 self._browser["patch_id"] = unicode(patch.id())
164 def patch_status(self, queue_name, patch_id):
165 patch_status_url = "%s/patch-status/%s/%s" % (self.url, queue_name, patch_id)
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues.py 208 patch_id = self._tool.status_server.next_work_item(self.name)
209 if not patch_id:
211 patch = self._tool.bugs.fetch_attachment(patch_id)
217 patch = Attachment({'id': patch_id}, None)
352 # Note: We name the zip with the bug_id instead of patch_id to match work_item_log_path().
download.py 176 return map(lambda patch_id: tool.bugs.fetch_attachment(patch_id), args)
queries.py 124 for patch_id in patch_ids:
125 print patch_id
queues_unittest.py 156 patch_id = OutputCapture().assert_outputs(self, queue._next_patch, [], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
157 self.assertEquals(patch_id, None) # 2 is an invalid patch id
upload.py 105 for patch_id in tool.bugs.queries.fetch_attachment_ids_from_review_queue():
106 patch = self._tool.bugs.fetch_attachment(patch_id)
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 620 def patch_status(self, queue_name, patch_id):
638 def submit_to_ews(self, patch_id):
639 log("MOCK: submit_to_ews: %s" % (patch_id))

Completed in 212 milliseconds