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.c47 if (fp->_lb._size >= newsize) in __slbexpand()
49 if ((p = realloc(fp->_lb._base, newsize)) == NULL) in __slbexpand()
51 fp->_lb._base = p; in __slbexpand()
52 fp->_lb._size = newsize; in __slbexpand()
115 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln()
129 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln()
136 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.c141 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
142 fp->_lb._size = 0; in __sfp()
/bionic/libc/include/
Dstdio.h140 struct __sbuf _lb; /* buffer for fgetln() */ member