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

  /external/chromium_org/content/child/
multipart_response_delegate.cc 66 boundary_("--"),
73 boundary_.assign(boundary);
75 boundary_.append(boundary);
100 if (data_.length() < boundary_.length() + 2) {
107 if (0 != data_.compare(0, boundary_.length(), boundary_)) {
108 data_ = boundary_ + "\n" + data_;
151 size_t boundary_end_pos = boundary_pos + boundary_.length();
172 if (!processing_headers_ && data_.length() > boundary_.length()) {
175 int send_length = data_.length() - boundary_.length()
    [all...]
multipart_response_delegate.h 130 std::string boundary_; member in class:content::MultipartResponseDelegate
multipart_response_delegate_unittest.cc 38 std::string& boundary() { return delegate_->boundary_; }
  /external/chromium_org/third_party/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 68 std::string type_, boundary_; member in class:rtc::MultipartStream

Completed in 123 milliseconds