Home | History | Annotate | Download | only in linux

Lines Matching full:len

53  *	system, not 4.3. Thus msg_accrights(len) are now missing. They
84 #define __CMSG_NXTHDR(ctl, len, cmsg) __cmsg_nxthdr((ctl),(len),(cmsg))
87 #define CMSG_ALIGN(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
90 #define CMSG_SPACE(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(len))
91 #define CMSG_LEN(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
93 #define __CMSG_FIRSTHDR(ctl,len) ((len) >= sizeof(struct cmsghdr) ? \
289 extern int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len);
291 int offset, int len);
295 unsigned int len, int *csump);
298 extern int memcpy_toiovec(struct iovec *v, unsigned char *kdata, int len);
301 extern int put_cmsg(struct msghdr*, int level, int type, int len, void *data);