HomeSort by relevance Sort by last modified time
    Searched defs:fin (Results 1 - 25 of 26) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/checkeq/
checkeq.c 24 static FILE *fin; variable
39 if ((fin = fopen(*++argv, "r")) == NULL) {
44 check(fin);
45 (void) fclose(fin);
  /onnv/onnv-gate/usr/src/cmd/tplot/
driver.c 48 FILE *fin; local
63 if ((fin = fopen(argv[1], "r")) == NULL) {
67 fplt(fin);
78 fplt(FILE *fin)
86 while((c=getc(fin)) != EOF){
89 xi = getsi(fin);
90 yi = getsi(fin);
94 x0 = getsi(fin);
95 y0 = getsi(fin);
96 x1 = getsi(fin);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/troff/troff.d/
makedev.c 123 FILE *fin; local
132 if ((fin = fopen("DESC", "r")) == NULL) {
136 while (fscanf(fin, "%s", cmd) != EOF) {
138 skipline(fin);
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)
220 FILE *fin; local
    [all...]
t10.c 101 int i, fin, nw; local
111 if ((fin = open(termtab, 0)) < 0) {
115 read(fin, (char *) &dev, sizeof(struct dev ));
129 read(fin, filebase, dev.filesize); /* all at once */
151 close(fin);
  /onnv/onnv-gate/usr/src/uts/common/io/comstar/port/iscsit/
iscsit_radiuspacket.c 334 struct sockaddr_in *fin = (struct sockaddr_in *) local
337 if ((lin->sin_family == fin->sin_family) &&
338 (bcmp(&lin->sin_addr, &fin->sin_addr,
  /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
SLPHeaderV1.java 248 ByteArrayOutputStream fin = new ByteArrayOutputStream(); local
255 putInt(errCode, fin);
263 parseCommaSeparatedListOut(previousResponders, fin);
271 fin.write(payload, 0, payload.length);
277 byte[] npayload = fin.toByteArray();
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cfsd/
cfsd_fscache.c 217 FILE *fin; local
256 fin = fopen(cfs_mnt_filename, "r");
257 if (fin == NULL) {
264 if (fstat64(fileno(fin), &sinfo) == -1) {
267 if (fclose(fin))
276 while (fgets(buf, sizeof (buf), fin) != NULL) {
282 if (fclose(fin))
301 if (fclose(fin))
349 if (fclose(fin))
    [all...]
cfsd_subr.c 254 FILE *fin; local
276 fin = fopen(CACHEFSTAB, "r");
277 if (fin == NULL) {
280 while (fgets(buf, sizeof (buf), fin) != NULL) {
297 cp = fgets(buf, sizeof (buf), fin);
322 if (fclose(fin))
328 fin = fopen(MNTTAB, "r");
329 if (fin == NULL) {
337 while ((xx = getmntany(fin, &minfo, &mpref)) != -1) {
367 if (fclose(fin))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/font/
makedev.c 129 FILE *fin; local
137 if ((fin = fopen("DESC", "r")) == NULL) {
141 while (fscanf(fin, "%s", cmd) != EOF) {
143 skipline(fin);
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)
226 FILE *fin; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mailx/
names.c 207 FILE *fout, *fin; local
304 fin = Fdopen(image, "r");
305 if (fin == NULL) {
312 rewind(fin);
314 putc(getc(fin), fout);
315 while (fgets(line, sizeof line, fin)) {
321 while ((c = getc(fin)) != EOF)
329 fclose(fin);
  /onnv/onnv-gate/usr/src/cmd/rpcgen/
rpc_util.c 67 FILE *fin; /* file pointer of current input */ variable
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
main.c 43 FILE *fin = NULL; /* input file pointer */ variable
199 fin = stdin;
383 if (fin == NULL) {
385 if ((fin = fopen("distfile", "r")) == NULL)
386 fin = fopen("Distfile", "r");
388 fin = fopen(distfile, "r");
389 if (fin == NULL) {
  /onnv/onnv-gate/usr/src/cmd/genmsg/
util.c 710 FILE *fin, *fout; local
721 if ((fin = fopen(in, "r")) == NULL) {
733 while ((c = getc(fin)) != EOF)
736 (void) fclose(fin);
  /onnv/onnv-gate/usr/src/ucbcmd/sed/
sed0.c 34 FILE *fin; variable
120 if((fin = fopen(*++eargv, "r")) == NULL) {
127 (void) fclose(fin);
675 while((t = getc(fin)) != EOF) {
685 if((t = getc(fin)) == EOF)
691 if(ferror(fin)) {
  /onnv/onnv-gate/usr/src/cmd/bnu/
uuxqt.c 835 char fin[MAXFULLNAME]; local
864 (void) strcpy(fin, "/dev/null");
896 (void) sscanf(&buf[1], "%256s", fin);
897 expfile(fin);
898 if (chkpth(fin, CK_READ)) {
899 DEBUG(4, "badfile - in: %s\n", fin);
994 DEBUG(4, "fin - %s, ", fin);
1112 retosndr(user, Rmtname, return_stdin ? fin : "",
1136 ret = shio(_Cmd, fin, dfile, errDfile)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/lex/common/
once.h 108 FILE *fin, *fother; variable
  /onnv/onnv-gate/usr/src/uts/common/io/hxge/
hxge_pfc_hw.h 484 uint32_t fin:1; member in struct:__anon5480::__anon5481
496 uint32_t fin:1;
  /onnv/onnv-gate/usr/src/uts/common/inet/ipf/
ip_nat6.c 270 /* Parameters: fin(I) - pointer to packet information */
280 static INLINE int nat6_newmap(fin, nat, ni)
281 fr_info_t *fin;
292 ipf_stack_t *ifs = fin->fin_ifs;
320 hm = nat6_hostmap(np, &fin->fin_src6, &fin->fin_dst6,
341 temp.i6[0] = fin->fin_src6.i6[0] &
343 temp.i6[1] = fin->fin_src6.i6[1] &
345 temp.i6[2] = fin->fin_src6.i6[2] &
347 temp.i6[3] = fin->fin_src6.i6[3]
1939 fr_info_t fin; local
    [all...]
ip_nat.c 1572 fr_info_t fin; local
3728 fr_info_t fin; local
    [all...]
fil.c 346 /* Parameters: fin(I) - pointer to packet information */
353 static INLINE void frpr_short6(fin, xmin)
354 fr_info_t *fin;
358 if (fin->fin_dlen < xmin)
359 fin->fin_flx |= FI_SHORT;
366 /* Parameters: fin(I) - pointer to packet information */
372 static INLINE void frpr_ipv6hdr(fin)
373 fr_info_t *fin;
375 ip6_t *ip6 = (ip6_t *)fin->fin_ip;
377 fr_ip_t *fi = &fin->fin_fi
2324 fr_info_t *fin = &frinfo; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/compress/
compress.c 981 FILE *fin = inp; local
1007 if ((ent = getc(fin)) == EOF && ferror(fin)) {
1023 while ((c = getc(fin)) != EOF) {
1086 if (ferror(fin) != 0) {
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/dpost/
dpost.c 1336 int fin; \/* for reading the DESC.out file *\/ local
1401 int fin; \/* for reading *s.out file *\/ local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/zlogin/
zlogin.c 983 FILE *fin; local
988 if ((fin = popen(user_cmd, "r")) == NULL)
991 while (cin == NULL && !feof(fin))
992 cin = fgets(pwline, sizeof (pwline), fin);
995 (void) pclose(fin);
999 status = pclose(fin);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sa/
sar.c 96 static int fin, fout; variable
210 if ((fin = open(flnm, 0)) == -1)
270 fin = pipedes[0];
298 if (lseek(fin, 0, SEEK_SET) == (off_t)-1)
345 if (!input_pipe && fstat(fin, &in_stat) == -1)
351 while (safe_read(fin, &tx, sizeof (struct sa))) {
418 if ((curr_pos = lseek(fin, 0, SEEK_CUR)) ==
432 if (safe_read(fin, &nxio[i], sizeof (iodevinfo_t)) == 0)
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
ftp.c 742 FILE *fin, *dout = 0; local
783 fin = stdin;
786 fin = mypopen(local + 1, "r");
787 if (fin == NULL) {
797 fin = fopen(local, "r");
798 if (fin == NULL) {
806 if (fstat(fileno(fin), &st) < 0 ||
812 (void) fclose(fin);
823 (*closefunc)(fin);
831 if (fseeko(fin, restart_point, SEEK_SET) < 0)
    [all...]

Completed in 4029 milliseconds

1 2