Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dfile.c1019 buf = php_stream_get_line(stream, NULL, 0, &line_len); in PHP_FUNCTION()
1030 if (php_stream_get_line(stream, buf, len, &line_len) == NULL) { in PHP_FUNCTION()
1110 if ((retval = php_stream_get_line(stream, buf, len, &actual_len)) == NULL) { in PHP_FUNCTION()
1150 buf = php_stream_get_line((php_stream *) what, NULL, 0, &len); in PHP_FUNCTION()
2032 if ((buf = php_stream_get_line(stream, NULL, 0, &buf_len)) == NULL) { in PHP_FUNCTION()
2037 if (php_stream_get_line(stream, buf, len + 1, &buf_len) == NULL) { in PHP_FUNCTION()
2138 } else if ((new_buf = php_stream_get_line(stream, NULL, 0, &new_len)) == NULL) { in php_fgetcsv()
H A Dhttp_fopen_wrapper.c664 if (php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL) { in php_stream_url_wrap_http_ex()
720 …if (php_stream_get_line(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE, &http_header_line_length… in php_stream_url_wrap_http_ex()
724 …if (php_stream_get_line(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE, &http_header_line_length… in php_stream_url_wrap_http_ex()
H A Dexec.c137 while (php_stream_get_line(stream, b, EXEC_INPUT_BUF, &bufl)) { in php_exec()
H A Dftp_fopen_wrapper.c625 if (!php_stream_get_line(innerstream, ent->d_name, sizeof(ent->d_name), &tmp_len)) { in php_ftp_dirstream_read()
/PHP-5.5/main/
H A Dphp_streams.h327 #define php_stream_get_line(stream, buf, maxlen, retlen) _php_stream_get_line((stream), (buf), (max… macro
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_driver.c702 while ((buf = php_stream_get_line(stream, NULL, 0, &line_len)) != NULL) { in PHP_METHOD()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c192 dsn = php_stream_get_line(stream, buf, buflen, NULL); in dsn_from_uri()
/PHP-5.5/ext/spl/
H A Dspl_directory.c2071 …if (php_stream_get_line(intern->u.file.stream, buf, intern->u.file.max_line_len + 1, &line_len) ==… in spl_filesystem_file_read()
2078 buf = php_stream_get_line(intern->u.file.stream, NULL, 0, &line_len); in spl_filesystem_file_read()
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c967 …for (ms->line = 1; (line = php_stream_get_line(stream, buffer , BUFSIZ, &len)) != NULL; ms->line++… in load_1()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch326 + for (ms->line = 1; (line = php_stream_get_line(stream, buffer , BUFSIZ, &len)) != NULL; ms->line+…

Completed in 106 milliseconds