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

  /external/google-breakpad/src/common/mac/
HTTPMultipartUpload.h 42 NSString *boundary_; // The boundary string (STRONG) variable
  /external/libbrillo/brillo/http/
http_form_data.cc 122 boundary_{boundary} {
123 if (boundary_.empty())
124 boundary_ = base::StringPrintf("%016" PRIx64, base::RandUint64());
145 "%s; boundary=\"%s\"", content_type_.c_str(), boundary_.c_str());
179 return base::StringPrintf("--%s\r\n", boundary_.c_str());
183 return base::StringPrintf("--%s--", boundary_.c_str());
http_form_data.h 183 const std::string& GetBoundary() const { return boundary_; }
191 std::string boundary_; // Boundary string used as field separator. member in class:brillo::http::MultiPartFormField
  /external/webrtc/webrtc/base/
multipart.cc 25 boundary_(boundary),
41 content_type->append(boundary_);
64 ss << "--" << boundary_ << "\r\n"; local
87 ss << "--" << boundary_ << "--" << "\r\n"; local
103 size += boundary_.size() + 4; // for "--boundary_\r\n";
123 size += boundary_.size() + 6; // for "--boundary_--\r\n";
multipart.h 72 std::string type_, boundary_; member in class:rtc::MultipartStream

Completed in 156 milliseconds