Home
last modified time | relevance | path

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

/PHP-7.4/main/streams/
H A Dstreams.c854 const char *readptr; in php_stream_locate_eol() local
857 readptr = (char*)stream->readbuf + stream->readpos; in php_stream_locate_eol()
860 readptr = ZSTR_VAL(buf); in php_stream_locate_eol()
866 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
867 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
880 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
883 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
925 char *readptr; in _php_stream_get_line() local
929 readptr = (char*)stream->readbuf + stream->readpos; in _php_stream_get_line()
933 cpysz = eol - readptr + 1; in _php_stream_get_line()
[all …]

Completed in 14 milliseconds