Lines Matching refs:obf
133 static int obf; /* output file descriptor */ variable
850 obf = -1; in main()
854 obf = open(ofile, (O_WRONLY|O_CREAT|oflag), in main()
858 obf = open(ofile, O_WRONLY|O_CREAT|oflag, in main()
860 if (obf == -1) in main()
866 (void) fstat(obf, &file_stat); in main()
868 (ftruncate(obf, (((off_t)oseekn) * ((off_t)obs))) in main()
876 obf = open(ofile, O_WRONLY|O_CREAT|O_TRUNC|oflag, in main()
882 obf = dup(1); in main()
885 if (obf == -1) in main()
988 if (oseekn && lseek(obf, (((off_t)oseekn) * ((off_t)obs)), 1) == -1) in main()
1172 if ((close(obf) != 0) || (fclose(stdout) != 0)) in main()
1832 bc = write(obf, (char *)obuf, oc); in flsh()