Home | History | Annotate | Download | only in scripts

Lines Matching refs:form_fields

681       form_fields = [("filename", filename),
688 form_fields.append(("file_too_large", "1"))
690 form_fields.append(("user", options.email))
691 ctype, body = EncodeMultipartFormData(form_fields,
1193 form_fields = [("filename", patch[0])]
1195 form_fields.append(("content_upload", "1"))
1197 ctype, body = EncodeMultipartFormData(form_fields, files)
1298 form_fields = [("subject", message)]
1300 form_fields.append(("base", base))
1302 form_fields.append(("issue", str(options.issue)))
1304 form_fields.append(("user", options.email))
1309 form_fields.append(("reviewers", options.reviewers))
1314 form_fields.append(("cc", options.cc))
1323 form_fields.append(("description", description))
1333 form_fields.append(("base_hashes", base_hashes))
1337 form_fields.append(("send_mail", "1"))
1339 form_fields.append(("content_upload", "1"))
1343 form_fields.append(("separate_patches", "1"))
1346 ctype, body = EncodeMultipartFormData(form_fields, uploaded_diff_file)