/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | getdelim.c | 30 FILE *fp = fopen("getdelim.txt", "w+"); in getdelim_0100() 36 ssize_t result = getdelim(&line, &len, ',', fp); in getdelim_0100() 41 remove("getdelim.txt"); in getdelim_0100() 54 FILE *fp = fopen("getdelim.txt", "w+"); in getdelim_0200() 57 ssize_t result = getdelim(&line, NULL, 'l', fp); in getdelim_0200() 59 remove("getdelim.txt"); in getdelim_0200() 72 FILE *fp = fopen("getdelim.txt", "w+"); in getdelim_0300() 75 ssize_t result = getdelim(NULL, &a, 'l', fp); in getdelim_0300() 77 remove("getdelim.txt"); in getdelim_0300()
|
/third_party/musl/src/stdio/ |
H A D | getdelim.c | 7 ssize_t getdelim(char **restrict s, size_t *restrict n, int delim, FILE *restrict f) in getdelim() function 83 weak_alias(getdelim, __getdelim);
|
H A D | getline.c | 5 return getdelim(s, n, '\n', f); in getline()
|
/third_party/toybox/toys/posix/ |
H A 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()
|
H A D | xargs.c | 137 if (getdelim(&data, (size_t *)&l, TT.delim, stdin)<0) { in xargs_main()
|
H A D | grep.c | 157 ulen = len = getdelim(&line, &ulen, TT.indelim, file); in do_grep()
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
H A D | wordexp.c | 24 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
|
/third_party/musl/src/misc/ |
H A D | wordexp.c | 24 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
|
/third_party/ltp/testcases/kernel/lib/ |
H A D | numa_helper.c | 129 ret = getdelim(&cpumask, &len, '\n', f); in filter_nodemask_cpu()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdio.h | 154 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/porting/linux/user/include/ |
H A D | stdio.h | 155 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdio.h | 152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/include/ |
H A D | stdio.h | 155 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
|
/third_party/musl/libc-test/src/api/ |
H A D | stdio.c | 66 {ssize_t(*p)(char**restrict,size_t*restrict,int,FILE*restrict) = getdelim;} in f()
|
/third_party/elfutils/src/ |
H A D | elfclassify.c | 851 ssize_t ret = getdelim (&buffer, &buffer_size, delim, stdin); in process_stdin()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_string.cpp | 695 ssize_t n = getdelim(&readBuf, &maxReadLen, ' ', fp); in BM_function_Getdelim()
|
/third_party/toybox/lib/ |
H A D | lib.c | 1382 len = getdelim(&line, (void *)&len, delim, fp); in do_lines()
|
/third_party/toybox/toys/pending/ |
H A D | awk.c | 305 ssize_t getdelim(char ** restrict lineptr, size_t * restrict n, int delimiter, FILE *stream); 3305 k = getdelim(&zfp->recbuf_multi, &zfp->recbufsize_multi, '\n', zfp->fp); in getrec_multiline() 3312 kk = getdelim(&zfp->recbuf_multx, &zfp->recbufsize_multx, '\n', zfp->fp); in getrec_multiline()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 2437 extern __ssize_t getdelim (char **__restrict __lineptr, [all...] |