Home
last modified time | relevance | path

Searched refs:request_body (Results 1 – 6 of 6) sorted by relevance

/external/google-breakpad/src/common/windows/
Dhttp_upload.cc145 string request_body; in SendRequest() local
147 file_part_name, boundary, &request_body)) { in SendRequest()
168 const_cast<char *>(request_body.data()), in SendRequest()
169 static_cast<DWORD>(request_body.size()))) { in SendRequest()
274 string *request_body) { in GenerateRequestBody() argument
285 request_body->clear(); in GenerateRequestBody()
290 request_body->append("--" + boundary_str + "\r\n"); in GenerateRequestBody()
291 request_body->append("Content-Disposition: form-data; name=\"" + in GenerateRequestBody()
307 request_body->append("--" + boundary_str + "\r\n"); in GenerateRequestBody()
308 request_body->append("Content-Disposition: form-data; " in GenerateRequestBody()
[all …]
Dhttp_upload.h98 string *request_body);
/external/autotest/site_utils/
Dphapi_lib.py356 def create_issue(self, request_body): argument
380 body=request_body)
384 def update_issue(self, issue_id, request_body): argument
412 body=request_body)
/external/python/cpython2/Lib/
Dxmlrpclib.py1279 def request(self, host, handler, request_body, verbose=0): argument
1283 return self.single_request(host, handler, request_body, verbose)
1300 def single_request(self, host, handler, request_body, verbose=0): argument
1308 self.send_request(h, handler, request_body)
1311 self.send_content(h, request_body)
1409 def send_request(self, connection, handler, request_body): argument
1448 def send_content(self, connection, request_body): argument
1453 self.encode_threshold < len(request_body) and
1456 request_body = gzip_encode(request_body)
1458 connection.putheader("Content-Length", str(len(request_body)))
[all …]
/external/libbrillo/brillo/http/
Dhttp_connection_curl_unittest.cc61 std::string request_body; member in brillo::http::curl::__anonac68b0930111::CurlPerformer
81 request_body.append(buffer, size_read); in DoPerform()
305 EXPECT_EQ(request_data, performer_.request_body); in TEST_F()
/external/python/cpython2/Doc/library/
Dxmlrpclib.rst599 def send_request(self, connection, handler, request_body):