HomeSort by relevance Sort by last modified time
    Searched full:getdelim (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/m4/
getdelim.m4 0 # getdelim.m4 serial 10
15 dnl Persuade glibc <stdio.h> to declare getdelim().
18 AC_CHECK_DECLS_ONCE([getdelim])
20 AC_CHECK_FUNCS_ONCE([getdelim])
24 AC_CACHE_CHECK([for working getdelim function], [gl_cv_func_working_getdelim],
40 int len = getdelim (&line, &siz, '\n', in);
49 if (getdelim (&line, &siz, '\n', in) == -1)
83 # Prerequisites of lib/getdelim.c.
stdio_h.m4 77 ]], [dprintf fpurge fseeko ftello getdelim getline gets pclose popen
  /external/toybox/lib/
pending.h 9 // These should be switched to posix-2008 getline() and getdelim()
portability.c 34 ssize_t getdelim(char **linep, size_t *np, int delim, FILE *stream) function
84 return getdelim(linep, np, '\n', stream);
portability.h 89 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
137 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
213 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
getdelim.c 1 /* $OpenBSD: getdelim.c,v 1.4 2015/08/31 02:53:57 guenther Exp $ */
2 /* $NetBSD: getdelim.c,v 1.13 2011/07/22 23:12:30 joerg Exp $ */
46 getdelim(char **__restrict buf, size_t *__restrict buflen, function
135 DEF_WEAK(getdelim); variable
getline.c 36 return getdelim(buf, buflen, '\n', fp);
  /external/bison/lib/
getline.c 26 return getdelim (lineptr, n, '\n', stream);
getdelim.c 0 /* getdelim.c --- Implementation of replacement getdelim function.
57 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) function
stdio.in.h 640 # undef getdelim
641 # define getdelim rpl_getdelim
643 _GL_FUNCDECL_RPL (getdelim, ssize_t,
647 _GL_CXXALIAS_RPL (getdelim, ssize_t,
652 _GL_FUNCDECL_SYS (getdelim, ssize_t,
657 _GL_CXXALIAS_SYS (getdelim, ssize_t,
661 _GL_CXXALIASWARN (getdelim);
663 # undef getdelim
665 _GL_WARN_ON_USE (getdelim, "getdelim is unportable -
    [all...]
  /external/toybox/toys/posix/
uniq.c 73 if (getdelim(&prevline, &prevsize, eol, infile) < 0)
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
xargs.c 139 l = getdelim(&data, (size_t *)&l, TT.delim, stdin);
  /external/bison/darwin-lib/
stdio.h 973 _GL_CXXALIASWARN (getdelim); variable
975 # undef getdelim macro
    [all...]
  /external/bison/linux-lib/
stdio.h 973 _GL_CXXALIASWARN (getdelim); variable
975 # undef getdelim macro
    [all...]
  /bionic/tests/
stdio_test.cpp 106 TEST(STDIO_TEST, getdelim) {
122 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), static_cast<int>(strlen(expected[i])));
130 // getdelim returns -1 but doesn't set errno if we're already at EOF.
133 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), -1);
150 ASSERT_EQ(getdelim(NULL, &buffer_length, ' ', fp), -1);
155 ASSERT_EQ(getdelim(&buffer, NULL, ' ', fp), -1);
161 ASSERT_EQ(getdelim(&buffer, &buffer_length, ' ', fp), -1);
171 ASSERT_EQ(-1, getdelim(&word_read, &allocated_length, ' ', fp));
    [all...]
  /development/ndk/platforms/android-21/arch-arm64/symbols/
libc.so.functions.txt 316 getdelim
  /development/ndk/platforms/android-21/arch-mips64/symbols/
libc.so.functions.txt 316 getdelim
  /development/ndk/platforms/android-21/arch-x86_64/symbols/
libc.so.functions.txt 316 getdelim
  /external/bison/
Android.mk 111 lib/getdelim.c \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
stdio.h 114 /* Like `getdelim', but reads up to a newline. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdio.h 114 /* Like `getdelim', but reads up to a newline. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdio.h 114 /* Like `getdelim', but reads up to a newline. */
  /development/ndk/platforms/android-21/arch-mips64/lib-bootstrap/lib/
libc.so 
  /development/ndk/platforms/android-21/arch-mips64/lib-bootstrap/libr2/
libc.so 
  /development/ndk/platforms/android-21/arch-mips64/lib-bootstrap/libr6/
libc.so 

Completed in 739 milliseconds

1 2 3 4 5 6 7 8 9