Searched refs:getline (Results 1 - 25 of 79) sorted by relevance

1234

/freebsd-11-stable/tools/tools/locale/tools/
H A Dextract-colldef.awk12 while (getline line) {
/freebsd-11-stable/etc/autofs/
H A Dinclude_nis_nullfs65 "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) {
/freebsd-11-stable/contrib/libstdc++/src/
H A Dmisc-inst.cc51 getline(basic_istream<char>&, string&, char);
54 getline(basic_istream<char>&, string&);
64 getline(basic_istream<wchar_t>&, wstring&, wchar_t);
67 getline(basic_istream<wchar_t>&, wstring&);
/freebsd-11-stable/contrib/mdocml/
H A Dtest-getline.c12 return getline(&line, &linesz, stdin) != -1;
H A Dcompat_getline.c32 getline(char **buf, size_t *bufsz, FILE *fp) function
H A Dsoelim.c100 while ((linelen = getline(&line, &linecap, f)) > 0) {
/freebsd-11-stable/sys/conf/
H A Dkmod_syms.awk5 while ("${NM:='nm'} -g " ARGV[1] | getline) {
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/nbperf/
H A Dhash_driver.c46 while ((len = getline(&line, &buflen, stdin)) > 0) {
/freebsd-11-stable/lib/libc/stdio/
H A Dgetline.c34 getline(char ** __restrict linep, size_t * __restrict linecapp, function
H A DMakefile.inc16 fwrite.c getc.c getchar.c getdelim.c getline.c \
41 getline.3 getwc.3 mktemp.3 open_memstream.3 \
67 MLINKS+=getline.3 getdelim.3
/freebsd-11-stable/contrib/gperf/lib/
H A DMakefile.in65 OBJECTS = getopt.$(OBJEXT) getopt1.$(OBJEXT) getline.$(OBJEXT) hash.$(OBJEXT)
92 getline.o : getline.cc getline.h
93 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(srcdir)/getline.cc
/freebsd-11-stable/lib/libc/tests/stdio/
H A Dgetdelim_test.c94 ATF_REQUIRE(getline(&line, &linecap, fp) == sizeof(apothegm) - 1);
98 ATF_REQUIRE(getline(&line, &linecap, fp) == 1);
102 ATF_REQUIRE(getline(&line, &linecap, fp) == -1);
123 ATF_REQUIRE(getline(&line, &linecap, stdout) == -1);
140 ATF_REQUIRE(getline(NULL, &linecap, fp) == -1);
142 ATF_REQUIRE(getline(&line, NULL, fp) == -1);
155 /* Make sure getline() allocates memory as needed if fp is at EOF. */
162 printf("getline\n");
163 ATF_REQUIRE(getline(&line, &linecap, fp) == -1);
212 ATF_REQUIRE(getline(
[all...]
/freebsd-11-stable/contrib/file/src/
H A Dgetline.c1 /* $NetBSD: getline.c,v 1.2 2014/09/16 17:23:50 christos Exp $ */
84 getline(char **buf, size_t *bufsiz, FILE *fp) function
99 while ((len = getline(&p, &n, stdin)) != -1)
/freebsd-11-stable/lib/libedit/
H A Dsys.h92 #define getline libedit_getline macro
93 ssize_t getline(char **line, size_t *len, FILE *fp);
/freebsd-11-stable/gnu/usr.bin/gperf/
H A DMakefile11 getline.cc hash.cc
/freebsd-11-stable/contrib/gcclibs/libiberty/testsuite/
H A Dtest-demangle.c49 getline(buf) function
199 getline (&format);
203 getline (&input);
204 getline (&expect);
325 getline (&expect);
/freebsd-11-stable/sys/tools/
H A Dmakeobjops.awk164 getline < src;
179 getline < src;
185 getline < src;
238 while (line !~ /\}/ && (getline < src) > 0) {
442 while (!error && (getline < src) > 0) {
/freebsd-11-stable/usr.bin/comm/
H A Dcomm.c129 n1 = getline(&line1, &line1len, fp1);
137 n2 = getline(&line2, &line2len, fp2);
222 if ((n = getline(bufp, buflenp, fp)) < 0)
/freebsd-11-stable/usr.sbin/pw/
H A Dpw_vpw.c76 while ((linelen = getline(&line, &linecap, pwd_fp)) > 0) {
158 while ((linelen = getline(&line, &linecap, grp_fp)) > 0) {
/freebsd-11-stable/contrib/tzdata/
H A Dchecktab.awk12 while (getline <iso_table) {
53 while (getline <zone_table) {
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_istream.h406 getline(char_type* __s, streamsize __n, char_type __delim);
414 * Returns @c getline(s,n,widen('\n')).
417 getline(char_type* __s, streamsize __n) function in class:basic_istream
418 { return this->getline(__s, __n, this->widen('\n')); }
605 getline(char_type* __s, streamsize __n, char_type __delim);
621 getline(char_type* __s, streamsize __n, char_type __delim);
/freebsd-11-stable/sys/teken/
H A Dgensequences45 while (getline > 0) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp44 while (std::getline(IN, L, '\n')) {
177 while (std::getline(IF, L, '\n')) {
224 while (std::getline(IF, L, '\n')) {
/freebsd-11-stable/share/mk/
H A Dversion_gen.awk46 while (getline < vfile) {
/freebsd-11-stable/tools/tools/nanobsd/
H A Dmtree-dedup.awk180 while ((getline < "/dev/stdin") > 0) {

Completed in 301 milliseconds

1234