Home
last modified time | relevance | path

Searched refs:eol (Results 1 – 10 of 10) sorted by relevance

/PHP-5.5/ext/standard/tests/file/
H A Dbug44607.phpt5 $eol = '<EOL>';
8 $data .= $eol;
12 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
13 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
15 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
16 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_get_line_nb.phpt23 $eol = b'<EOL>';
26 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Does not returns incomplete line (EOL not fo…
27 var_dump(stream_get_line($sockets[1], 8192, $eol));
29 fwrite($sockets[0], b", $eol");
30 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Returns full line (EOL found)
31 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Nothing to read
32 var_dump(stream_get_line($sockets[1], 8192, $eol));
35 var_dump(stream_get_line($sockets[1], strlen(b"incomplete line"), $eol)); // EOL not found but $len…
38 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Does not returns incomplete line (EOL not fo…
42 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Does not returns incomplete line (EOL not fo…
[all …]
H A Dbug60455_02.phpt2 Bug #60455: stream_get_line and 1-line followed by eol input
/PHP-5.5/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dgen_exp.c415 int eol = 0; in main() local
425 eol = 1; in main()
433 if (eol) in main()
440 eol = 1; in main()
451 if (eol) in main()
/PHP-5.5/ext/ftp/
H A Dftp.c1141 char *data, *eol; in ftp_readline() local
1155 for (eol = data; rcvd; rcvd--, eol++) { in ftp_readline()
1156 if (*eol == '\r') { in ftp_readline()
1157 *eol = 0; in ftp_readline()
1158 ftp->extra = eol + 1; in ftp_readline()
1159 if (rcvd > 1 && *(eol + 1) == '\n') { in ftp_readline()
1167 } else if (*eol == '\n') { in ftp_readline()
1168 *eol = 0; in ftp_readline()
1169 ftp->extra = eol + 1; in ftp_readline()
1177 data = eol; in ftp_readline()
/PHP-5.5/ext/com_dotnet/tests/
H A Dbug66431_1.phpt37 /* trim the returned text as we'll get windows eol from a word doc. */
/PHP-5.5/ext/soap/
H A Dphp_http.c1347 char *eol; in get_http_header_value() local
1351 eol = strchr(tmp, '\n'); in get_http_header_value()
1352 if (eol == NULL) { in get_http_header_value()
1353 eol = headers + headerslen; in get_http_header_value()
1354 } else if (eol > tmp && *(eol-1) == '\r') { in get_http_header_value()
1355 eol--; in get_http_header_value()
1357 return estrndup(tmp, eol - tmp); in get_http_header_value()
/PHP-5.5/main/streams/
H A Dstreams.c845 char *cr, *lf, *eol = NULL; in php_stream_locate_eol() local
865 eol = cr; in php_stream_locate_eol()
869 eol = lf; in php_stream_locate_eol()
872 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
875 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
878 return eol; in php_stream_locate_eol()
918 char *eol; in _php_stream_get_line() local
922 eol = php_stream_locate_eol(stream, NULL, 0 TSRMLS_CC); in _php_stream_get_line()
924 if (eol) { in _php_stream_get_line()
925 cpysz = eol - readptr + 1; in _php_stream_get_line()
/PHP-5.5/ext/standard/
H A Dhttp_fopen_wrapper.c97 char *eol = header_start + (lc_eol - lc_header_start); in strip_header() local
103 memmove(header_start, eol+1, eollen); in strip_header()
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch594 eol = strpbrk( protocol, " \t\n\r" );
595 if ( eol != (char*) 0 )
596 *eol = '\0';

Completed in 63 milliseconds