Lines Matching refs:buf_len
2003 size_t buf_len; in PHP_FUNCTION() local
2077 if ((buf = php_stream_get_line(stream, NULL, 0, &buf_len)) == NULL) { in PHP_FUNCTION()
2082 if (php_stream_get_line(stream, buf, len + 1, &buf_len) == NULL) { in PHP_FUNCTION()
2088 php_fgetcsv(stream, delimiter, enclosure, escape, buf_len, buf, return_value); in PHP_FUNCTION()
2092 …stream *stream, char delimiter, char enclosure, char escape_char, size_t buf_len, char *buf, zval … in php_fgetcsv() argument
2107 tptr = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter); in php_fgetcsv()
2108 line_end_len = buf_len - (size_t)(tptr - buf); in php_fgetcsv()
2112 temp_len = buf_len; in php_fgetcsv()
2201 buf_len = new_len; in php_fgetcsv()
2205 line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter); in php_fgetcsv()
2206 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv()