Lines Matching refs:msg_controllen
400 msg.msg_controllen = CMSG_SPACE(sizeof (int) * t->send); in sendtest()
404 msg.msg_controllen += CMSG_SPACE(t->predata); in sendtest()
407 msg.msg_control = alloca(msg.msg_controllen); in sendtest()
408 bzero(msg.msg_control, msg.msg_controllen); in sendtest()
433 printf("Sending: controllen=%u\n", msg.msg_controllen); in sendtest()
552 msg.msg_controllen = bufsize; in recvtest()
554 bzero(msg.msg_control, msg.msg_controllen); in recvtest()
559 printf("Receiving: controllen=%u, \n", msg.msg_controllen); in recvtest()
571 msg.msg_controllen, msg.msg_flags); in recvtest()
575 check(msg.msg_controllen, t->x_controllen, "msg_controllen"); in recvtest()
604 end = msg.msg_control + msg.msg_controllen; in recvtest()