/third_party/node/benchmark/http/ |
H A D | bench-parser.js | 19 const CRLF = '\r\n'; 46 let header = `GET /hello HTTP/1.1${CRLF}Content-Type: text/plain${CRLF}`; 49 header += `X-Filler${i}: ${Math.random().toString(36).substr(2)}${CRLF}`; 51 header += CRLF;
|
/third_party/node/test/parallel/ |
H A D | test-https-foafssl.js | 46 const CRLF = '\r\n'; 75 const contents = message.split(CRLF + CRLF).pop();
|
/third_party/nghttp2/third-party/llhttp/src/ |
H A D | llhttp.c | 8161 state->reason = "Expected CRLF"; in llhttp__internal__run() 8205 state->reason = "Expected CRLF after version"; in llhttp__internal__run() 8224 state->reason = "Expected CRLF after version"; in llhttp__internal__run()
|
/third_party/python/Lib/ |
H A D | poplib.py | 39 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF) 42 CRLF = CR+LF variable 46 # 512 characters, including CRLF. We have selected 2048 just to be on 117 self.sock.sendall(line + CRLF) 128 # Internal: return one line from the server, stripping CRLF. 142 # so only possibilities are ...LF, ...CRLF, CR...LF 143 if line[-2:] == CRLF:
|
H A D | ftplib.py | 69 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF) 70 CRLF = '\r\n' variable 194 # Internal: send one line to the server, appending CRLF 199 line = line + CRLF 209 # Internal: return one line from the server, stripping CRLF. 219 if line[-2:] == CRLF: 221 elif line[-1:] in CRLF: 227 # trailing CRLF. If the response consists of multiple lines, 453 for each line with the trailing CRLF strippe [all...] |
H A D | smtplib.py | 38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) 64 CRLF = "\r\n" variable 171 internet CRLF end-of-line. 174 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data)) 180 return re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data) 378 self.send(f'{s}{CRLF}')
|
H A D | imaplib.py | 40 CRLF = b'\r\n' variable 413 literal = MapCRLF.sub(CRLF, message) 1006 self.send(data + CRLF) 1031 self.send(CRLF) 1187 # Protocol mandates all lines terminated by CRLF
|
/third_party/python/Lib/email/ |
H A D | quoprimime.py | 46 CRLF = '\r\n' variable 223 if body[-1] in CRLF:
|
H A D | base64mime.py | 40 CRLF = '\r\n' variable
|
H A D | utils.py | 45 CRLF = '\r\n' variable
|
/third_party/lwip/src/apps/http/ |
H A D | httpd.c | 120 #define CRLF "\r\n" macro 194 /* The dynamically generated Content-Length buffer needs space for CRLF + NULL */ 969 SMEMCPY(&hs->hdr_content_len[len], CRLF, 3); 1805 /* search for end-of-header (first double-CRLF) */ 1806 char *crlfcrlf = lwip_strnstr(uri_end + 1, CRLF CRLF, data_len - (uri_end + 1 - data)); 1815 char *scontent_len_end = lwip_strnstr(scontent_len + HTTP_HDR_CONTENT_LEN_LEN, CRLF, HTTP_HDR_CONTENT_LEN_DIGIT_MAX_LEN); 2026 /* wait for CRLF before parsing anything */ 2027 crlf = lwip_strnstr(data, CRLF, data_len); 2035 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("CRLF receive [all...] |
/third_party/cups-filters/filter/ |
H A D | texttotext.c | 48 CRLF = 2 enumerator 112 newline_char_t newline_char = CRLF; /* Character to send at end of line */ in main() 481 else if (!strcasecmp(val, "CRLF")) in main() 482 newline_char = CRLF; in main() 549 else if (newline_char == CRLF) in main()
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | text_to_binary_test.cpp | 180 TEST_F(TextToBinaryTest, CRLF) { in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | text_to_binary_test.cpp | 180 TEST_F(TextToBinaryTest, CRLF) { in TEST_F()
|
/third_party/spirv-tools/test/ |
H A D | text_to_binary_test.cpp | 180 TEST_F(TextToBinaryTest, CRLF) { in TEST_F()
|
/third_party/python/Tools/scripts/ |
H A D | reindent.py | 11 (--newline) Newline. Specify the newline character to use (CRLF, LF). 88 if not a.upper() in ('CRLF', 'LF'): 91 spec_newline = dict(CRLF='\r\n', LF='\n')[a.upper()]
|
/third_party/curl/docs/cmdline-opts/ |
H A D | gen.pl | 35 case we have CRLF line endings in Windows but a perl that defaults to LF.
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_internal.h | 466 /* PCRE2 is able to support several different kinds of newline (CR, LF, CRLF, 474 #define NLTYPE_ANYCRLF 2 /* Newline is CR, LF, or CRLF */ 933 #define STRING_CRLF_RIGHTPAR "CRLF)"
|
/third_party/googletest/googletest/scripts/ |
H A D | upload.py | 527 CRLF = '\r\n' 543 body = CRLF.join(lines)
|
/third_party/ninja/src/ |
H A D | manifest_parser_test.cc | 1083 TEST_F(ParserTest, CRLF) { in TEST_F()
|
/third_party/pcre2/pcre2/ |
H A D | RunTest.bat | 4 @rem options. This file must use CRLF linebreaks to function properly,
|
H A D | RunGrepTest | 920 $valgrind $vjs $pcre2grep -B1 -n -N CRLF "^ghi" testNinputgrep >>testtrygrep
|
H A D | RunGrepTest.bat | 84 :: LF to CRLF, which this one does not).
|
/third_party/node/deps/llhttp/src/ |
H A D | llhttp.c | 6035 state->reason = "Expected CRLF after chunk"; in llhttp__internal__run() 7110 state->reason = "Expected CRLF"; in llhttp__internal__run() 7154 state->reason = "Expected CRLF after version"; in llhttp__internal__run() 15044 state->reason = "Expected CRLF"; in llhttp__internal__run() 15088 state->reason = "Expected CRLF after version"; in llhttp__internal__run()
|