Searched refs:fscanf (Results 1 - 25 of 81) sorted by relevance

1234

/illumos-gate/usr/src/cmd/eeprom/sparc/
H A Dloadlogo.c59 if ((c = fscanf(f, "%*[^DFHVW*]")) == EOF)
64 if ((c = fscanf(f, "epth=%d", &nval)) == 1 &&
69 if ((c = fscanf(f, "ormat_version=%d", &nval)) == 1 &&
74 c = fscanf(f, "eight=%d", &ich);
77 c = fscanf(f, "alid_bits_per_item=%d", &bits);
80 c = fscanf(f, "idth=%d", &icw);
83 c = fscanf(f, "%c", &slash);
102 c = fscanf(f, " 0x%x,", &val);
/illumos-gate/usr/src/lib/libast/common/stdio/
H A Dfscanf.c27 fscanf(Sfio_t* f, const char* fmt, ...) function
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Dmakedev.c136 while (fscanf(fin, "%s", cmd) != EOF) {
140 fscanf(fin, "%hd", &dev.res);
142 fscanf(fin, "%hd", &dev.hor);
144 fscanf(fin, "%hd", &dev.vert);
146 fscanf(fin, "%hd", &dev.unitwidth);
148 fscanf(fin, "%hd", &dev.sizescale);
150 fscanf(fin, "%hd", &dev.paperwidth);
152 fscanf(fin, "%hd", &dev.paperlength);
154 fscanf(fin, "%hd", &dev.biggestfont);
156 fscanf(fi
[all...]
H A Dta.c262 fscanf(fp, "%s", str);
297 fscanf(fp, "%d", &n); /* ignore fractional sizes */
301 fscanf(fp, "%s", str);
305 /* fscanf(fp, "%d", &n); */
316 /* fscanf(fp, "%d", &n); */
330 fscanf(fp, "%d", &n);
334 fscanf(fp, "%d", &n);
338 fscanf(fp, "%d", &n);
369 fscanf(fp, "%s", str);
376 fscanf(f
[all...]
/illumos-gate/usr/src/cmd/lp/filter/postscript/font/
H A Dmakedev.c141 while (fscanf(fin, "%s", cmd) != EOF) {
145 fscanf(fin, "%hd", &dev.res);
147 fscanf(fin, "%hd", &dev.hor);
149 fscanf(fin, "%hd", &dev.vert);
151 fscanf(fin, "%hd", &dev.unitwidth);
153 fscanf(fin, "%hd", &dev.sizescale);
155 fscanf(fin, "%hd", &dev.paperwidth);
157 fscanf(fin, "%hd", &dev.paperlength);
159 fscanf(fin, "%hd", &dev.biggestfont);
161 fscanf(fi
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dgetwin.c57 if (fscanf(fp, "%d,%d,%hx,%hd,", &y, &x, &at, &co) < 4)
60 if (fscanf(fp, "%[^\n]%n ", mbs, &n) < 1)
88 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4)
98 by = fscanf(
109 by = fscanf( fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs);
116 if (fscanf(fp, "CUR=%hd,%hd", &w->_cury, &w->_curx) < 2)
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dgetwin.c60 if (fscanf(fp, "%d,%d,%hx,%hd,", &y, &x, &at, &co) < 4)
63 if (fscanf(fp, "%[^\n]%n ", mbs, &n) < 1)
86 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4)
96 by = fscanf(fp,
106 by = fscanf(fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs);
113 if (fscanf(fp, "CUR=%hd,%hd", &w->_cury, &w->_curx) < 2)
/illumos-gate/usr/src/tools/cscope-fast/
H A Dedit.c61 if (fscanf(refsfound, "%s%*s%s", file, linenum) == 2) {
84 while (fscanf(refsfound, "%s%*s%s%*[^\n]", file, linenum) == 2) {
H A Dmain.c234 if (fscanf(oldrefs, "cscope %d %*s", &fileversion) != 1) {
262 (void) fscanf(oldrefs,
275 if (fscanf(oldrefs, "%ld", &traileroffset) != 1) {
296 if (fscanf(oldrefs, "%d", &dbvpndirs) != 1) {
306 if (fscanf(oldrefs, "%s", path) != 1) {
322 if (fscanf(oldrefs, "%d", &nsrcfiles) != 1) {
333 if (fscanf(oldrefs, "%d", &oldnum) != 1) {
364 while (fscanf(names, "%s", path) == 1 &&
370 (void) fscanf(names,
394 if (fscanf(oldref
[all...]
H A Ddir.c180 while (fscanf(names, "%s", path) == 1) {
196 (void) fscanf(names,
/illumos-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Ddpost.c1091 fscanf(fp, "%s", str);
1096 fscanf(fp, "%d", &m);
1108 while (fscanf(fp, "%d %d", &n, &m) == 2)
1114 fscanf(fp, "%d %d %c", &n, &m, &n1);
1119 fscanf(fp, "%d", &n);
1124 fscanf(fp, "%d %d", &m, &n);
1130 fscanf(fp, "%d %d %d %d", &n, &m, &n1, &m1);
1151 fscanf(fp, "%d", &n); /* ignore fractional sizes */
1156 fscanf(fp, "%s", str);
1161 fscanf(f
[all...]
H A Dpictures.c233 while ( fscanf(fp_pic, "%s %ld\n", name, &total) != EOF ) {
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dscanf.c61 fscanf(FILE *iop, const char *fmt, ...) function
/illumos-gate/usr/src/cmd/bnu/
H A Duucpname.c50 if (fscanf(NameFile, "%14s", NameBuf) != 1) {
H A Dgename.c118 if (fscanf(fp, "%4x", &n) != 1) {
/illumos-gate/usr/src/cmd/lms/tools/
H A DATVersion.cpp101 int res = fscanf(fp, AT_VERSION_SCAN_FORMAT, buf);
169 ret = fscanf(stat, AT_PROCSTAT_NAME_FORMAT, name_str);
/illumos-gate/usr/src/head/iso/
H A Dstdio_iso.h174 #pragma redefine_extname fscanf _fscanf_c89
184 #define fscanf _fscanf_c89
206 extern int fscanf(FILE *_RESTRICT_KYWD, const char *_RESTRICT_KYWD, ...);
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dstdio.h135 extern int fscanf(FILE *, char *, ...);
/illumos-gate/usr/src/cmd/svr4pkg/pkgmk/
H A Dmkpkgmap.c131 * NOTE: THE SIZE OF temp IS HARD CODED INTO CALLS TO fscanf.
183 * the FOLLOWING CALL TO fscanf -- YOU MUST CHANGE THIS
184 * LINE IF THE SIZE OF fscanf IS EVER CHANGED!!!
186 (void) fscanf(fp, "%4096s", temp);
201 (void) fscanf(fp, "%*[^\n]"); /* rest of line */
202 (void) fscanf(fp, "\n"); /* rest of line */
206 (void) fscanf(fp, "%*[^\n]"); /* read of line */
207 (void) fscanf(fp, "\n"); /* read of line */
595 * FOLLOWING CALL TO fscanf -- YOU MUST CHANGE THIS LINE IF
596 * THE SIZE OF fscanf I
[all...]
/illumos-gate/usr/src/cmd/krb5/kadmin/dbutil/
H A Ddump.c1648 if (fscanf(f, "%02x", &c) != 1) {
1813 nmatched = fscanf(filep, "%d\t%d\t%d\t%d\t%d\t%d\t",
1849 if (!error && (fscanf(filep, "\t%d\t", &tmpint1) != 1)) {
1887 if (!error && (fscanf(filep,
1909 if (!error && (fscanf(filep, "\t%u\t%u\t%u\t",
1924 if (!error && (fscanf(filep, "\t%u\t", &tmpint1) != 1)) {
1965 if (!error && (fscanf(filep, "\t%u\t", &tmpint1) != 1)) {
1980 if (fscanf(filep, "\t%u", &tmpint1) != 1) {
2132 nread = fscanf(filep, "%d\t%d\t%d\t%d\t%d\t", &t1, &t2, &t3, &t4, &t5);
2181 nread = fscanf(file
[all...]
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A DMakefile41 fpos.o fprintf.o fpurge.o fput.o fread.o fscanf.o fseek.o fvwrite.o \
/illumos-gate/usr/src/ucbhead/
H A Dstdio.h173 extern int fscanf(FILE *, const char *, ...);
/illumos-gate/usr/src/cmd/cron/
H A Datq.c423 fscanf(filename, "%*[^\n]\n");
428 if (fscanf(filename, ": jobname: %27s%*[^\n]\n", jobname) != 1) {
/illumos-gate/usr/src/cmd/addbadsec/
H A Daddbadsec.c296 status = fscanf(badsecfd, "%d", &badsec_entry);
299 status = fscanf(badsecfd, "%d", &badsec_entry);
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Drepval.c569 /* fscanf may not set errno, so clear it first */
571 while ((fscanf_ret = fscanf(tfp, "%lld", &tval)) == 1) {
775 /* fscanf may not set errno, so clear it first */
777 while ((fscanf_ret = fscanf(fp, "%llu", &tval)) == 1) {

Completed in 101 milliseconds

1234