Home
last modified time | relevance | path

Searched refs:cpysz (Results 1 – 1 of 1) sorted by path

/PHP-7.2/main/streams/
H A Dstreams.c873 size_t cpysz = 0; in _php_stream_get_line() local
882 cpysz = eol - readptr + 1; in _php_stream_get_line()
885 cpysz = avail; in _php_stream_get_line()
900 if (cpysz >= maxlen - 1) { in _php_stream_get_line()
901 cpysz = maxlen - 1; in _php_stream_get_line()
906 memcpy(buf, readptr, cpysz); in _php_stream_get_line()
908 stream->position += cpysz; in _php_stream_get_line()
909 stream->readpos += cpysz; in _php_stream_get_line()
910 buf += cpysz; in _php_stream_get_line()
911 maxlen -= cpysz; in _php_stream_get_line()
[all …]

Completed in 10 milliseconds