Home
last modified time | relevance | path

Searched refs:extra_headers (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/examples/peerconnection/server/
Dpeer_channel.cc108 std::string extra_headers(GetPeerIdHeader()); in ForwardRequestToPeer() local
111 ds->Send("200 OK", true, ds->content_type(), extra_headers, ds->data()); in ForwardRequestToPeer()
114 peer->QueueResponse("200 OK", ds->content_type(), extra_headers, in ForwardRequestToPeer()
129 const std::string& extra_headers, in QueueResponse() argument
135 waiting_socket_->Send(status, true, content_type, extra_headers, data); in QueueResponse()
145 qr.extra_headers = extra_headers; in QueueResponse()
157 response.extra_headers, response.data); in SetWaitingSocket()
Dpeer_channel.h49 const std::string& extra_headers,
56 std::string status, content_type, extra_headers, data; member
Ddata_socket.cc126 const std::string& extra_headers, in Send() argument
145 if (!extra_headers.empty()) { in Send()
146 buffer += extra_headers; in Send()
Ddata_socket.h112 const std::string& extra_headers,
/external/python/cpython2/Lib/
Dxmlrpclib.py1366 extra_headers = [
1370 extra_headers = None
1372 return host, extra_headers, x509
1427 extra_headers = self._extra_headers
1428 if extra_headers:
1429 if isinstance(extra_headers, DictType):
1430 extra_headers = extra_headers.items()
1431 for key, value in extra_headers:
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dhpack_encoder.h90 grpc_mdelem** extra_headers,
Dhpack_encoder.cc666 grpc_mdelem** extra_headers, in grpc_chttp2_encode_header() argument
691 grpc_mdelem md = *extra_headers[i]; in grpc_chttp2_encode_header()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dhpack_encoder.h101 grpc_mdelem** extra_headers,
Dhpack_encoder.cc835 grpc_mdelem** extra_headers, in grpc_chttp2_encode_header() argument
867 grpc_mdelem md = *extra_headers[i]; in grpc_chttp2_encode_header()
/external/googletest/googletest/scripts/
Dupload.py142 def __init__(self, host, auth_function, host_override=None, extra_headers={}, argument
161 self.extra_headers = extra_headers
183 for key, value in self.extra_headers.iteritems():
501 extra_headers={"Cookie":
/external/libchrome/mojo/public/tools/bindings/generators/
Dmojom_cpp_generator.py207 extra_headers = set()
209 extra_headers.update(typemap.get("traits_headers", []))
210 return sorted(extra_headers)
/external/python/cpython3/Lib/xmlrpc/
Dclient.py1229 extra_headers = [
1233 extra_headers = []
1235 return host, extra_headers, x509
/external/python/oauth2client/tests/
Dtest_client.py1748 self, extra_headers=None, user_agent=None, default_http=False, argument
1781 if extra_headers is not None:
1782 headers.update(extra_headers)
1790 extra_headers = {'user-agent': user_agent}
1792 user_agent=user_agent, extra_headers=extra_headers)