Home
last modified time | relevance | path

Searched refs:http_conn (Results 1 – 7 of 7) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dboto_resumable_upload.py271 def _UploadFileBytes(self, conn, http_conn, fp, file_length, argument
327 http_conn.putrequest('PUT', http_request.path)
329 http_conn.putheader(k, put_headers[k])
330 http_conn.endheaders()
334 http_conn.set_debuglevel(0)
336 http_conn.send(buf)
344 http_conn.set_debuglevel(conn.debug)
355 resp = http_conn.getresponse()
357 http_conn.set_debuglevel(conn.debug)
430 http_conn = conn.new_http_connection(self.upload_url_host, conn.port,
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
Dresumable_upload_handler.py316 def _upload_file_bytes(self, conn, http_conn, fp, file_length, argument
361 http_conn.putrequest('PUT', http_request.path)
363 http_conn.putheader(k, put_headers[k])
364 http_conn.endheaders()
368 http_conn.set_debuglevel(0)
370 http_conn.send(buf)
380 http_conn.set_debuglevel(conn.debug)
391 resp = http_conn.getresponse()
393 http_conn.set_debuglevel(conn.debug)
479 http_conn = conn.new_http_connection(self.tracker_uri_host, conn.port,
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
Dkey.py768 def sender(http_conn, method, path, data, headers): argument
788 http_conn.putrequest(method, path, **skips)
790 http_conn.putheader(key, headers[key])
791 http_conn.endheaders()
799 if getattr(http_conn, 'debuglevel', 0) < 4:
800 http_conn.set_debuglevel(0)
840 http_conn.send('%x;\r\n' % chunk_len)
841 http_conn.send(chunk)
842 http_conn.send('\r\n')
844 http_conn.send(chunk)
[all …]
/external/curl/lib/
Dhttp2.c54 const struct http_conn *c = &conn->proto.httpc; in http2_perform_getsock()
82 struct http_conn *c = &conn->proto.httpc; in http2_disconnect()
183 struct http_conn *c = &conn->proto.httpc; in send_callback()
212 struct http_conn *httpc = &conn->proto.httpc; in on_frame_recv()
593 struct http_conn *c = &conn->proto.httpc; in data_source_read_callback()
776 static ssize_t http2_handle_stream_close(struct http_conn *httpc, in http2_handle_stream_close()
805 struct http_conn *httpc = &conn->proto.httpc; in http2_recv()
1001 struct http_conn *httpc = &conn->proto.httpc; in http2_send()
1204 struct http_conn *httpc = &conn->proto.httpc; in Curl_http2_setup()
1249 struct http_conn *httpc = &conn->proto.httpc; in Curl_http2_switched()
Dhttp.h194 struct http_conn { struct
Durldata.h1023 struct http_conn httpc;
Durl.c3372 struct http_conn *httpc = &check->proto.httpc; in ConnectionExists()