Lines Matching full:syscall
8 * See asm-generic/syscall.h for descriptions of what we must do here.
32 /* O32 ABI syscall() - Either 64-bit with O32 or 32-bit */ in mips_syscall_is_indirect()
41 return task_thread_info(task)->syscall; in syscall_get_nr()
49 * New syscall number has to be assigned to regs[2] because in syscall_set_nr()
53 * Consequently, if the syscall was indirect and nr != __NR_syscall, in syscall_set_nr()
54 * then after this assignment the syscall will cease to be indirect. in syscall_set_nr()
56 task_thread_info(task)->syscall = regs->regs[2] = nr; in syscall_set_nr()
63 * v0 is the system call number, except for O32 ABI syscall(), where it in mips_syscall_update_nr()
67 task_thread_info(task)->syscall = regs->regs[4]; in mips_syscall_update_nr()
69 task_thread_info(task)->syscall = regs->regs[2]; in mips_syscall_update_nr()
147 /* O32 ABI syscall() */ in syscall_get_arguments()