Lines Matching refs:buf_len
1810 size_t buf_len; in PHP_FUNCTION() local
1867 if ((buf = php_stream_get_line(stream, NULL, 0, &buf_len)) == NULL) { in PHP_FUNCTION()
1872 if (php_stream_get_line(stream, buf, len + 1, &buf_len) == NULL) { in PHP_FUNCTION()
1878 HashTable *values = php_fgetcsv(stream, delimiter, enclosure, escape_char, buf_len, buf); in PHP_FUNCTION()
1895 …_stream *stream, char delimiter, char enclosure, int escape_char, size_t buf_len, char *buf) /* {{… in php_fgetcsv() argument
1912 line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len); in php_fgetcsv()
1913 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv()
1916 temp_len = buf_len; in php_fgetcsv()
2014 buf_len = new_len; in php_fgetcsv()
2018 line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len); in php_fgetcsv()
2019 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv()