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

123

/freebsd-10.3-release/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-10.3-release/gnu/lib/libregex/doc/
H A Dinclude.awk5 while ((getline line < source) > 0)
/freebsd-10.3-release/sys/conf/
H A Dkmod_syms.awk5 while ("${NM:='nm'} -g " ARGV[1] | getline) {
/freebsd-10.3-release/contrib/netbsd-tests/usr.bin/nbperf/
H A Dhash_driver.c46 while ((len = getline(&line, &buflen, stdin)) > 0) {
/freebsd-10.3-release/lib/libc/stdio/
H A Dgetline.c28 __FBSDID("$FreeBSD: releng/10.3/lib/libc/stdio/getline.c 189136 2009-02-28 06:00:58Z das $");
34 getline(char ** __restrict linep, size_t * __restrict linecapp, function
/freebsd-10.3-release/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-10.3-release/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);
213 ATF_REQUIRE(getline(
[all...]
/freebsd-10.3-release/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-10.3-release/usr.bin/ctags/
H A DC.c154 getline();
183 getline();
228 getline();
372 getline();
H A Dctags.h87 extern void getline(void);
H A Dfortran.c127 getline(); /* process line for ex(1) */
H A Dlisp.c102 getline();
H A Dprint.c46 * getline --
51 getline(void) function
/freebsd-10.3-release/gnu/usr.bin/gperf/
H A DMakefile13 getline.cc hash.cc
/freebsd-10.3-release/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-10.3-release/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-10.3-release/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-10.3-release/usr.bin/csplit/
H A Dcsplit.c66 static char *getline(void);
198 while ((p = getline()) != NULL && fputs(p, ofp) == 0)
273 getline(void) function
294 /* Conceptually rewind the input (as obtained by getline()) back `n' lines. */
346 * getline() will read from here. Next call will truncate to
394 while ((p = getline()) != NULL) {
420 while (--ofs > 0 && (p = getline()) != NULL)
454 if ((p = getline()) == NULL)
/freebsd-10.3-release/usr.sbin/pw/
H A Dpw_vpw.c75 while ((linelen = getline(&line, &linecap, pwd_fp)) > 0) {
157 while ((linelen = getline(&line, &linecap, grp_fp)) > 0) {
/freebsd-10.3-release/contrib/tzdata/
H A Dchecktab.awk12 while (getline <iso_table) {
53 while (getline <zone_table) {
/freebsd-10.3-release/libexec/ftpd/
H A Dextern.h45 int getline(char *, int, FILE *);
/freebsd-10.3-release/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-10.3-release/cddl/compat/opensolaris/misc/
H A Dfsshare.c72 getline(FILE *fd, const char *skip) function
203 while (oldfd != NULL && (line = getline(oldfd, mountpoint)) != NULL)
/freebsd-10.3-release/sys/teken/
H A Dgensequences45 while (getline > 0) {
/freebsd-10.3-release/tools/build/
H A DMakefile15 SRCS= getline.c config.h

Completed in 282 milliseconds

123