Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Dhttpclient_test.py134 def get_proxy(is_ssl): argument
135 return self.https_proxy if is_ssl else self.http_proxy
147 connection = self.fetch._get_connection('example.com', None, is_ssl=False)
154 connection = self.fetch._get_connection('example.com', 8888, is_ssl=False)
161 connection = self.fetch._get_connection('example.com', 8888, is_ssl=False)
168 connection = self.fetch._get_connection('example.com', None, is_ssl=True)
175 connection = self.fetch._get_connection('example.com', None, is_ssl=True)
182 connection = self.fetch._get_connection('example.com', None, is_ssl=True)
195 request_body=None, headers={}, is_ssl=False)
205 request_body=None, headers={}, is_ssl=True)
Dhttparchive.py216 def get_requests(self, command=None, host=None, full_path=None, is_ssl=None, argument
221 if r.matches(command, None, full_path, is_ssl,
225 if r.matches(command, host, full_path, is_ssl,
374 request.full_path, is_ssl=request.is_ssl,
379 request.full_path, is_ssl=request.is_ssl,
384 None, is_ssl=request.is_ssl,
493 is_ssl=False): argument
512 self.is_ssl = is_ssl
518 scheme = 'https' if self.is_ssl else 'http'
524 self.trimmed_headers, self.is_ssl))
[all …]
Dhttpproxy.py117 self.server.is_ssl)
293 host='localhost', port=80, use_delays=False, is_ssl=False, argument
332 self.is_ssl = is_ssl
381 is_ssl=True, protocol='HTTPS', **kwargs)
419 is_ssl=True, protocol='HTTPS', **kwargs)
434 is_ssl=True, protocol='HTTP-to-HTTPS', **kwargs)
Dhttpclient.py275 def _get_system_proxy(is_ssl): argument
276 return platformsettings.get_system_proxy(is_ssl)
278 def _get_connection(self, request_host, request_port, is_ssl): argument
292 system_proxy = self._get_system_proxy(is_ssl)
303 if is_ssl:
325 request_host, request_port, request.is_ssl)
Drules_parser_test.py75 request_body=None, headers=None, is_ssl=False): argument
77 cls, command, host, full_path, request_body, headers or {}, is_ssl)
/external/chromium-trace/catapult/third_party/Paste/paste/
Dhttpserver.py1272 is_ssl = False
1275 is_ssl = True
1321 protocol = is_ssl and 'https' or 'http'