/aosp_15_r20/external/curl/docs/ |
H A D | FEATURES.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 7 # Features -- what curl can do 11 - config file support 12 - multiple URLs in a single command line 13 - range "globbing" support: [0-13], {one,two,three} 14 - multiple file upload on a single command line 15 - redirect stderr 16 - parallel transfers [all …]
|
H A D | curl.1 | 8 .\" * Copyright (C) 1998 \- 2021, Daniel Stenberg, <[email protected]>, et al. 27 curl \- transfer a URL 37 curl offers a busload of useful tricks like proxy support, user 42 curl is powered by libcurl for all transfer-related features. See 45 The URL syntax is protocol-dependent. You find a detailed description in 55 "ftp://ftp.example.com/file[1-100].txt" 57 "ftp://ftp.example.com/file[001-100].txt" (with leading zeros) 59 "ftp://ftp.example.com/file[a-z].txt" 64 "http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html" 73 "http://example.com/file[1-100:10].txt" [all …]
|
/aosp_15_r20/external/python/httplib2/python3/httplib2/ |
D | __init__.py | 1 # -*- coding: utf-8 -*- 47 import socks 50 # idea is to have soft-dependency on any compatible module called socks 51 from . import socks 75 # The httplib debug level, set to a non-zero value to get debug output 133 # ----------- 138 # flat files by default. We need a plug-in architecture 142 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 143 # Does not handle Cache-Control: max-stale 152 # Which headers are hop-by-hop headers by default [all …]
|
/aosp_15_r20/external/autotest/utils/frozen_chromite/third_party/python3/httplib2/ |
H A D | __init__.py | 1 # -*- coding: utf-8 -*- 47 import socks 50 # idea is to have soft-dependency on any compatible module called socks 51 from . import socks 75 # The httplib debug level, set to a non-zero value to get debug output 133 # ----------- 138 # flat files by default. We need a plug-in architecture 142 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 143 # Does not handle Cache-Control: max-stale 152 # Which headers are hop-by-hop headers by default [all …]
|
/aosp_15_r20/external/autotest/utils/frozen_chromite/third_party/python2/httplib2/ |
H A D | __init__.py | 58 from httplib2 import socks 61 import socks 63 socks = None variable 152 # The httplib debug level, set to a non-zero value to get debug output 252 # ----------- 253 # Proxy support 258 # flat files by default. We need a plug-in architecture 262 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 263 # Does not handle Cache-Control: max-stale 275 # Which headers are hop-by-hop headers by default [all …]
|
/aosp_15_r20/external/python/httplib2/python2/httplib2/ |
D | __init__.py | 58 from httplib2 import socks 61 import socks 63 socks = None variable 159 # The httplib debug level, set to a non-zero value to get debug output 259 # ----------- 260 # Proxy support 265 # flat files by default. We need a plug-in architecture 269 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 270 # Does not handle Cache-Control: max-stale 282 # Which headers are hop-by-hop headers by default [all …]
|
/aosp_15_r20/external/curl/tests/data/ |
H A D | test2055 | 7 HTTP proxy 15 # Server-side 25 Content-Length: 3 26 Content-Type: text/plain 36 Content-Length: 3 37 Content-Type: text/plain 44 # Client-side 48 http-proxy 52 Connect to specific host via SOCKS proxy and HTTP proxy (switch to tunnel mode automatically) 55 proxy [all …]
|
H A D | test720 | 12 # Server-side 17 Server: test-server/fake 18 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 19 ETag: "21025-dc7-39462498" 20 Accept-Ranges: bytes 21 Content-Length: 6 23 Content-Type: text/html 24 Funny-head: yesyes 26 -foo- 31 # Client-side [all …]
|
H A D | test721 | 12 # Server-side 17 Server: test-server/fake 18 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 19 ETag: "21025-dc7-39462498" 20 Accept-Ranges: bytes 21 Content-Length: 6 23 Content-Type: text/html 24 Funny-head: yesyes 26 -foo- 31 # Client-side [all …]
|
H A D | test1470 | 14 # Server-side 19 Server: test-server/fake 20 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 21 ETag: "21025-dc7-39462498" 22 Accept-Ranges: bytes 23 Content-Length: 6 25 Content-Type: text/html 26 Funny-head: yesyes 28 -foo- 33 # Client-side [all …]
|
H A D | test719 | 12 # Server-side 17 Server: test-server/fake 18 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 19 ETag: "21025-dc7-39462498" 20 Accept-Ranges: bytes 21 Content-Length: 6 23 Content-Type: text/html 24 Funny-head: yesyes 26 -foo- 31 # Client-side [all …]
|
H A D | test1468 | 13 # Server-side 18 Server: test-server/fake 19 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 20 ETag: "21025-dc7-39462498" 21 Accept-Ranges: bytes 22 Content-Length: 6 24 Content-Type: text/html 25 Funny-head: yesyes 27 -foo- 32 # Client-side [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/urllib/ |
D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/urllib/ |
D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/urllib/ |
D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/urllib/ |
D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/urllib/ |
H A D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/urllib/ |
D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/prebuilts/vndk/v30/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ip2addr Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo ... |
/aosp_15_r20/prebuilts/vndk/v30/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ip2addr Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo ... |
/aosp_15_r20/prebuilts/vndk/v34/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_alpnid2str Curl_altsvc_init Curl_llist_init Curl_ccalloc Curl_altsvc_load fopen Curl_get_line sscanf Curl_getdate_capped curl_strequal Curl_llist_insert_next fclose __stack_chk_fail Curl_cfree __stack_chk_guard Curl_cstrdup Curl_cmalloc Curl_altsvc_ctrl ... |
/aosp_15_r20/prebuilts/vndk/v34/arm64/arch-arm-armv8-a/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_alpnid2str Curl_altsvc_init Curl_llist_init Curl_ccalloc Curl_altsvc_load fopen Curl_get_line sscanf Curl_getdate_capped curl_strequal Curl_llist_insert_next fclose __stack_chk_fail Curl_cfree __stack_chk_guard Curl_cstrdup Curl_cmalloc Curl_altsvc_ctrl ... |
/aosp_15_r20/external/okhttp/ |
H A D | CHANGELOG.md | 6 _2016-02-25_ 15 _2016-02-07_ 25 _2016-02-06_ 32 _2016-01-07_ 40 _2016-01-01_ 42 * Fix: Don't do a health check on newly-created connections. This is 49 _2015-12-12_ 59 * Fix: Don't resolve DNS addresses when connecting through a SOCKS proxy. 60 * Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header. 67 _2015-11-22_ [all …]
|
/aosp_15_r20/prebuilts/vndk/v31/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo Curl_resolver_getsock ... |
/aosp_15_r20/prebuilts/vndk/v32/arm/arch-arm-armv7-a-neon/shared/vndk-core/ |
D | libcurl.so | __cxa_finalize Curl_addrinfo_callback Curl_ccalloc Curl_cfree Curl_cmalloc Curl_conncontrol Curl_cstrdup Curl_expire Curl_failf Curl_freeaddrinfo Curl_getaddrinfo_ex Curl_ipv6works Curl_multi_closed Curl_now Curl_resolver_cancel Curl_resolver_cleanup Curl_resolver_duphandle Curl_resolver_getaddrinfo Curl_resolver_getsock ... |