Searched refs:getdelim (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/lib/libc/stdio/
H A Dgetline.c38 return (getdelim(linep, linecapp, '\n', fp));
H A Dgetdelim.c28 __FBSDID("$FreeBSD: stable/11/lib/libc/stdio/getdelim.c 320942 2017-07-13 09:27:11Z kib $");
109 getdelim(char ** __restrict linep, size_t * __restrict linecapp, int delim, function
H A DMakefile.inc16 fwrite.c getc.c getchar.c getdelim.c getline.c \
67 MLINKS+=getline.3 getdelim.3
/freebsd-11-stable/contrib/file/src/
H A Dgetline.c41 getdelim(char **buf, size_t *bufsiz, int delimiter, FILE *fp) function
86 return getdelim(buf, bufsiz, '\n', fp);
H A Dfile.h609 ssize_t getdelim(char **, size_t *, int, FILE *);
/freebsd-11-stable/lib/libc/tests/stdio/
H A Dgetdelim_test.c44 * This is a neurotic reader function designed to give getdelim() a
126 ATF_REQUIRE(getdelim(&line, &linecap, 'X', stdout) == -1);
186 printf("getdelim\n");
187 ATF_REQUIRE(getdelim(&line, &linecap, '\0', fp) == n + 1);
192 printf("getdelim 2\n");
193 ATF_REQUIRE(getdelim(&line, &linecap, '\0', fp) == n + 1);
/freebsd-11-stable/include/
H A Dstdio.h373 ssize_t getdelim(char ** __restrict, size_t * __restrict, int,
/freebsd-11-stable/usr.bin/unzip/
H A Dunzip.c454 len = getdelim(path, &alen, '\n', stdin);
/freebsd-11-stable/usr.bin/sort/
H A Dsort.c242 while ((linelen = getdelim(&line, &linesize, '\0', f)) != -1) {
259 err(2, "%s: getdelim", fn);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp49 // getdelim iscntrl isspace
1023 SUMMARY_WITH_VARIANTS(getdelim)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc5120 // There's no __getdelim() on FreeBSD so we supply the getdelim() interceptor
5122 INTERCEPTOR(SSIZE_T, getdelim, char **lineptr, SIZE_T *n, int delim,
5124 GETDELIM_INTERCEPTOR_IMPL(getdelim)
5129 COMMON_INTERCEPT_FUNCTION(getdelim);

Completed in 133 milliseconds