/external/chromium_org/chrome/service/cloud_print/ |
cloud_print_connector.cc | 361 std::string mime_boundary; local 362 CreateMimeBoundaryForUpload(&mime_boundary); 365 net::AddMultipartValueForUpload(kMessageTextValue, failure_msg, mime_boundary, 367 net::AddMultipartFinalDelimiterForUpload(mime_boundary, &post_data); 369 mime_type += mime_boundary; 607 std::string mime_boundary; local 608 CreateMimeBoundaryForUpload(&mime_boundary); 612 settings_.proxy_id(), mime_boundary, std::string(), &post_data); 614 info.printer_name, mime_boundary, std::string(), &post_data); 616 info.printer_description, mime_boundary, std::string(), &post_data) [all...] |
printer_job_handler.cc | 685 std::string mime_boundary; local 686 CreateMimeBoundaryForUpload(&mime_boundary); 697 net::AddMultipartValueForUpload(kUseCDD, "true", mime_boundary, 701 caps_and_defaults.printer_capabilities, mime_boundary, 704 caps_and_defaults.printer_defaults, mime_boundary, 707 caps_hash, mime_boundary, std::string(), &post_data); 717 post_data += GetPostDataForPrinterInfo(printer_info, mime_boundary); 722 cp_tag_wildcard, mime_boundary, std::string(), &post_data); 736 printer_info.printer_name, mime_boundary, std::string(), &post_data); 740 printer_info.printer_description, mime_boundary, [all...] |
/external/chromium_org/cloud_print/gcp20/prototype/ |
cloud_print_requester.cc | 124 std::string mime_boundary; local 127 base::SStringPrintf(&mime_boundary, 132 data_mimetype = "multipart/form-data; boundary=" + mime_boundary; 134 net::AddMultipartValueForUpload(kProxyIdValue, proxy_id, mime_boundary, 136 net::AddMultipartValueForUpload(kPrinterNameValue, device_name, mime_boundary, 138 net::AddMultipartValueForUpload("use_cdd", "true", mime_boundary, 140 net::AddMultipartValueForUpload(kPrinterNameValue, device_name, mime_boundary, 142 net::AddMultipartValueForUpload(kPrinterCapsValue, cdd, mime_boundary, 145 mime_boundary, std::string(), &data); 147 mime_boundary, std::string(), &data) [all...] |
/external/chromium_org/components/crash/app/ |
breakpad_linux.cc | 233 MimeWriter(int fd, const char* const mime_boundary); 295 MimeWriter::MimeWriter(int fd, const char* const mime_boundary) 298 mime_boundary_(mime_boundary) { 950 // |mime_boundary| is only used on Linux. 954 const char* mime_boundary, 994 sizeof(header_msg) - 1 + strlen(mime_boundary) - 2 + 1)); 996 memcpy(header + sizeof(header_msg) - 1, mime_boundary + 2, 997 strlen(mime_boundary) - 2); 998 // We grab the NUL byte from the end of |mime_boundary|. 1263 char mime_boundary[28 + 16 + 1]; local [all...] |