/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
D | getdelim.c | 36 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()
|
D | test_src_functionalext_supplement_stdio.gni | 90 "getdelim",
|
/third_party/musl/src/stdio/ |
D | getdelim.c | 7 ssize_t getdelim(char **restrict s, size_t *restrict n, int delim, FILE *restrict f) in getdelim() function 81 weak_alias(getdelim, __getdelim);
|
D | getline.c | 5 return getdelim(s, n, '\n', f); in getline()
|
/third_party/toybox/toys/posix/ |
D | uniq.c | 71 if (getdelim(&prevline, &prevsize, eol, infile) < 0) return; in uniq_main() 73 while (getdelim(&thisline, &thissize, eol, infile) > 0) { in uniq_main()
|
D | xargs.c | 137 if (getdelim(&data, (size_t *)&l, TT.delim, stdin)<0) { in xargs_main()
|
D | grep.c | 157 ulen = len = getdelim(&line, &ulen, TT.indelim, file); in do_grep()
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
D | wordexp.c | 24 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
|
/third_party/musl/src/misc/ |
D | wordexp.c | 23 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
|
/third_party/ltp/testcases/kernel/lib/ |
D | numa_helper.c | 129 ret = getdelim(&cpumask, &len, '\n', f); in filter_nodemask_cpu()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/include/ |
D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/ndk_musl_include/ |
D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/libc-test/src/api/ |
D | stdio.c | 66 {ssize_t(*p)(char**restrict,size_t*restrict,int,FILE*restrict) = getdelim;} in f()
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/porting/linux/user/include/ |
D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/toybox/lib/ |
D | lib.c | 1339 len = getdelim(&line, (void *)&len, delim, fp); in do_lines()
|
/third_party/musl/ |
D | libc.map.txt | 778 getdelim;
|
D | WHATSNEW | 1652 - 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/ |
D | ChangeLog.0 | 150 (getline, getdelim): Use ANSI C function declarations. 151 * getline.c (getstr, getline, getdelim): Likewise.
|
/third_party/gettext/gettext-tools/ |
D | ChangeLog.0 | 469 vasprintf, AM_FUNC_GETLINE, getdelim, gl_EXITFAIL,
|
/third_party/gstreamer/gstreamer/tests/check/ |
D | gstreamer.supp | 3871 <getdelim one-time inits called from libselinux> 3874 fun:getdelim
|
/third_party/gettext/ |
D | .gitignore | 122 /gettext-tools/libgettextpo/getdelim.c
|
/third_party/musl/ldso/ |
D | dynlink.c | 1068 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) { in load_library()
|