Home
last modified time | relevance | path

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

/external/webrtc/webrtc/examples/peerconnection/server/
Dpeer_channel.cc110 std::string extra_headers(GetPeerIdHeader()); in ForwardRequestToPeer() local
113 ds->Send("200 OK", true, ds->content_type(), extra_headers, in ForwardRequestToPeer()
118 peer->QueueResponse("200 OK", ds->content_type(), extra_headers, in ForwardRequestToPeer()
133 const std::string& extra_headers, in QueueResponse() argument
138 bool ok = waiting_socket_->Send(status, true, content_type, extra_headers, in QueueResponse()
149 qr.extra_headers = extra_headers; in QueueResponse()
161 response.extra_headers, response.data); in SetWaitingSocket()
Dpeer_channel.h49 const std::string& extra_headers, const std::string& data);
55 std::string status, content_type, extra_headers, data; member
Ddata_socket.cc124 const std::string& extra_headers, in Send() argument
142 if (!extra_headers.empty()) { in Send()
143 buffer += extra_headers; in Send()
Ddata_socket.h116 const std::string& extra_headers, const std::string& data) const;
/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/googletest/googletest/scripts/
Dupload.py127 def __init__(self, host, auth_function, host_override=None, extra_headers={}, argument
146 self.extra_headers = extra_headers
168 for key, value in self.extra_headers.iteritems():
486 extra_headers={"Cookie":
/external/googletest/googlemock/scripts/
Dupload.py127 def __init__(self, host, auth_function, host_override=None, extra_headers={}, argument
146 self.extra_headers = extra_headers
168 for key, value in self.extra_headers.iteritems():
486 extra_headers={"Cookie":
/external/google-breakpad/src/testing/scripts/
Dupload.py127 def __init__(self, host, auth_function, host_override=None, extra_headers={}, argument
146 self.extra_headers = extra_headers
168 for key, value in self.extra_headers.iteritems():
486 extra_headers={"Cookie":
/external/google-breakpad/src/testing/gtest/scripts/
Dupload.py127 def __init__(self, host, auth_function, host_override=None, extra_headers={}, argument
146 self.extra_headers = extra_headers
168 for key, value in self.extra_headers.iteritems():
486 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.py1223 extra_headers = [
1227 extra_headers = []
1229 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)