/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...] |
gnulib.mk | 463 ## begin gnulib module getdelim 466 EXTRA_DIST += getdelim.c 468 EXTRA_libbison_a_SOURCES += getdelim.c 470 ## end gnulib module getdelim [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
getline.c | 30 return getdelim (lineptr, n, '\n', stream);
|
getdelim.c | 3 /* getdelim.c --- Implementation of replacement getdelim function. 57 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) function
|
stdio.in.h | 489 extern ssize_t getdelim (char **lineptr, size_t *linesize, int delimiter, 493 # undef getdelim 494 # define getdelim(l, s, d, f) \ 495 (GL_LINK_WARNING ("getdelim is unportable - " \ 496 "use gnulib module getdelim for portability"), \ 497 getdelim (l, s, d, f))
|
gnulib.mk | 207 ## begin gnulib module getdelim 210 EXTRA_DIST += getdelim.c 212 EXTRA_libsed_a_SOURCES += getdelim.c 214 ## end gnulib module getdelim [all...] |
/bionic/libc/upstream-netbsd/libc/stdio/ |
getline.c | 44 return getdelim(buf, buflen, '\n', fp);
|
getdelim.c | 1 /* $NetBSD: getdelim.c,v 1.13 2011/07/22 23:12:30 joerg Exp $ */ 31 __RCSID("$NetBSD: getdelim.c,v 1.13 2011/07/22 23:12:30 joerg Exp $"); 48 __weak_alias(getdelim, _getdelim) 145 getdelim(char **__restrict buf, size_t *__restrict buflen, function
|
/bionic/tests/ |
stdio_test.cpp | 50 TEST(stdio, getdelim) { 66 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), static_cast<int>(strlen(expected[i]))); 74 // getdelim returns -1 but doesn't set errno if we're already at EOF. 77 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), -1); 93 ASSERT_EQ(getdelim(NULL, &buffer_length, ' ', fp), -1); 98 ASSERT_EQ(getdelim(&buffer, NULL, ' ', fp), -1); 104 ASSERT_EQ(getdelim(&buffer, &buffer_length, ' ', fp), -1);
|
/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...] |
/external/bison/ |
Android.mk | 111 lib/getdelim.c \
|
configure | [all...] |
/ndk/sources/host-tools/sed-4.2.1/ |
bootstrap.sh | 121 ${CC} -DHAVE_CONFIG_H -I.. -I. -c getdelim.c || exit 1
|
bootstrap.sh.in | 121 ${CC} -DHAVE_CONFIG_H -I.. -I. -c getdelim.c || exit 1
|
configure | [all...] |
/bionic/libc/include/ |
stdio.h | 222 ssize_t getdelim(char ** __restrict, size_t * __restrict, int,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
stdio.h | 637 extern _IO_ssize_t getdelim (char **__restrict __lineptr, 641 /* Like `getdelim', but reads up to a newline.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
stdio.h | 637 extern _IO_ssize_t getdelim (char **__restrict __lineptr, 641 /* Like `getdelim', but reads up to a newline.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
stdio.h | 637 extern _IO_ssize_t getdelim (char **__restrict __lineptr, 641 /* Like `getdelim', but reads up to a newline.
|
/external/genext2fs/ |
genext2fs.c | 325 getdelim(char **lineptr, size_t *n, int delim, FILE *stream) function 386 #define getline(a,b,c) getdelim(a,b,'\n',c) [all...] |
/bionic/libc/ |
Android.mk | 339 upstream-netbsd/libc/stdio/getdelim.c \
|