OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:boundary_
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/webkit/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
135
std::string
boundary_
;
member in class:webkit_glue::MultipartResponseDelegate
/external/chromium_org/third_party/libjingle/source/talk/base/
multipart.cc
40
boundary_
(boundary),
56
content_type->append(
boundary_
);
79
ss << "--" <<
boundary_
<< "\r\n";
local
102
ss << "--" <<
boundary_
<< "--" << "\r\n";
local
118
size +=
boundary_
.size() + 4; // for "--
boundary_
\r\n";
138
size +=
boundary_
.size() + 6; // for "--
boundary_
--\r\n";
multipart.h
83
std::string type_,
boundary_
;
member in class:talk_base::MultipartStream
/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
/external/chromium_org/content/child/
multipart_response_delegate_unittest.cc
40
std::string& boundary() { return delegate_->
boundary_
; }
Completed in 878 milliseconds