HomeSort by relevance Sort by last modified time
    Searched defs:_base (Results 1 - 12 of 12) sorted by null

  /bionic/libc/stdio/
asprintf.c 32 unsigned char *_base; local
36 f._bf._base = f._p = (unsigned char *)malloc(128);
37 if (f._bf._base == NULL)
46 _base = realloc(f._bf._base, ret + 1);
47 if (_base == NULL)
49 *str = (char *)_base;
53 free(f._bf._base);
vasprintf.c 31 unsigned char *_base; local
36 f._bf._base = f._p = (unsigned char *)malloc(128);
37 if (f._bf._base == NULL)
44 _base = realloc(f._bf._base, ret + 1);
45 if (_base == NULL)
47 *str = (char *)_base;
51 free(f._bf._base);
fvwrite.c 111 size_t blen = fp->_p - fp->_bf._base;
112 unsigned char *_base; local
120 _base = realloc(fp->_bf._base, _size + 1);
121 if (_base == NULL)
124 fp->_bf._base = _base;
126 fp->_p = _base + blen;
136 } else if (fp->_p > fp->_bf._base && (int)len > w) {
177 if (fp->_p > fp->_bf._base && s > w)
    [all...]
  /bionic/libc/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /development/ndk/platforms/android-3/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /development/ndk/platforms/android-8/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
stdio.h 88 unsigned char *_base; member in struct:__sbuf
113 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
114 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.

Completed in 909 milliseconds