Lines Matching refs:abi
85 #define __SYS_STUB0(abi, name) \
86 long __##abi##_##name(const struct pt_regs *regs); \
87 ALLOW_ERROR_INJECTION(__##abi##_##name, ERRNO); \
88 long __##abi##_##name(const struct pt_regs *regs) \
91 #define __SYS_STUBx(abi, name, ...) \
92 long __##abi##_##name(const struct pt_regs *regs); \
93 ALLOW_ERROR_INJECTION(__##abi##_##name, ERRNO); \
94 long __##abi##_##name(const struct pt_regs *regs) \
99 #define __COND_SYSCALL(abi, name) \
100 __weak long __##abi##_##name(const struct pt_regs *__unused) \
105 #define __SYS_NI(abi, name) \
106 SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers);