OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CMSG_ALIGN
(Results
51 - 56
of
56
) sorted by null
1
2
3
/prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/sys/
socket.h
111
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
112
#define CMSG_DATA(cmsg) ((void*)((char*)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
113
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
114
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
/prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/sys/
socket.h
111
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
112
#define CMSG_DATA(cmsg) ((void*)((char*)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
113
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
114
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
/prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/sys/
socket.h
111
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
112
#define CMSG_DATA(cmsg) ((void*)((char*)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
113
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
114
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
/prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/sys/
socket.h
111
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
112
#define CMSG_DATA(cmsg) ((void*)((char*)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
113
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
114
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
/prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/sys/
socket.h
111
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
112
#define CMSG_DATA(cmsg) ((void*)((char*)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
113
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
114
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
/prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/sys/
socket.h
111
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
112
#define CMSG_DATA(cmsg) ((void*)((char*)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
113
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
114
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
Completed in 3601 milliseconds
1
2
3