Home
last modified time | relevance | path

Searched refs:vtype (Results 1 – 20 of 20) sorted by relevance

/f-stack/app/redis-5.0.5/utils/
H A Dredis-sha1.rb19 vtype = r.type?(k)
20 if vtype == "string"
24 elsif vtype == "list"
30 elsif vtype == "set"
36 elsif vtype == "zset"
/f-stack/lib/include/sys/
H A Dvnode.h37 enum vtype { enum
46 enum vtype v_type;
97 enum vtype va_type;/* vnode type (for create) */
115 extern enum vtype iftovt_tab[];
/f-stack/freebsd/contrib/openzfs/lib/libnvpair/
H A Dlibnvpair.c47 #define DEFINEOP(opname, vtype) \ argument
50 const char *, vtype); \
54 #define DEFINEARROP(opname, vtype) \ argument
57 const char *, vtype, uint_t); \
192 nvlist_t *nvl, const char *name, vtype value) \
420 #define NVLIST_PRINTCTL_REPLACE(type, vtype) \ argument
446 #define NVLIST_PRINTCTL_AREPLACE(type, vtype) \ argument
771 #define NVP(elem, type, vtype, ptype, format) { \ argument
772 vtype value; \
779 #define NVPA(elem, type, vtype, ptype, format) { \ argument
[all …]
/f-stack/freebsd/contrib/openzfs/include/
H A Dlibnvpair.h172 #define NVLIST_PRINTCTL_AVDECL(funcname, vtype) \ argument
174 int (*)(nvlist_prtctl_t, void *, nvlist_t *, const char *, vtype, uint_t), \
/f-stack/dpdk/drivers/net/enic/base/
H A Dvnic_devcmd.h50 #define _CMDCF(dir, flags, vtype, nr) \ argument
53 ((vtype) << _CMD_VTYPESHIFT) | \
55 #define _CMDC(dir, vtype, nr) _CMDCF(dir, 0, vtype, nr) argument
56 #define _CMDCNW(dir, vtype, nr) _CMDCF(dir, _CMD_FLAGS_NOWAIT, vtype, nr) argument
/f-stack/freebsd/sys/
H A Dvnode.h59 enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD, enum
108 enum vtype v_type:8; /* u vnode type */
206 enum vtype xv_type; /* vnode type */
281 enum vtype va_type; /* vnode type (for create) */
405 extern enum vtype iftovt_tab[];
690 int vaccess(enum vtype type, mode_t file_mode, uid_t file_uid,
694 int vaccess_acl_nfs4(enum vtype type, uid_t file_uid, gid_t file_gid,
696 int vaccess_acl_posix1e(enum vtype type, uid_t file_uid,
H A Duser.h616 int vntype_to_kinfo(int vtype);
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dpolicy.h70 vtype_t vtype);
H A Dvnode.h39 typedef enum vtype vtype_t;
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c1317 zfs_acl_chmod(vtype_t vtype, uint64_t mode, boolean_t split, boolean_t trim, in zfs_acl_chmod() argument
1335 isdir = (vtype == VDIR); in zfs_acl_chmod()
1464 zfs_ace_can_use(vtype_t vtype, uint16_t acep_flags) in zfs_ace_can_use() argument
1468 if ((vtype == VDIR) && (iflags & ACE_DIRECTORY_INHERIT_ACE)) in zfs_ace_can_use()
1471 return (!((vtype == VDIR) && in zfs_ace_can_use()
1480 zfs_acl_inherit(zfsvfs_t *zfsvfs, vtype_t vtype, zfs_acl_t *paclp, in zfs_acl_inherit() argument
1494 boolean_t isdir = (vtype == VDIR); in zfs_acl_inherit()
1495 boolean_t isreg = (vtype == VREG); in zfs_acl_inherit()
1501 if (aclinherit == ZFS_ACL_DISCARD || vtype == VLNK) in zfs_acl_inherit()
1517 !zfs_ace_can_use(vtype, iflags)) in zfs_acl_inherit()
/f-stack/tools/ipfw/
H A Dtables.c786 const char *vtype; in table_show_info() local
830 if ((vtype = match_value(tablealgoclass, d.taclass)) == NULL) in table_show_info()
831 vtype = "unknown"; in table_show_info()
834 table_show_tainfo(i, &d, "", vtype); in table_show_info()
836 table_show_tainfo(i, &d, "IPv4 ", vtype); in table_show_info()
839 if ((vtype = match_value(tablealgoclass, d.taclass)) == NULL) in table_show_info()
840 vtype = "unknown"; in table_show_info()
845 table_show_tainfo(i, &d, "IPv6 ", vtype); in table_show_info()
/f-stack/freebsd/contrib/libnv/
H A Dnvlist.c1558 #define NVLIST_ADD(vtype, type) \ argument
1560 nvlist_add_##type(nvlist_t *nvl, const char *name, vtype value) \
1588 #define NVLIST_ADD_ARRAY(vtype, type) \ argument
1590 nvlist_add_##type##_array(nvlist_t *nvl, const char *name, vtype value, \
1619 #define NVLIST_APPEND_ARRAY(vtype, type, TYPE) \ in NVLIST_ADD_ARRAY() argument
1621 nvlist_append_##type##_array(nvlist_t *nvl, const char *name, vtype value)\ in NVLIST_ADD_ARRAY()
/f-stack/tools/compat/include/sys/
H A Duser.h566 int vntype_to_kinfo(int vtype);
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_policy.c425 vtype_t vtype) in secpolicy_xvattr() argument
/f-stack/freebsd/kern/
H A Dsubr_acl_posix1e.c59 vaccess_acl_posix1e(enum vtype type, uid_t file_uid, gid_t file_gid, in vaccess_acl_posix1e()
H A Dsubr_acl_nfs4.c173 vaccess_acl_nfs4(enum vtype type, uid_t file_uid, gid_t file_gid, in vaccess_acl_nfs4()
H A Dkern_descrip.c4623 vntype_to_kinfo(int vtype) in vntype_to_kinfo() argument
4626 int vtype; in vntype_to_kinfo() member
4645 if (vtypes_table[i].vtype == vtype) in vntype_to_kinfo()
H A Dkern_linker.c1785 enum vtype type; in linker_lookup_file()
H A Dvfs_subr.c156 enum vtype iftovt_tab[16] = {
5234 vaccess(enum vtype type, mode_t file_mode, uid_t file_uid, gid_t file_gid, in vaccess()
H A Dvfs_cache.c3416 enum vtype type; in vn_fullpath_hardlink()