Lines Matching defs:call
20 int ksys_ipc(unsigned int call, int first, unsigned long second,
25 version = call >> 16; /* hack for backward compatibility */
26 call &= 0xffff;
28 switch (call) {
110 SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second,
113 return ksys_ipc(call, first, second, third, ptr, fifth);
130 int compat_ksys_ipc(u32 call, int first, int second,
136 version = call >> 16; /* hack for backward compatibility */
137 call &= 0xffff;
139 switch (call) {
205 COMPAT_SYSCALL_DEFINE6(ipc, u32, call, int, first, int, second,
208 return compat_ksys_ipc(call, first, second, third, ptr, fifth);