Home
last modified time | relevance | path

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

/PHP-7.2/main/streams/
H A Dstreams.c803 const char *readptr; in php_stream_locate_eol() local
806 readptr = (char*)stream->readbuf + stream->readpos; in php_stream_locate_eol()
809 readptr = ZSTR_VAL(buf); in php_stream_locate_eol()
815 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
816 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
829 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
832 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
874 char *readptr; in _php_stream_get_line() local
878 readptr = (char*)stream->readbuf + stream->readpos; in _php_stream_get_line()
882 cpysz = eol - readptr + 1; in _php_stream_get_line()
[all …]

Completed in 10 milliseconds