Lines Matching defs:md_syscall
50 void (*md_syscall)(struct trapframe *) = NULL;
69 md_syscall = NULL;
71 md_syscall = sce->sce_md_syscall;
74 md_syscall = p->p_md.md_syscall;
77 if (md_syscall == NULL) {
89 KASSERT(md_syscall != NULL);
90 md_syscall(frame);
95 * Set p_md.md_syscall to our syscall filter, and return a pointer to the
103 osyscall = p->p_md.md_syscall;
104 p->p_md.md_syscall = x86_syscall_emu;