Home
last modified time | relevance | path

Searched refs:CRLF (Results 1 – 25 of 121) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DtaggedTemplateStringsHexadecimalEscapesES6.types7 f `\x0D${ "Interrupted CRLF" }\x0A`;
8 >f `\x0D${ "Interrupted CRLF" }\x0A` : void
10 >`\x0D${ "Interrupted CRLF" }\x0A` : string
11 >"Interrupted CRLF" : "Interrupted CRLF"
DtaggedTemplateStringsHexadecimalEscapes.types7 f `\x0D${ "Interrupted CRLF" }\x0A`;
8 >f `\x0D${ "Interrupted CRLF" }\x0A` : void
10 >`\x0D${ "Interrupted CRLF" }\x0A` : string
11 >"Interrupted CRLF" : "Interrupted CRLF"
DtaggedTemplateStringsHexadecimalEscapesES6.symbols7 f `\x0D${ "Interrupted CRLF" }\x0A`;
DtaggedTemplateStringsHexadecimalEscapes.symbols7 f `\x0D${ "Interrupted CRLF" }\x0A`;
/third_party/node/test/parallel/
Dtest-http-upgrade-client2.js26 const CRLF = '\r\n'; constant
30 socket.write(`HTTP/1.1 101 Ok${CRLF}` +
31 `Connection: Upgrade${CRLF}` +
32 `Upgrade: Test${CRLF}${CRLF}` +
Dtest-http-header-overflow.js9 const CRLF = '\r\n'; constant
16 const PAYLOAD = PAYLOAD_GET + CRLF +
17 DUMMY_HEADER_NAME + DUMMY_HEADER_VALUE + CRLF.repeat(2);
26 bytesParsed: maxHeaderSize + PAYLOAD_GET.length + (CRLF.length * 2) + 1,
Dtest-https-foafssl.js46 const CRLF = '\r\n'; constant
75 const contents = message.split(CRLF + CRLF).pop();
/third_party/node/benchmark/http/
Dbench-parser.js19 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/deps/npm/node_modules/stringify-package/
Dindex.js6 const CRLF = '\r\n' constant
13 if (newline === CRLF) {
14 return json.replace(/\n/g, CRLF) + CRLF
/third_party/node/lib/
D_http_server.js40 CRLF,
241 this._writeRaw(`HTTP/1.1 100 Continue${CRLF}${CRLF}`, 'ascii', cb);
246 this._writeRaw(`HTTP/1.1 102 Processing${CRLF}${CRLF}`, 'ascii', cb);
309 const statusLine = `HTTP/1.1 ${statusCode} ${this.statusMessage}${CRLF}`;
628 `HTTP/1.1 400 ${STATUS_CODES[400]}${CRLF}` +
629 `Connection: close${CRLF}${CRLF}`, 'ascii'
632 `HTTP/1.1 408 ${STATUS_CODES[408]}${CRLF}` +
633 `Connection: close${CRLF}${CRLF}`, 'ascii'
636 `HTTP/1.1 431 ${STATUS_CODES[431]}${CRLF}` +
637 `Connection: close${CRLF}${CRLF}`, 'ascii'
D_http_outgoing.js71 const { CRLF, debug } = common;
409 header += 'Date: ' + utcDate() + CRLF;
459 header += 'Content-Length: ' + this._contentLength + CRLF;
479 this._header = header + CRLF;
506 state.header += key + ': ' + value + CRLF;
786 this._trailer += field + ': ' + value + CRLF;
/third_party/cef/tools/yapf/yapf/yapflib/
Dfile_resources.py32 CRLF = '\r\n' variable
104 endings = {CRLF: 0, CR: 0, LF: 0}
106 if line.endswith(CRLF):
107 endings[CRLF] += 1
/third_party/mbedtls/tests/suites/
Dtest_suite_base64.data109 Base64 decode "Zm9vYmFy\r\n" (CRLF at end)
121 Base64 decode "Zm9vYmFy \r\n" (SP+CRLF at end)
133 Base64 decode "Zm9vYmFy \r\n" (2SP+CRLF at end)
142 Base64 decode "Zm9vYmF\ry" (CRLF inside)
154 Base64 decode "Zm9vYmF \ry" (SP+CRLF inside)
166 Base64 decode "Zm9vYmF \ry" (2SP+CRLF inside)
/third_party/curl/
Dbackport-0001-CVE-2023-23916.patch4 Subject: [PATCH] runtests: do CRLF replacements per section only
46 +`crlf=yes` forces *header* newlines to become CRLF even if not written so in
48 +header and what is not in order to apply the CRLF line endings appropriately.
82 +`crlf=yes` forces the newlines to become CRLF even if not written so in the
101 +`crlf=yes` forces the newlines to become CRLF even if not written so in the
151 + # enforce CRLF newline
161 # enforce CRLF newline
179 + # The processor does CRLF replacements in the <data*> sections if
D.gitattributes10 # Batch files (bat,btm,cmd) must be run with CRLF line endings.
/third_party/node/deps/npm/node_modules/form-data/
DREADME.md124 var CRLF = '\r\n';
128 header: CRLF + '--' + form.getBoundary() + CRLF + 'X-Custom-Header: 123' + CRLF + CRLF,
DREADME.md.bak124 var CRLF = '\r\n';
128 header: CRLF + '--' + form.getBoundary() + CRLF + 'X-Custom-Header: 123' + CRLF + CRLF,
/third_party/python/Lib/
Dftplib.py70 CRLF = '\r\n' variable
199 line = line + CRLF
219 if line[-2:] == CRLF:
221 elif line[-1:] in CRLF:
472 if line[-2:] == CRLF:
592 facts_found, _, name = line.rstrip(CRLF).partition(' ')
Dpoplib.py42 CRLF = CR+LF variable
117 self.sock.sendall(line + CRLF)
143 if line[-2:] == CRLF:
/third_party/python/Lib/email/
Dquoprimime.py46 CRLF = '\r\n' variable
222 if body[-1] in CRLF:
/third_party/lwip/src/apps/http/
Dhttpd.c120 #define CRLF "\r\n" macro
969 SMEMCPY(&hs->hdr_content_len[len], CRLF, 3);
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_CONT…
2027 crlf = lwip_strnstr(data, CRLF, data_len);
2063 sp2 = lwip_strnstr(sp1 + 1, CRLF, left_len);
2076 if (lwip_strnstr(data, CRLF CRLF, data_len) != NULL) {
2394 char *file_start = lwip_strnstr(hs->file, CRLF CRLF, hs->left);
/third_party/cups-filters/filter/
Dtexttotext.c48 CRLF = 2 enumerator
112 newline_char_t newline_char = CRLF; /* Character to send at end of line */ in main()
482 newline_char = CRLF; in main()
549 else if (newline_char == CRLF) in main()
/third_party/openh264/
DCODING_STYLE5 Please do not add tabs, trailing whitespace, or Windows-style line endings (CRLF).
/third_party/vulkan-headers/
D.gitattributes11 # Text files to always have CRLF (dos) line endings on checkout.
/third_party/flutter/flutter/
D.gitattributes17 # Make sure that these Windows files always have CRLF line endings in checkout

12345