HomeSort by: relevance | last modified time | path
    Searched defs:xflags (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/fs/msdosfs/
msdosfs_vfsops.c 410 int xflags; local
413 xflags = FREAD;
415 xflags = FREAD|FWRITE;
417 error = VOP_OPEN(devvp, xflags, FSCRED);
427 (void) VOP_CLOSE(devvp, xflags, NOCRED);
  /src/sys/ufs/chfs/
chfs_vfsops.c 122 int xflags; local
174 xflags = FREAD;
176 xflags = FREAD|FWRITE;
178 err = VOP_OPEN(devvp, xflags, FSCRED);
186 (void)VOP_CLOSE(devvp, xflags, NOCRED);
  /src/sys/ufs/ext2fs/
ext2fs_vfsops.c 453 int xflags; local
456 xflags = FREAD;
458 xflags = FREAD|FWRITE;
460 error = VOP_OPEN(devvp, xflags, FSCRED);
467 (void)VOP_CLOSE(devvp, xflags, NOCRED);
  /src/external/cddl/osnet/dist/uts/common/zmod/
zlib.h 114 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
830 The text, time, xflags, and os fields are filled in with the gzip header
  /src/external/bsd/dhcpcd/dist/src/
if.c 956 int xflags, xtype = type; local
976 if ((xtype & SOCK_CLOEXEC) && ((xflags = fcntl(s, F_GETFD)) == -1 ||
977 fcntl(s, F_SETFD, xflags | FD_CLOEXEC) == -1))
981 if ((xtype & SOCK_NONBLOCK) && ((xflags = fcntl(s, F_GETFL)) == -1 ||
982 fcntl(s, F_SETFL, xflags | O_NONBLOCK) == -1))
1000 int xflags, xtype = type; local
1020 if ((xtype & SOCK_CLOEXEC) && ((xflags = fcntl(fd[0], F_GETFD)) == -1 ||
1021 fcntl(fd[0], F_SETFD, xflags | FD_CLOEXEC) == -1))
1023 if ((xtype & SOCK_CLOEXEC) && ((xflags = fcntl(fd[1], F_GETFD)) == -1 ||
1024 fcntl(fd[1], F_SETFD, xflags | FD_CLOEXEC) == -1)
    [all...]
  /src/tests/lib/libc/db/
h_db.c 498 int xflags, nflags; local
501 xflags = R_LAST;
504 xflags = R_FIRST;
507 for (;; xflags = nflags)
508 switch (dbp->seq(dbp, &key, &data, xflags)) {
582 sflags(int xflags)
584 switch (xflags) {
  /src/external/gpl3/binutils/dist/zlib/
zlib.h 117 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
1048 The text, time, xflags, and os fields are filled in with the gzip header
  /src/external/gpl3/binutils.old/dist/zlib/
zlib.h 117 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
1045 The text, time, xflags, and os fields are filled in with the gzip header
  /src/external/gpl3/gdb.old/dist/zlib/
zlib.h 117 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
1045 The text, time, xflags, and os fields are filled in with the gzip header
  /src/external/gpl3/gdb/dist/zlib/
zlib.h 117 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
1048 The text, time, xflags, and os fields are filled in with the gzip header
  /src/common/dist/zlib/
zlib.h 123 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
1085 The text, time, xflags, and os fields are filled in with the gzip header
  /src/sys/ufs/ffs/
ffs_vfsops.c 603 int xflags; local
606 xflags = FREAD;
608 xflags = FREAD | FWRITE;
610 error = VOP_OPEN(devvp, xflags, FSCRED);
625 (void)VOP_CLOSE(devvp, xflags, NOCRED);
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
zlib.h 457 int xflags; /* extra flags (not used when writing a gzip file) */ member in struct:gz_header_s
1173 The text, time, xflags, and os fields are filled in with the gzip header
  /src/sys/dev/ic/
rt2661reg.h 239 uint16_t xflags; member in struct:rt2661_tx_desc
rt2860reg.h 862 uint8_t xflags; member in struct:rt2860_txwi
  /src/sys/dev/usb/
if_rumreg.h 187 uint16_t xflags; member in struct:rum_tx_desc
  /src/sys/dev/pci/
if_iwireg.h 277 uint8_t xflags; member in struct:iwi_tx_desc
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 7065 int xflags, new_dupdata; local
7072 xflags = MDB_CURRENT|MDB_NOSPILL;
7075 xflags = (flags & MDB_NODUPDATA) ?
7083 rc = _mdb_cursor_put(&mc->mc_xcursor->mx_cursor, &dkey, &xdata, xflags);
7110 xflags |= MDB_APPEND;
7111 rc = _mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);

Completed in 49 milliseconds