Home
last modified time | relevance | path

Searched refs:HTTPException (Results 1 – 25 of 60) sorted by relevance

123

/aosp_15_r20/external/python/cpython2/Lib/
Dhttplib.py309 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1301 class HTTPException(Exception): class
1306 class NotConnected(HTTPException):
1309 class InvalidURL(HTTPException):
1312 class UnknownProtocol(HTTPException):
1317 class UnknownTransferEncoding(HTTPException):
1320 class UnimplementedFileMode(HTTPException):
1323 class IncompleteRead(HTTPException):
1337 class ImproperConnectionState(HTTPException):
1349 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/http/
H A Dclient.py219 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1463 class HTTPException(Exception): class
1468 class NotConnected(HTTPException):
1471 class InvalidURL(HTTPException):
1474 class UnknownProtocol(HTTPException):
1479 class UnknownTransferEncoding(HTTPException):
1482 class UnimplementedFileMode(HTTPException):
1485 class IncompleteRead(HTTPException):
1499 class ImproperConnectionState(HTTPException):
1511 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/http/
Dclient.py219 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1463 class HTTPException(Exception): class
1468 class NotConnected(HTTPException):
1471 class InvalidURL(HTTPException):
1474 class UnknownProtocol(HTTPException):
1479 class UnknownTransferEncoding(HTTPException):
1482 class UnimplementedFileMode(HTTPException):
1485 class IncompleteRead(HTTPException):
1499 class ImproperConnectionState(HTTPException):
1511 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/external/python/cpython3/Lib/http/
Dclient.py219 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1463 class HTTPException(Exception): class
1468 class NotConnected(HTTPException):
1471 class InvalidURL(HTTPException):
1474 class UnknownProtocol(HTTPException):
1479 class UnknownTransferEncoding(HTTPException):
1482 class UnimplementedFileMode(HTTPException):
1485 class IncompleteRead(HTTPException):
1499 class ImproperConnectionState(HTTPException):
1511 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/http/
Dclient.py219 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1463 class HTTPException(Exception): class
1468 class NotConnected(HTTPException):
1471 class InvalidURL(HTTPException):
1474 class UnknownProtocol(HTTPException):
1479 class UnknownTransferEncoding(HTTPException):
1482 class UnimplementedFileMode(HTTPException):
1485 class IncompleteRead(HTTPException):
1499 class ImproperConnectionState(HTTPException):
1511 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/http/
Dclient.py219 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1463 class HTTPException(Exception): class
1468 class NotConnected(HTTPException):
1471 class InvalidURL(HTTPException):
1474 class UnknownProtocol(HTTPException):
1479 class UnknownTransferEncoding(HTTPException):
1482 class UnimplementedFileMode(HTTPException):
1485 class IncompleteRead(HTTPException):
1499 class ImproperConnectionState(HTTPException):
1511 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/http/
Dclient.py219 raise HTTPException("got more than %d headers" % _MAXHEADERS)
1463 class HTTPException(Exception): class
1468 class NotConnected(HTTPException):
1471 class InvalidURL(HTTPException):
1474 class UnknownProtocol(HTTPException):
1479 class UnknownTransferEncoding(HTTPException):
1482 class UnimplementedFileMode(HTTPException):
1485 class IncompleteRead(HTTPException):
1499 class ImproperConnectionState(HTTPException):
1511 class BadStatusLine(HTTPException):
[all …]
/aosp_15_r20/external/python/cpython2/Doc/library/
Dhttplib.rst126 .. exception:: HTTPException
136 A subclass of :exc:`HTTPException`.
143 A subclass of :exc:`HTTPException`, raised if a port is given and is either
151 A subclass of :exc:`HTTPException`.
158 A subclass of :exc:`HTTPException`.
165 A subclass of :exc:`HTTPException`.
172 A subclass of :exc:`HTTPException`.
179 A subclass of :exc:`HTTPException`.
207 A subclass of :exc:`HTTPException`. Raised if a server responds with a HTTP
/aosp_15_r20/external/python/cpython3/Doc/library/
Dhttp.client.rst153 .. exception:: HTTPException
161 A subclass of :exc:`HTTPException`.
166 A subclass of :exc:`HTTPException`, raised if a port is given and is either
172 A subclass of :exc:`HTTPException`.
177 A subclass of :exc:`HTTPException`.
182 A subclass of :exc:`HTTPException`.
187 A subclass of :exc:`HTTPException`.
192 A subclass of :exc:`HTTPException`.
212 A subclass of :exc:`HTTPException`. Raised if a server responds with a HTTP
218 A subclass of :exc:`HTTPException`. Raised if an excessively long line
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_normalization.py4 from httplib import HTTPException
45 except (IOError, HTTPException):
Dmultibytecodec_support.py10 from httplib import HTTPException
269 except (IOError, HTTPException):
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_ucn.py15 from http.client import HTTPException
184 except (OSError, HTTPException):
Dmultibytecodec_support.py11 from http.client import HTTPException
295 except (OSError, HTTPException):
Dtest_unicodedata.py10 from http.client import HTTPException
349 except (OSError, HTTPException) as exc:
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/
Dresponse.py16 from .connection import BaseSSLError, HTTPException
290 except (HTTPError, SocketError, BaseSSLError, HTTPException):
453 except (HTTPException, SocketError) as e:
Dconnectionpool.py17 HTTPException,
742 HTTPException,
784 elif isinstance(e, (SocketError, HTTPException)):
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/
Dresponse.py16 from .connection import BaseSSLError, HTTPException
290 except (HTTPError, SocketError, BaseSSLError, HTTPException):
453 except (HTTPException, SocketError) as e:
Dconnectionpool.py17 HTTPException,
742 HTTPException,
784 elif isinstance(e, (SocketError, HTTPException)):
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/
Dresponse.py16 from .connection import BaseSSLError, HTTPException
290 except (HTTPError, SocketError, BaseSSLError, HTTPException):
453 except (HTTPException, SocketError) as e:
Dconnectionpool.py17 HTTPException,
742 HTTPException,
784 elif isinstance(e, (SocketError, HTTPException)):
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/
Dresponse.py16 from .connection import BaseSSLError, HTTPException
290 except (HTTPError, SocketError, BaseSSLError, HTTPException):
453 except (HTTPException, SocketError) as e:
Dconnectionpool.py17 HTTPException,
742 HTTPException,
784 elif isinstance(e, (SocketError, HTTPException)):
/aosp_15_r20/external/python/google-auth-library-python/google/auth/transport/
D_http_client.py110 except (http_client.HTTPException, socket.error) as caught_exc:
/aosp_15_r20/external/chromium-trace/catapult/devil/devil/android/
H A Dports.py177 except (httplib.HTTPException, socket.error) as e:
/aosp_15_r20/external/angle/build/android/
H A Dlighttpd_server.py141 except (http.client.HTTPException, socket.error) as client_error:

123