Lines Matching refs:control
513 } control;
546 mh.msg_control = &control;
547 mh.msg_controllen = sizeof(control);
804 struct cmsghdr *control;
806 mh.msg_control = control = alloca(CMSG_SPACE(sizeof(int) * m->n_fds));
807 mh.msg_controllen = control->cmsg_len = CMSG_LEN(sizeof(int) * m->n_fds);
808 control->cmsg_level = SOL_SOCKET;
809 control->cmsg_type = SCM_RIGHTS;
810 memcpy(CMSG_DATA(control), m->fds, sizeof(int) * m->n_fds);
931 } control;
959 mh.msg_control = &control;
960 mh.msg_controllen = sizeof(control);