HomeSort by relevance Sort by last modified time
    Searched refs:mime_boundary (Results 1 - 10 of 10) sorted by null

  /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 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...]
cloud_print_service_helpers.cc 76 const std::string& mime_boundary) {
79 mime_boundary,
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/chrome/common/cloud_print/
cloud_print_helpers.h 70 // Returns the MIME type of multipart with |mime_boundary|.
71 std::string GetMultipartMimeType(const std::string& mime_boundary);
82 const std::string& mime_boundary,
cloud_print_helpers.cc 205 std::string GetMultipartMimeType(const std::string& mime_boundary) {
206 return std::string("multipart/form-data; boundary=") + mime_boundary;
222 const std::string& mime_boundary,
238 net::AddMultipartValueForUpload(kPrinterTagValue, msg, mime_boundary,
245 mime_boundary, std::string(), &post_data);
  /external/chromium_org/net/base/
mime_util.h 162 const std::string& mime_boundary,
168 const std::string& mime_boundary,
mime_util.cc     [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...]

Completed in 831 milliseconds