Home
last modified time | relevance | path

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

/PHP-5.4/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.4/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.4/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.4/ext/ftp/
H A Dftp.c1143 char *data, *eol; in ftp_readline() local
1157 for (eol = data; rcvd; rcvd--, eol++) { in ftp_readline()
1158 if (*eol == '\r') { in ftp_readline()
1159 *eol = 0; in ftp_readline()
1160 ftp->extra = eol + 1; in ftp_readline()
1161 if (rcvd > 1 && *(eol + 1) == '\n') { in ftp_readline()
1169 } else if (*eol == '\n') { in ftp_readline()
1170 *eol = 0; in ftp_readline()
1171 ftp->extra = eol + 1; in ftp_readline()
1179 data = eol; in ftp_readline()
/PHP-5.4/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.4/ext/soap/
H A Dphp_http.c1285 char *eol; in get_http_header_value() local
1289 eol = strchr(tmp, '\n'); in get_http_header_value()
1290 if (eol == NULL) { in get_http_header_value()
1291 eol = headers + headerslen; in get_http_header_value()
1292 } else if (eol > tmp && *(eol-1) == '\r') { in get_http_header_value()
1293 eol--; in get_http_header_value()
1295 return estrndup(tmp, eol - tmp); in get_http_header_value()
/PHP-5.4/main/streams/
H A Dstreams.c850 char *cr, *lf, *eol = NULL; in php_stream_locate_eol() local
870 eol = cr; in php_stream_locate_eol()
874 eol = lf; in php_stream_locate_eol()
877 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
880 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
883 return eol; in php_stream_locate_eol()
923 char *eol; in _php_stream_get_line() local
927 eol = php_stream_locate_eol(stream, NULL, 0 TSRMLS_CC); in _php_stream_get_line()
929 if (eol) { in _php_stream_get_line()
930 cpysz = eol - readptr + 1; in _php_stream_get_line()
/PHP-5.4/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.4/sapi/thttpd/
H A Dthttpd_patch594 eol = strpbrk( protocol, " \t\n\r" );
595 if ( eol != (char*) 0 )
596 *eol = '\0';

Completed in 52 milliseconds