Home
last modified time | relevance | path

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

1234567

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DMultipartBuilder.java71 private static final byte[] CRLF = { '\r', '\n' }; field in MultipartBuilder
243 sink.write(CRLF); in writeOrCountBytes()
250 .write(CRLF); in writeOrCountBytes()
258 .write(CRLF); in writeOrCountBytes()
265 .write(CRLF); in writeOrCountBytes()
272 sink.write(CRLF); in writeOrCountBytes()
280 sink.write(CRLF); in writeOrCountBytes()
286 sink.write(CRLF); in writeOrCountBytes()
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
DMultipartBuilder.java73 private static final byte[] CRLF = { '\r', '\n' }; field in MultipartBuilder
245 sink.write(CRLF); in writeOrCountBytes()
252 .write(CRLF); in writeOrCountBytes()
260 .write(CRLF); in writeOrCountBytes()
267 .write(CRLF); in writeOrCountBytes()
274 sink.write(CRLF); in writeOrCountBytes()
282 sink.write(CRLF); in writeOrCountBytes()
288 sink.write(CRLF); in writeOrCountBytes()
/external/flatbuffers/.travis/
Dcheck-sources.sh.py23 CRLF = btext.count(b'\r\n')
24 assert LF >= CRLF, "CRLF logic error"
25 if CRLF != LF:
26 raise ValueError("CRLF violation: found {} LF characters".format(LF - CRLF))
/external/python/cpython2/Lib/email/
Dquoprimime.py51 CRLF = '\r\n' variable
210 if line.endswith(CRLF):
212 elif line[-1] in CRLF:
252 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
Dbase64mime.py42 CRLF = '\r\n' variable
177 return dec.replace(CRLF, convert_eols)
Dutils.py48 CRLF = '\r\n' variable
78 s = re.sub(r'(?<!\r)\n', CRLF, s)
80 s = re.sub(r'\r(?!\n)', CRLF, s)
/external/python/cpython2/Demo/sockets/
Dgopher.py37 CRLF = '\r\n' variable
53 s.send(selector + CRLF)
66 if line[-2:] == CRLF:
68 elif line[-1:] in CRLF:
101 if line[-2:] == CRLF:
103 elif line[-1:] in CRLF:
/external/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
/external/python/cpython2/Lib/
Dftplib.py76 CRLF = '\r\n' variable
176 line = line + CRLF
194 if line[-2:] == CRLF: line = line[:-2]
195 elif line[-1:] in CRLF: line = line[:-1]
241 line = 'ABOR' + CRLF
452 if line[-2:] == CRLF:
510 if buf[-2:] != CRLF:
511 if buf[-1] in CRLF: buf = buf[:-1]
512 buf = buf + CRLF
757 if line[-2:] == CRLF:
[all …]
Dpoplib.py33 CRLF = CR+LF variable
97 self.sock.sendall('%s%s' % (line, CRLF))
121 if line[-2:] == CRLF:
384 if line[-2:] == CRLF:
392 line += CRLF
Dsmtplib.py59 CRLF = "\r\n" variable
167 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
339 str = '%s%s' % (cmd, CRLF)
341 str = '%s %s%s' % (cmd, args, CRLF)
508 if q[-2:] != CRLF:
509 q = q + CRLF
510 q = q + "." + CRLF
Dnntplib.py95 CRLF = '\r\n' variable
198 line = line + CRLF
216 if line[-2:] == CRLF: line = line[:-2]
217 elif line[-1:] in CRLF: line = line[:-1]
/external/curl/docs/cmdline-opts/
Dcrlf.d2 Help: Convert LF to CRLF in upload
5 Convert LF to CRLF in upload. Useful for MVS (OS/390).
/external/apache-http/src/org/apache/http/impl/io/
DAbstractSessionOutputBuffer.java59 private static final byte[] CRLF = new byte[] {HTTP.CR, HTTP.LF}; field in AbstractSessionOutputBuffer
149 write(CRLF); in writeLine()
177 write(CRLF); in writeLine()
/external/curl/tests/data/
Dtest152020 SMTP with CRLF-dot-CRLF in data
Dtest90120 SMTP with CRLF-dot-CRLF in data
Dtest8295 CRLF-in-URL
Dtest9315 CRLF-in-URL
Dtest8755 CRLF-in-URL
/external/owasp/sanitizer/tools/
Dgooglecode_upload.py120 CRLF = '\r\n'
152 return 'multipart/form-data; boundary=%s' % BOUNDARY, CRLF.join(body)
/external/python/cpython3/Lib/
Dftplib.py70 CRLF = '\r\n' variable
191 line = line + CRLF
211 if line[-2:] == CRLF:
213 elif line[-1:] in CRLF:
478 if line[-2:] == CRLF:
598 facts_found, _, name = line.rstrip(CRLF).partition(' ')
Dpoplib.py41 CRLF = CR+LF variable
112 self.sock.sendall(line + CRLF)
138 if line[-2:] == CRLF:
Dsmtplib.py64 CRLF = "\r\n" variable
173 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
179 return re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data)
364 str = '%s%s' % (cmd, CRLF)
366 str = '%s %s%s' % (cmd, args, CRLF)
/external/python/cpython3/Lib/email/
Dquoprimime.py46 CRLF = '\r\n' variable
222 if body[-1] in CRLF:
/external/apache-http/android/src/com/android/internal/http/multipart/
DPart.java76 protected static final String CRLF = "\r\n"; field in Part
79 protected static final byte[] CRLF_BYTES = EncodingUtils.getAsciiBytes(CRLF);

1234567