Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dfgetln.c54 if ((size_t)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()
121 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln()
135 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln()
142 ret = (char *)fp->_lb._base; in fgetln()
Dlocal.h85 #define HASLB(fp) ((fp)->_lb._base != NULL)
87 free((char *)(fp)->_lb._base); \
88 (fp)->_lb._base = NULL; \
Dvsscanf.c56 f._lb._base = NULL; in vsscanf()
Dsscanf.c60 f._lb._base = NULL; in sscanf()
Dfindfp.c142 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
143 fp->_lb._size = 0; in __sfp()
Dfreopen.c123 fp->_lb._size = 0; in freopen()
/bionic/libc/include/
Dstdio.h120 struct __sbuf _lb; /* buffer for fgetln() */ member