/src/etc/autofs/ |
include_nis_nullfs | 65 "hostname -s" | getline; 68 "hostname -f" | getline; 73 "hostname -f" | getline; 77 while ("ifconfig" | getline) { 92 while ("ypcat -k " ARGV[1] | getline) { 98 while ("ypmatch " ARGV[2] " " ARGV[1] | getline) {
|
/src/lib/libc/stdio/ |
getline.c | 1 /* $NetBSD: getline.c,v 1.3 2009/12/02 08:46:33 roy Exp $ */ 31 __RCSID("$NetBSD: getline.c,v 1.3 2009/12/02 08:46:33 roy Exp $"); 38 __weak_alias(getline, _getline) 42 getline(char **__restrict buf, size_t *__restrict buflen, FILE *__restrict fp)
|
Makefile.inc | 13 getc.c getchar.c getdelim.c getline.c gettemp.c getw.c getwc.c \ 47 MLINKS+=getdelim.3 getline.3
|
/src/share/man/man8/ |
MAKEDEV2manpage.awk | 66 getline r1l < MAKEDEV; 69 getline r1l < MAKEDEV; 78 getline r1ll < MAKEDEV; 82 getline r1ll < MAKEDEV; 98 while (getline l < MAKEDEV > 0 && l !~ /^#.*Device.*Valid.*argument/) 183 while(str | getline) {
|
/src/tests/usr.bin/nbperf/ |
hash_driver.c | 46 while ((len = getline(&line, &buflen, stdin)) > 0) {
|
/src/common/dist/zlib/contrib/iostream3/ |
test.cc | 27 while (inf.getline(buf,80,'\n')) { 43 while (inf.getline(buf,80,'\n')) {
|
/src/etc/ |
MAKEDEV.awk | 76 while (getline < file) { 103 getline CONFRCSID < cfgfile # RCS Id 104 getline < cfgfile # blank line 106 while (getline < cfgfile) { 156 while (getline < inc) { 167 while (getline < inc) { 210 while (getline < idfile) { 224 while (getline < idfile) {
|
/src/sys/arch/atari/stand/tostools/aptck/ |
setrev.awk | 31 while ((e = getline <destfile) > 0) {
|
/src/tools/compat/ |
getline.c | 1 /* $NetBSD: getline.c,v 1.2 2014/09/16 17:23:50 christos Exp $ */ 91 getline(char **buf, size_t *bufsiz, FILE *fp) function in typeref:typename:ssize_t 106 while ((len = getline(&p, &n, stdin)) != -1)
|
/src/share/misc/ |
nanpa.awk | 14 while ((getline < postdb) > 0) { 50 while((ispipe?(file | getline):(getline < file)) > 0) {
|
/src/distrib/sets/ |
join.awk | 83 while ( (getline < ARGV[1]) > 0) {
|
/src/sys/arch/luna68k/stand/boot/ |
getline.c | 1 /* $NetBSD: getline.c,v 1.4 2014/01/11 15:51:02 tsutsui Exp $ */ 37 * @(#)getline.c 8.1 (Berkeley) 6/10/93 70 * @(#)getline.c 8.1 (Berkeley) 6/10/93 74 * getline -- simple getline function 82 getline(const char *prompt, char *buff) function in typeref:typename:int
|
Makefile | 43 SRCS+= getline.c parse.c
|
samachdep.h | 94 /* getline.c */ 95 int getline(const char *, char *);
|
init_main.c | 328 if (getline(prompt, buffer) > 0) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerDataFlowTrace.cpp | 35 while (std::getline(IF, L, '\n')) { 55 while (std::getline(IF, L, '\n')) {
|
FuzzerMerge.cpp | 55 if (!std::getline(IS, Line, '\n')) return false; 62 if (!std::getline(IS, Line, '\n')) return false; 71 if (!std::getline(IS, Files[i].Name, '\n')) 79 while (std::getline(IS, Line, '\n')) { 192 while (std::getline(IS, Line, '\n')) {
|
FuzzerUtil.cpp | 138 while (std::getline(ISS, S, '\n')) {
|
/src/usr.bin/sortinfo/ |
sortinfo.c | 124 while ((ll = getline(&line, &i, stdin)) != -1) { 134 while ((ll = getline(&line, &i, stdin)) != -1)
|
/src/sys/arch/hpc/stand/dspgen/ |
do_subst.awk | 50 while (getline < asm_tmpl > 0) { 56 while (getline < prop_tmpl > 0)
|
/src/distrib/common/ |
parselist.awk | 181 while (command | getline dir) { 191 while (command | getline srcfile) {
|
/src/lib/libc/time/ |
checktab.awk | 60 while (getline <iso_table) { 101 while (getline <zone_table) {
|
/src/sbin/fsck_v7fs/ |
main.c | 172 if ((linelen = getline(&line, &linesize, stdin)) == -1) {
|
/src/usr.bin/nbperf/ |
nbperf.c | 218 while ((line_len = getline(&line, &line_allocated, input)) != -1) {
|
/src/usr.bin/sed/ |
main.c | 467 * Use getline() so that we can handle essentially infinite input 469 * getline() the same buffer which is expanded as needed. 471 ssize_t slen = getline(&p, &plen, infile);
|