Home
last modified time | relevance | path

Searched refs:get_rawline (Results 1 – 5 of 5) sorted by relevance

/external/toybox/lib/
Dpending.h10 char *get_rawline(int fd, long *plen, char end);
Dlib.c692 char *get_rawline(int fd, long *plen, char end) in get_rawline() function
711 char *buf = get_rawline(fd, &len, '\n'); in get_line()
/external/toybox/toys/other/
Dtac.c28 if (!(c = get_rawline(fd, &len, '\n'))) break; in do_tac()
/external/toybox/toys/pending/
Dcrontab.c120 for (lno = 1; (line = get_rawline(fd, &plen, '\n')); lno++,free(line)) { in parse_crontab()
/external/toybox/toys/posix/
Dsort.c284 char * line = FLAG(z) ? get_rawline(fd, NULL, 0) : get_line(fd); in sort_read()