Home
last modified time | relevance | path

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

/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dgetdelim.c30 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 Dgetdelim.c7 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 Dgetline.c5 return getdelim(s, n, '\n', f); in getline()
/third_party/toybox/toys/posix/
H A Duniq.c71 if (getdelim(&prevline, &prevsize, eol, infile) < 0) return; in uniq_main()
73 while (getdelim(&thisline, &thissize, eol, infile) > 0) { in uniq_main()
H A Dxargs.c137 if (getdelim(&data, (size_t *)&l, TT.delim, stdin)<0) { in xargs_main()
H A Dgrep.c157 ulen = len = getdelim(&line, &ulen, TT.indelim, file); in do_grep()
/third_party/musl/porting/liteos_a/user/src/misc/
H A Dwordexp.c24 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
/third_party/musl/src/misc/
H A Dwordexp.c24 return getdelim(&s, (size_t [1]){0}, 0, f) < 0 ? 0 : s; in getword()
/third_party/ltp/testcases/kernel/lib/
H A Dnuma_helper.c129 ret = getdelim(&cpumask, &len, '\n', f); in filter_nodemask_cpu()
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstdio.h154 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/porting/linux/user/include/
H A Dstdio.h155 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstdio.h152 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/include/
H A Dstdio.h155 ssize_t getdelim(char **__restrict, size_t *__restrict, int, FILE *__restrict);
/third_party/musl/libc-test/src/api/
H A Dstdio.c66 {ssize_t(*p)(char**restrict,size_t*restrict,int,FILE*restrict) = getdelim;} in f()
/third_party/elfutils/src/
H A Delfclassify.c851 ssize_t ret = getdelim (&buffer, &buffer_size, delim, stdin); in process_stdin()
/third_party/musl/Benchmark/musl/
H A Dlibc_string.cpp695 ssize_t n = getdelim(&readBuf, &maxReadLen, ' ', fp); in BM_function_Getdelim()
/third_party/toybox/lib/
H A Dlib.c1382 len = getdelim(&line, (void *)&len, delim, fp); in do_lines()
/third_party/toybox/toys/pending/
H A Dawk.c305 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 Dstylo.hpp2437 extern __ssize_t getdelim (char **__restrict __lineptr,
[all...]

Completed in 49 milliseconds