tag | line | file | source code |
atype | 153 | include/linux/unistd.h | #define _syscall1(type,name,atype,a) \ |
atype | 154 | include/linux/unistd.h | type name(atype a) \ |
atype | 166 | include/linux/unistd.h | #define _syscall2(type,name,atype,a,btype,b) \ |
atype | 167 | include/linux/unistd.h | type name(atype a,btype b) \ |
atype | 179 | include/linux/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
atype | 180 | include/linux/unistd.h | type name(atype a,btype b,ctype c) \ |
atype | 192 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
atype | 193 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
atype | 206 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
atype | 207 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |