Home
last modified time | relevance | path

Searched refs:getdelim (Results 1 – 25 of 29) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/stdio/
Dgetdelim.c36 ssize_t result = getdelim(&line, &len, ',', fp); in getdelim_0100()
57 ssize_t result = getdelim(&line, NULL, 'l', fp); in getdelim_0200()
75 ssize_t result = getdelim(NULL, &a, 'l', fp); in getdelim_0300()
Dtest_src_functionalext_supplement_stdio.gni90 "getdelim",
/third_party/musl/src/stdio/
Dgetdelim.c7 ssize_t getdelim(char **restrict s, size_t *restrict n, int delim, FILE *restrict f) in getdelim() function
81 weak_alias(getdelim, __getdelim);
Dgetline.c5 return getdelim(s, n, '\n', f); in getline()
/third_party/toybox/toys/posix/
Duniq.c71 if (getdelim(&prevline, &prevsize, eol, infile) < 0) return; in uniq_main()
73 while (getdelim(&thisline, &thissize, eol, infile) > 0) { in uniq_main()
Dxargs.c137 if (getdelim(&data, (size_t *)&l, TT.delim, stdin)<0) { in xargs_main()
Dgrep.c157 ulen = len = getdelim(&line, &ulen, TT.indelim, file); in do_grep()
/third_party/musl/porting/liteos_a/user/src/misc/
Dwordexp.c24 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
/third_party/musl/src/misc/
Dwordexp.c23 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
/third_party/ltp/testcases/kernel/lib/
Dnuma_helper.c129 ret = getdelim(&cpumask, &len, '\n', f); in filter_nodemask_cpu()
/third_party/musl/porting/liteos_m/kernel/include/
Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/include/
Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/ndk_musl_include/
Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/libc-test/src/api/
Dstdio.c66 {ssize_t(*p)(char**restrict,size_t*restrict,int,FILE*restrict) = getdelim;} in f()
/third_party/musl/porting/uniproton/kernel/include/
Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/porting/linux/user/include/
Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/porting/liteos_a/kernel/include/
Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/toybox/lib/
Dlib.c1339 len = getdelim(&line, (void *)&len, delim, fp); in do_lines()
/third_party/musl/
Dlibc.map.txt778 getdelim;
DWHATSNEW1652 - potential single-byte heap overflow in getdelim
1662 - getdelim updated caller's size wrongly when realloc failed
1663 - getdelim realloc strategy was wasteful
2025 - getdelim wrongly realloc'd buffer that was already exactly right size
2026 - getdelim failed to set stream orientation on early error
/third_party/gettext/gnulib-local/lib/
DChangeLog.0150 (getline, getdelim): Use ANSI C function declarations.
151 * getline.c (getstr, getline, getdelim): Likewise.
/third_party/gettext/gettext-tools/
DChangeLog.0469 vasprintf, AM_FUNC_GETLINE, getdelim, gl_EXITFAIL,
/third_party/gstreamer/gstreamer/tests/check/
Dgstreamer.supp3871 <getdelim one-time inits called from libselinux>
3874 fun:getdelim
/third_party/gettext/
D.gitignore122 /gettext-tools/libgettextpo/getdelim.c
/third_party/musl/ldso/
Ddynlink.c1068 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) { in load_library()

12