Searched refs:readptr (Results 1 – 1 of 1) sorted by relevance
883 const char *readptr; in php_stream_locate_eol() local886 readptr = (char*)stream->readbuf + stream->readpos; in php_stream_locate_eol()889 readptr = ZSTR_VAL(buf); in php_stream_locate_eol()895 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()896 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()909 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()912 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()954 char *readptr; in _php_stream_get_line() local958 readptr = (char*)stream->readbuf + stream->readpos; in _php_stream_get_line()962 cpysz = eol - readptr + 1; in _php_stream_get_line()[all …]
Completed in 12 milliseconds