Home
last modified time | relevance | path

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

12345

/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/python/cpython2/
D.hgeol39 # Windows batch files work best with CRLF, there can be subtle problems with LF
40 **.bat = CRLF
43 PCbuild/readme.txt = CRLF
44 PC/VS9.0/readme.txt = CRLF
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DHTTP.java37 public static final String CRLF = "\r\n"; field in HTTP
148 sb.append(CRLF); in toString()
157 sb.append(CRLF); in toString()
160 sb.append(CRLF); in toString()
/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/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/python/cpython2/Lib/
Dftplib.py76 CRLF = '\r\n' variable
174 line = line + CRLF
192 if line[-2:] == CRLF: line = line[:-2]
193 elif line[-1:] in CRLF: line = line[:-1]
239 line = 'ABOR' + CRLF
446 if line[-2:] == CRLF:
499 if buf[-2:] != CRLF:
500 if buf[-1] in CRLF: buf = buf[:-1]
501 buf = buf + CRLF
745 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))
338 str = '%s%s' % (cmd, CRLF)
340 str = '%s %s%s' % (cmd, args, CRLF)
507 if q[-2:] != CRLF:
508 q = q + CRLF
509 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/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
Dtest8755 CRLF-in-URL
Dtest9315 CRLF-in-URL
Dtest8295 CRLF-in-URL
Dtest91020 SMTP without terminating CRLF
/external/owasp/sanitizer/tools/
Dgooglecode_upload.py120 CRLF = '\r\n'
152 return 'multipart/form-data; boundary=%s' % BOUNDARY, CRLF.join(body)
/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);
/external/libpng/
DANNOUNCE13 Source files with CRLF line endings (for Windows), without the
/external/python/cpython2/PC/VS7.1/
Dpython20.wse386 Value=Install directory: %MAINDIR%%CRLF%
396 Value=%CRLF%Doing admin install.%CRLF%
403 Value=%CRLF%Doing non-admin install.%CRLF%
416 Value=%CRLF%Make backups, into %BACKUP%%CRLF%
423 Value=%CRLF%Don't make backups.%CRLF%
432 Value=%CRLF%Components:%CRLF%
442 Value= Python interpreter and libraries%CRLF%
454 Value= Tcl/Tk (Tkinter, IDLE, pydoc)%CRLF%
466 Value= Python documentation%CRLF%
478 Value= Tool and utility scripts%CRLF%
[all …]
/external/python/cpython2/Tools/scripts/
DREADME16 crlf.py Change CRLF line endings to LF (Windows to Unix)
38 lfcr.py Change LF line endings to CRLF (Unix to Windows)
/external/syslinux/com32/lib/libpng/
DANNOUNCE22 Source files with CRLF line endings (for Windows), without the

12345