Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dfgetstr.c81 if ((size_t)fp->_lb._size >= newsize) in __slbexpand()
83 if ((p = realloc(fp->_lb._base, newsize)) == NULL) in __slbexpand()
85 fp->_lb._base = p; in __slbexpand()
86 fp->_lb._size = (int)newsize; in __slbexpand()
155 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in __fgetstr()
169 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in __fgetstr()
177 fp->_lb._base[len] = 0; in __fgetstr()
179 return ((char *)fp->_lb._base); in __fgetstr()
Dlocal.h106 #define HASLB(fp) ((fp)->_lb._base != NULL)
108 free((char *)(fp)->_lb._base); \
109 (fp)->_lb._base = NULL; \
Dfindfp.c161 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
162 fp->_lb._size = 0; in __sfp()
Dsscanf.c84 f._lb._base = NULL; in sscanf()
Dvsscanf.c81 f._lb._base = NULL;
Dvswscanf.c95 f._lb._base = NULL; in vswscanf()
Dfreopen.c146 fp->_lb._size = 0; in freopen()
/device/linaro/bootloader/edk2/StdLib/Include/
Dstdio.h250 struct __sbuf _lb; /* buffer for fgetln() */ member