Searched refs:toread (Results 1 – 2 of 2) sorted by relevance
720 toread = size; in _php_stream_read()725 size -= toread; in _php_stream_read()726 buf += toread; in _php_stream_read()738 if (toread < 0) { in _php_stream_read()742 return toread; in _php_stream_read()756 toread = size; in _php_stream_read()759 if (toread > 0) { in _php_stream_read()764 if (toread > 0) { in _php_stream_read()766 buf += toread; in _php_stream_read()767 size -= toread; in _php_stream_read()[all …]
726 zend_long toread = 1024; in PHP_FUNCTION() local729 if (length > 0 && toread > length) { in PHP_FUNCTION()730 toread = length; in PHP_FUNCTION()733 if ((n = php_stream_read(stream, buf, toread)) <= 0) { in PHP_FUNCTION()
Completed in 21 milliseconds