Home | History | Annotate | Download | only in network

Lines Matching defs:boundary

138     Vector<char> boundary;
145 // to appear in the boundary string, because 0x41 and 0x42 are present in
159 append(boundary, "----WebKitFormBoundary");
172 boundary.append(randomBytes);
173 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
174 return boundary;
177 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name)
179 addBoundaryToMultiPartHeader(buffer, boundary);
188 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary)
191 append(buffer, boundary);