Home | History | Annotate | Download | only in scripts

Lines Matching refs:patch

61 # Max size of patch or base file.
438 group = parser.add_option_group("Patch options")
441 help="A message to identify the patch. "
643 """Helper that calls GetBase file for each file in the patch.
1142 """Splits a patch into separate pieces for each file.
1182 """Uploads a separate patch for each file in the diff output.
1188 for patch in patches:
1189 if len(patch[1]) > MAX_UPLOAD_SIZE:
1190 print ("Not uploading the patch for " + patch[0] +
1193 form_fields = [("filename", patch[0])]
1196 files = [("data", "data.diff", patch[1])]
1199 print "Uploading patch for " + patch[0]
1205 rv.append([lines[1], patch[0]])
1291 prompt = "Message describing this patch set: "
1341 print "Patch is large, so uploading file patches separately."