Searched defs:obf (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dfcntl.c80 struct o_flock obf; local
304 if (copyin((void *)arg, &obf, sizeof (obf))) {
308 bf.l_type = obf.l_type;
309 bf.l_whence = obf.l_whence;
310 bf.l_start = (off64_t)obf.l_start;
311 bf.l_len = (off64_t)obf.l_len;
312 bf.l_sysid = (int)obf.l_sysid;
313 bf.l_pid = obf.l_pid;
426 obf
[all...]
/illumos-gate/usr/src/cmd/dd/
H A Ddd.c133 static int obf; /* output file descriptor */ variable
850 obf = -1;
854 obf = open(ofile, (O_WRONLY|O_CREAT|oflag),
858 obf = open(ofile, O_WRONLY|O_CREAT|oflag,
860 if (obf == -1)
866 (void) fstat(obf, &file_stat);
868 (ftruncate(obf, (((off_t)oseekn) * ((off_t)obs)))
876 obf = open(ofile, O_WRONLY|O_CREAT|O_TRUNC|oflag,
882 obf = dup(1);
885 if (obf
[all...]

Completed in 46 milliseconds