HomeSort by relevance Sort by last modified time
    Searched defs:obf (Results 1 - 2 of 2) sorted by null

  /onnv/onnv-gate/usr/src/uts/common/syscall/
fcntl.c 85 struct o_flock obf; local
266 if (copyin((void *)arg, &obf, sizeof (obf))) {
270 bf.l_type = obf.l_type;
271 bf.l_whence = obf.l_whence;
272 bf.l_start = (off64_t)obf.l_start;
273 bf.l_len = (off64_t)obf.l_len;
274 bf.l_sysid = (int)obf.l_sysid;
275 bf.l_pid = obf.l_pid;
342 obf.l_type = (int16_t)bf.l_type
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dd/
dd.c 129 static int obf; /* output file descriptor */ variable
807 obf = -1;
811 obf = open(ofile, (O_WRONLY|O_CREAT),
815 obf = open(ofile, O_WRONLY|O_CREAT,
817 if (obf == -1)
823 (void) fstat(obf, &file_stat);
825 (ftruncate(obf, (((off_t)oseekn) * ((off_t)obs)))
833 obf = creat(ofile,
840 obf = dup(1);
843 if (obf == -1
    [all...]

Completed in 3299 milliseconds