Lines Matching refs:cmd

132 _prop_object_send_ioctl(prop_object_t obj, int fd, unsigned long cmd)  in _prop_object_send_ioctl()  argument
142 if (ioctl(fd, cmd, &pref) == -1) in _prop_object_send_ioctl()
157 prop_array_send_ioctl(prop_array_t array, int fd, unsigned long cmd) in prop_array_send_ioctl() argument
161 rv = _prop_object_send_ioctl(array, fd, cmd); in prop_array_send_ioctl()
174 prop_dictionary_send_ioctl(prop_dictionary_t dict, int fd, unsigned long cmd) in prop_dictionary_send_ioctl() argument
178 rv = _prop_object_send_ioctl(dict, fd, cmd); in prop_dictionary_send_ioctl()
293 prop_array_recv_ioctl(int fd, unsigned long cmd, prop_array_t *arrayp) in prop_array_recv_ioctl() argument
298 rv = ioctl(fd, cmd, &pref); in prop_array_recv_ioctl()
316 prop_dictionary_recv_ioctl(int fd, unsigned long cmd, prop_dictionary_t *dictp) in prop_dictionary_recv_ioctl() argument
321 rv = ioctl(fd, cmd, &pref); in prop_dictionary_recv_ioctl()
341 unsigned long cmd, prop_dictionary_t *dictp) in prop_dictionary_sendrecv_ioctl() argument
353 if (ioctl(fd, cmd, &pref) == -1) in prop_dictionary_sendrecv_ioctl()
450 const u_long cmd, prop_object_t *objp, size_t lim) in _prop_object_copyin_ioctl() argument
452 if ((cmd & IOC_IN) == 0) in _prop_object_copyin_ioctl()
500 prop_array_copyin_ioctl_size(const struct plistref *pref, const u_long cmd, in prop_array_copyin_ioctl_size() argument
504 cmd, (prop_object_t *)arrayp, lim); in prop_array_copyin_ioctl_size()
508 prop_array_copyin_ioctl(const struct plistref *pref, const u_long cmd, in prop_array_copyin_ioctl() argument
511 return prop_array_copyin_ioctl_size(pref, cmd, arrayp, in prop_array_copyin_ioctl()
520 prop_dictionary_copyin_ioctl_size(const struct plistref *pref, const u_long cmd, in prop_dictionary_copyin_ioctl_size() argument
524 cmd, (prop_object_t *)dictp, lim); in prop_dictionary_copyin_ioctl_size()
528 prop_dictionary_copyin_ioctl(const struct plistref *pref, const u_long cmd, in prop_dictionary_copyin_ioctl() argument
531 return prop_dictionary_copyin_ioctl_size(pref, cmd, dictp, in prop_dictionary_copyin_ioctl()
596 _prop_object_copyout_ioctl(struct plistref *pref, const u_long cmd, in _prop_object_copyout_ioctl() argument
599 if ((cmd & IOC_OUT) == 0) in _prop_object_copyout_ioctl()
610 prop_array_copyout_ioctl(struct plistref *pref, const u_long cmd, in prop_array_copyout_ioctl() argument
613 return (_prop_object_copyout_ioctl(pref, cmd, array)); in prop_array_copyout_ioctl()
621 prop_dictionary_copyout_ioctl(struct plistref *pref, const u_long cmd, in prop_dictionary_copyout_ioctl() argument
625 _prop_object_copyout_ioctl(pref, cmd, dict)); in prop_dictionary_copyout_ioctl()