Home
last modified time | relevance | path

Searched refs:parse_header (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_cgi.py395 cgi.parse_header("text/plain"),
398 cgi.parse_header("text/vnd.just.made.this.up ; "),
401 cgi.parse_header("text/plain;charset=us-ascii"),
404 cgi.parse_header('text/plain ; charset="us-ascii"'),
407 cgi.parse_header('text/plain ; charset="us-ascii"; another=opt'),
410 cgi.parse_header('attachment; filename="silly.txt"'),
413 cgi.parse_header('attachment; filename="strange;name"'),
416 cgi.parse_header('attachment; filename="strange;name";size=123;'),
419 cgi.parse_header('form-data; name="files"; filename="fo\\"o;bar"'),
/external/python/cpython3/Lib/test/
Dtest_cgi.py522 cgi.parse_header("text/plain"),
525 cgi.parse_header("text/vnd.just.made.this.up ; "),
528 cgi.parse_header("text/plain;charset=us-ascii"),
531 cgi.parse_header('text/plain ; charset="us-ascii"'),
534 cgi.parse_header('text/plain ; charset="us-ascii"; another=opt'),
537 cgi.parse_header('attachment; filename="silly.txt"'),
540 cgi.parse_header('attachment; filename="strange;name"'),
543 cgi.parse_header('attachment; filename="strange;name";size=123;'),
546 cgi.parse_header('form-data; name="files"; filename="fo\\"o;bar"'),
/external/iptables/extensions/
Dlibip6t_ipv6header.c145 parse_header(const char *flags) { in parse_header() function
166 if (!(info->matchflags = parse_header(cb->arg))) in ipv6header_parse()
/external/python/cpython2/Lib/
Dcgi.py149 ctype, pdict = parse_header(environ['CONTENT_TYPE'])
276 key, params = parse_header(line)
303 def parse_header(line): function
459 cdisp, pdict = parse_header(self.headers['content-disposition'])
482 ctype, pdict = parse_header(self.headers['content-type'])
/external/u-boot/lib/lzo/
Dlzo1x_decompress.c45 static inline const unsigned char *parse_header(const unsigned char *src) in parse_header() function
87 src = parse_header(src); in lzop_decompress()
/external/python/cpython3/Lib/
Dcgi.py157 ctype, pdict = parse_header(environ['CONTENT_TYPE'])
237 def parse_header(line): function
435 cdisp, pdict = parse_header(self.headers['content-disposition'])
459 ctype, pdict = parse_header(self.headers['content-type'])
/external/python/cpython3/Lib/distutils/
Dconfig.py116 encoding = cgi.parse_header(content_type)[1].get('charset', 'ascii')
/external/python/apitools/apitools/base/protorpclite/
Dtest_util.py85 value1, params1 = cgi.parse_header(header1)
86 value2, params2 = cgi.parse_header(header2)
/external/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/
Dlibspirv.h673 const size_t num_words, spv_parsed_header_fn_t parse_header,
/external/deqp-deps/SPIRV-Tools/include/spirv-tools/
Dlibspirv.h673 const size_t num_words, spv_parsed_header_fn_t parse_header,
/external/virglrenderer/src/gallium/auxiliary/tgsi/
Dtgsi_text.c361 static boolean parse_header( struct translate_ctx *ctx ) in parse_header() function
1829 if (!parse_header( ctx )) in translate()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_text.c374 static boolean parse_header( struct translate_ctx *ctx ) in parse_header() function
1843 if (!parse_header( ctx )) in translate()
/external/python/cpython2/Tools/webchecker/
Dwebchecker.py554 ctype = cgi.parse_header(info['content-type'])[0].lower()
/external/python/cpython3/Doc/library/
Dcgi.rst319 .. function:: parse_header(string)
/external/python/cpython2/Doc/library/
Dcgi.rst320 .. function:: parse_header(string)
/external/python/cpython2/Misc/NEWS.d/
D2.7.3rc1.rst798 fix cgi.parse_header issue on strings with double-quotes and semicolons
D2.7a1.rst4547 cgi.parse_header(): Fixed parsing of header parameters to support unusual
/external/python/cpython3/Misc/
DHISTORY9118 - Issue #12529: fix cgi.parse_header issue on strings with double-quotes and
15838 - Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to
15866 - Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to