tag | line | file | source code |
atype | 161 | include/linux/unistd.h | #define _syscall1(type,name,atype,a) \ |
atype | 162 | include/linux/unistd.h | type name(atype a) \ |
atype | 174 | include/linux/unistd.h | #define _syscall2(type,name,atype,a,btype,b) \ |
atype | 175 | include/linux/unistd.h | type name(atype a,btype b) \ |
atype | 187 | include/linux/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
atype | 188 | include/linux/unistd.h | type name(atype a,btype b,ctype c) \ |
atype | 200 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
atype | 201 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
atype | 214 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
atype | 215 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |