Lines Matching defs:fd
45 ct_dev_tmpl_set_minor(int fd, char *minor)
47 return (ct_tmpl_set_internal_string(fd, CTDP_MINOR, minor));
51 ct_dev_tmpl_set_aset(int fd, uint_t aset)
53 return (ct_tmpl_set_internal(fd, CTDP_ACCEPT, aset));
57 ct_dev_tmpl_set_noneg(int fd)
59 return (ct_tmpl_set_internal(fd, CTDP_NONEG, CTDP_NONEG_SET));
63 ct_dev_tmpl_clear_noneg(int fd)
65 return (ct_tmpl_set_internal(fd, CTDP_NONEG, CTDP_NONEG_CLEAR));
69 ct_dev_tmpl_get_minor(int fd, char *buf, size_t *buflenp)
71 int ret = ct_tmpl_get_internal_string(fd, CTDP_MINOR, buf, *buflenp);
85 ct_dev_tmpl_get_aset(int fd, uint_t *aset)
87 return (ct_tmpl_get_internal(fd, CTDP_ACCEPT, aset));
91 ct_dev_tmpl_get_noneg(int fd, uint_t *negp)
93 return (ct_tmpl_get_internal(fd, CTDP_NONEG, negp));