Home
last modified time | relevance | path

Searched refs:_lb (Results 1 – 6 of 6) 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()
Dvswscanf.c83 f._lb._base = NULL; in vswscanf()
/bionic/libc/stdio/
Dlocal.h94 struct __sbuf _lb; /* buffer for fgetln() */ member
230 #define HASLB(fp) ((fp)->_lb._base != NULL)
232 free((char *)(fp)->_lb._base); \
233 (fp)->_lb._base = NULL; \
Dstdio.cpp169 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
170 fp->_lb._size = 0; in __sfp()
330 fp->_lb._size = 0; in freopen()
/bionic/libc/bionic/
Dwcstod.cpp62 f._lb._base = NULL; in wcstod()