Searched defs:mime_boundary (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_service_helpers.cc76 const std::string& mime_boundary) {
79 mime_boundary,
74 GetPostDataForPrinterInfo( const printing::PrinterBasicInfo& printer_info, const std::string& mime_boundary) argument
H A Dcloud_print_connector.cc360 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, st
[all...]
H A Dprinter_job_handler.cc672 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/
H A Dcloud_print_helpers.cc194 std::string GetMultipartMimeType(const std::string& mime_boundary) { argument
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);
209 GetPostDataForPrinterTags( const PrinterTags& printer_tags, const std::string& mime_boundary, const std::string& proxy_tag_prefix, const std::string& tags_hash_tag_name) argument
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcloud_print_requester.cc124 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, st
[all...]
/external/chromium_org/net/base/
H A Dmime_util.cc1001 const std::string& mime_boundary,
1006 post_data->append("--" + mime_boundary + "\r\n");
1018 void AddMultipartFinalDelimiterForUpload(const std::string& mime_boundary, argument
1021 post_data->append("--" + mime_boundary + "--\r\n");
999 AddMultipartValueForUpload(const std::string& value_name, const std::string& value, const std::string& mime_boundary, const std::string& content_type, std::string* post_data) argument
/external/chromium_org/components/breakpad/app/
H A Dbreakpad_linux.cc241 MimeWriter(int fd, const char* const mime_boundary);
302 MimeWriter::MimeWriter(int fd, const char* const mime_boundary) argument
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[2 local
906 ExecUploadProcessOrTerminate(const BreakpadInfo& info, const char* dumpfile, const char* mime_boundary, const char* exe_buf, google_breakpad::PageAllocator* allocator) argument
[all...]

Completed in 257 milliseconds