Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dfgetln.c54 if (fp->_lb._size >= newsize) in __slbexpand()
56 if ((p = realloc(fp->_lb._base, newsize)) == NULL) in __slbexpand()
58 fp->_lb._base = p; in __slbexpand()
59 fp->_lb._size = newsize; in __slbexpand()
122 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln()
136 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln()
143 ret = (char *)fp->_lb._base; in fgetln()
Dvsscanf.c57 f._lb._base = NULL; in vsscanf()
Dsscanf.c61 f._lb._base = NULL; in sscanf()
Dvswscanf.c83 f._lb._base = NULL; in vswscanf()
Dfreopen.c122 fp->_lb._size = 0; in freopen()
/bionic/libc/stdio/
Dlocal.h108 #define HASLB(fp) ((fp)->_lb._base != NULL)
110 free((char *)(fp)->_lb._base); \
111 (fp)->_lb._base = NULL; \
Dfindfp.c145 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
146 fp->_lb._size = 0; in __sfp()
/bionic/libc/include/
Dstdio.h134 struct __sbuf _lb; /* buffer for fgetln() */ member