Home
last modified time | relevance | path

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

/PHP-7.3/main/streams/
H A Dstreams.c811 const char *readptr; in php_stream_locate_eol() local
814 readptr = (char*)stream->readbuf + stream->readpos; in php_stream_locate_eol()
817 readptr = ZSTR_VAL(buf); in php_stream_locate_eol()
823 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
824 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
837 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
840 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
882 char *readptr; in _php_stream_get_line() local
886 readptr = (char*)stream->readbuf + stream->readpos; in _php_stream_get_line()
890 cpysz = eol - readptr + 1; in _php_stream_get_line()
[all …]

Completed in 64 milliseconds