/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/chrome/service/cloud_print/ |
cloud_print_service_helpers.h | 33 const std::string& mime_boundary);
|
cloud_print_connector.cc | 360 std::string mime_boundary; local 361 CreateMimeBoundaryForUpload(&mime_boundary); 364 net::AddMultipartValueForUpload(kMessageTextValue, failure_msg, mime_boundary, 366 net::AddMultipartFinalDelimiterForUpload(mime_boundary, &post_data); 368 mime_type += mime_boundary; 606 std::string mime_boundary; local 607 CreateMimeBoundaryForUpload(&mime_boundary); 611 settings_.proxy_id(), mime_boundary, std::string(), &post_data); 613 info.printer_name, mime_boundary, std::string(), &post_data); 615 info.printer_description, mime_boundary, std::string(), &post_data) [all...] |
cloud_print_service_helpers.cc | 76 const std::string& mime_boundary) { 79 mime_boundary,
|
printer_job_handler.cc | 672 std::string mime_boundary; local 673 CreateMimeBoundaryForUpload(&mime_boundary); 683 caps_and_defaults.printer_capabilities, mime_boundary, 686 caps_and_defaults.printer_defaults, mime_boundary, 689 caps_hash, mime_boundary, std::string(), &post_data); 699 post_data += GetPostDataForPrinterInfo(printer_info, mime_boundary); 704 cp_tag_wildcard, mime_boundary, std::string(), &post_data); 718 printer_info.printer_name, mime_boundary, std::string(), &post_data); 722 printer_info.printer_description, mime_boundary, 727 base::StringPrintf("%d", printer_info.printer_status), mime_boundary, [all...] |
/external/chromium_org/chrome/common/cloud_print/ |
cloud_print_helpers.h | 67 // Returns the MIME type of multipart with |mime_boundary|. 68 std::string GetMultipartMimeType(const std::string& mime_boundary); 79 const std::string& mime_boundary,
|
cloud_print_helpers.cc | 194 std::string GetMultipartMimeType(const std::string& mime_boundary) { 195 return std::string("multipart/form-data; boundary=") + mime_boundary; 211 const std::string& mime_boundary, 227 net::AddMultipartValueForUpload(kPrinterTagValue, msg, mime_boundary, 234 mime_boundary, std::string(), &post_data);
|
/external/chromium_org/net/base/ |
mime_util.h | 122 const std::string& mime_boundary, 128 const std::string& mime_boundary,
|
mime_util.cc | [all...] |
/external/chromium_org/components/breakpad/app/ |
breakpad_linux.cc | 241 MimeWriter(int fd, const char* const mime_boundary); 302 MimeWriter::MimeWriter(int fd, const char* const mime_boundary) 305 mime_boundary_(mime_boundary) { 904 // |mime_boundary| is only used on Linux. 908 const char* mime_boundary, 948 sizeof(header_msg) - 1 + strlen(mime_boundary) - 2 + 1)); 950 memcpy(header + sizeof(header_msg) - 1, mime_boundary + 2, 951 strlen(mime_boundary) - 2); 952 // We grab the NUL byte from the end of |mime_boundary|. 1114 char mime_boundary[28 + 16 + 1]; local [all...] |