HomeSort by: relevance | last modified time | path
    Searched defs:ucp (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/sys/arch/usermode/usermode/
process_machdep.c 92 ucontext_t *ucp; local in function:process_read_regs
95 ucp = &pcb->pcb_userret_ucp;
96 reg = (register_t *) &ucp->uc_mcontext.__gregs;
107 ucontext_t *ucp; local in function:process_read_fpregs
110 ucp = &pcb->pcb_userret_ucp;
111 reg = (register_t *) &ucp->uc_mcontext.__fpregs;
process_machdep.c 92 ucontext_t *ucp; local in function:process_read_regs
95 ucp = &pcb->pcb_userret_ucp;
96 reg = (register_t *) &ucp->uc_mcontext.__gregs;
107 ucontext_t *ucp; local in function:process_read_fpregs
110 ucp = &pcb->pcb_userret_ucp;
111 reg = (register_t *) &ucp->uc_mcontext.__fpregs;
syscall.c 53 ucontext_t *ucp = &pcb->pcb_userret_ucp; local in function:md_child_return
58 md_syscall_set_returnargs(l, ucp, 0, rval);
89 ucontext_t *ucp = &pcb->pcb_userret_ucp; local in function:syscall
101 md_syscall_get_opcode(ucp, &opcode);
102 md_syscall_get_syscallnumber(ucp, &code);
111 error = md_syscall_getargs(l, ucp, nargs, argsize, args);
128 md_syscall_inc_pc(ucp, opcode);
141 md_syscall_set_returnargs(l, ucp, error, rval);
146 md_syscall_dec_pc(ucp, opcode);
syscall.c 53 ucontext_t *ucp = &pcb->pcb_userret_ucp; local in function:md_child_return
58 md_syscall_set_returnargs(l, ucp, 0, rval);
89 ucontext_t *ucp = &pcb->pcb_userret_ucp; local in function:syscall
101 md_syscall_get_opcode(ucp, &opcode);
102 md_syscall_get_syscallnumber(ucp, &code);
111 error = md_syscall_getargs(l, ucp, nargs, argsize, args);
128 md_syscall_inc_pc(ucp, opcode);
141 md_syscall_set_returnargs(l, ucp, error, rval);
146 md_syscall_dec_pc(ucp, opcode);
  /src/usr.sbin/mopd/common/
dl.c 44 const u_char *ucp; local in function:mopDumpDL
292 ucp = pkt + idx; idx = idx + 10;
294 mopPrintTime(fd, ucp);
dl.c 44 const u_char *ucp; local in function:mopDumpDL
292 ucp = pkt + idx; idx = idx + 10;
294 mopPrintTime(fd, ucp);
print.c 441 const u_char *ucp; local in function:mopPrintInfo
485 ucp = pkt + *idx; *idx = *idx + 6;
487 mopPrintHWA(fd, ucp);
506 ucp = pkt + *idx; *idx = *idx + 6;
508 mopPrintHWA(fd, ucp);
512 ucp = pkt + *idx; *idx = *idx + 10;
514 mopPrintTime(fd, ucp);
607 ucp = pkt + *idx;
613 (void)fprintf(fd,"%c",ucp[i]);
618 ucp = pkt + *idx
    [all...]
print.c 441 const u_char *ucp; local in function:mopPrintInfo
485 ucp = pkt + *idx; *idx = *idx + 6;
487 mopPrintHWA(fd, ucp);
506 ucp = pkt + *idx; *idx = *idx + 6;
508 mopPrintHWA(fd, ucp);
512 ucp = pkt + *idx; *idx = *idx + 10;
514 mopPrintTime(fd, ucp);
607 ucp = pkt + *idx;
613 (void)fprintf(fd,"%c",ucp[i]);
618 ucp = pkt + *idx
    [all...]
  /src/sys/arch/aarch64/aarch64/
sig_machdep.c 70 const vaddr_t ucp = sp; local in function:sendsig_siginfo
91 error = copyout(&uc, (void *)ucp, sizeof(uc));
111 tf->tf_reg[2] = ucp;
112 tf->tf_reg[28] = ucp; /* put in a callee saved register */
sig_machdep.c 70 const vaddr_t ucp = sp; local in function:sendsig_siginfo
91 error = copyout(&uc, (void *)ucp, sizeof(uc));
111 tf->tf_reg[2] = ucp;
112 tf->tf_reg[28] = ucp; /* put in a callee saved register */
  /src/sys/fs/adosfs/
adlookup.c 78 kauth_cred_t ucp; /* lookup credentials */ local in function:adosfs_lookup
90 ucp = cnp->cn_cred;
101 if ((error = VOP_ACCESS(vdp, VEXEC, ucp)) != 0)
205 if ((error = VOP_ACCESS(vdp, VWRITE, ucp)) != 0) {
226 if ((error = VOP_ACCESS(vdp, VWRITE, ucp)) != 0) {
237 if ((error = VOP_ACCESS(vdp, VWRITE, ucp)) != 0) {
adlookup.c 78 kauth_cred_t ucp; /* lookup credentials */ local in function:adosfs_lookup
90 ucp = cnp->cn_cred;
101 if ((error = VOP_ACCESS(vdp, VEXEC, ucp)) != 0)
205 if ((error = VOP_ACCESS(vdp, VWRITE, ucp)) != 0) {
226 if ((error = VOP_ACCESS(vdp, VWRITE, ucp)) != 0) {
237 if ((error = VOP_ACCESS(vdp, VWRITE, ucp)) != 0) {
  /src/sys/arch/powerpc/powerpc/
sig_machdep.c 76 vaddr_t sp, sip, ucp; local in function:sendsig_siginfo
101 ucp = sp + sizeof(siginfo_t);
104 KASSERT((ucp & (CALLFRAMELEN-1)) == 0);
128 copyout(&uc, (void *)ucp, sizeof(uc)) != 0);
149 tf->tf_fixreg[5] = (register_t)ucp;
150 /* Preserve ucp across call to signal function */
151 tf->tf_fixreg[30] = (register_t)ucp;
sig_machdep.c 76 vaddr_t sp, sip, ucp; local in function:sendsig_siginfo
101 ucp = sp + sizeof(siginfo_t);
104 KASSERT((ucp & (CALLFRAMELEN-1)) == 0);
128 copyout(&uc, (void *)ucp, sizeof(uc)) != 0);
149 tf->tf_fixreg[5] = (register_t)ucp;
150 /* Preserve ucp across call to signal function */
151 tf->tf_fixreg[30] = (register_t)ucp;
  /src/sys/arch/vax/vax/
sig_machdep.c 146 vaddr_t ucp; /* Pointer to ucontext_t */ member in struct:trampoline3
165 sp -= sizeof(uc); tramp.ucp = sp;
183 error = (copyout(&uc, (char *)tramp.ucp, sizeof(uc)) != 0 ||
sig_machdep.c 146 vaddr_t ucp; /* Pointer to ucontext_t */ member in struct:trampoline3
165 sp -= sizeof(uc); tramp.ucp = sp;
183 error = (copyout(&uc, (char *)tramp.ucp, sizeof(uc)) != 0 ||
  /src/sys/arch/i386/stand/pxeboot/
pxe.c 288 uint8_t cksum, *ucp; local in function:pxe_init
311 for (i = 0, ucp = (uint8_t *)cp, cksum = 0;
313 cksum += ucp[i];
328 for (i = 0, ucp = (uint8_t *)cp, cksum = 0;
330 cksum += ucp[i];
pxe.c 288 uint8_t cksum, *ucp; local in function:pxe_init
311 for (i = 0, ucp = (uint8_t *)cp, cksum = 0;
313 cksum += ucp[i];
328 for (i = 0, ucp = (uint8_t *)cp, cksum = 0;
330 cksum += ucp[i];
  /src/sys/arch/usermode/target/i386/
cpu_i386.c 84 ucontext_t *sf_ucp; /* "ucp" argument for handler */
104 ucontext_t *ucp; local in function:sendsig_siginfo
110 ucp = &pcb->pcb_userret_ucp;
111 reg = (register_t *) &ucp->uc_mcontext.__gregs;
142 memcpy(&frame.sf_uc, ucp, sizeof(ucontext_t));
178 ucontext_t *ucp; local in function:setregs
192 ucp = &pcb->pcb_userret_ucp;
193 reg = (int *) &ucp->uc_mcontext.__gregs;
198 ucp->uc_stack.ss_sp = (void *) (stack-4); /* to prevent clearing */
199 ucp->uc_stack.ss_size = 0; //pack->ep_ssize
    [all...]
cpu_i386.c 84 ucontext_t *sf_ucp; /* "ucp" argument for handler */
104 ucontext_t *ucp; local in function:sendsig_siginfo
110 ucp = &pcb->pcb_userret_ucp;
111 reg = (register_t *) &ucp->uc_mcontext.__gregs;
142 memcpy(&frame.sf_uc, ucp, sizeof(ucontext_t));
178 ucontext_t *ucp; local in function:setregs
192 ucp = &pcb->pcb_userret_ucp;
193 reg = (int *) &ucp->uc_mcontext.__gregs;
198 ucp->uc_stack.ss_sp = (void *) (stack-4); /* to prevent clearing */
199 ucp->uc_stack.ss_size = 0; //pack->ep_ssize
    [all...]
  /src/sys/arch/usermode/target/x86_64/
cpu_x86_64.c 100 ucontext_t *ucp; local in function:sendsig_siginfo
107 ucp = &pcb->pcb_userret_ucp;
108 reg = (register_t *) &ucp->uc_mcontext.__gregs;
140 memcpy(&frame.sf_uc, ucp, sizeof(ucontext_t));
180 ucontext_t *ucp; local in function:setregs
185 ucp = &pcb->pcb_userret_ucp;
186 reg = (register_t *) &ucp->uc_mcontext.__gregs;
195 ucp->uc_stack.ss_sp = (void *) stack;
196 ucp->uc_stack.ss_size = pack->ep_ssize;
202 md_syscall_get_syscallnumber(ucontext_t *ucp, uint32_t *code
    [all...]
cpu_x86_64.c 100 ucontext_t *ucp; local in function:sendsig_siginfo
107 ucp = &pcb->pcb_userret_ucp;
108 reg = (register_t *) &ucp->uc_mcontext.__gregs;
140 memcpy(&frame.sf_uc, ucp, sizeof(ucontext_t));
180 ucontext_t *ucp; local in function:setregs
185 ucp = &pcb->pcb_userret_ucp;
186 reg = (register_t *) &ucp->uc_mcontext.__gregs;
195 ucp->uc_stack.ss_sp = (void *) stack;
196 ucp->uc_stack.ss_size = pack->ep_ssize;
202 md_syscall_get_syscallnumber(ucontext_t *ucp, uint32_t *code
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_linux.cc 237 ucontext_t *ucp = (ucontext_t*)context; local in function:__asan::ReadContextStack
238 *stack = (uptr)ucp->uc_stack.ss_sp;
239 *ssize = ucp->uc_stack.ss_size;
asan_linux.cc 237 ucontext_t *ucp = (ucontext_t*)context; local in function:__asan::ReadContextStack
238 *stack = (uptr)ucp->uc_stack.ss_sp;
239 *ssize = ucp->uc_stack.ss_size;
  /src/usr.sbin/mopd/mopd/
process.c 66 const u_char *ucp; local in function:mopProcessInfo
97 ucp = pkt + *idx; *idx = *idx + 6;
109 ucp = pkt + *idx; *idx = *idx + 6;
112 ucp = pkt + *idx; *idx = *idx + 10;
119 ucp = pkt + *idx; *idx = *idx + tmpc;
140 ucp = pkt + *idx;
144 ucp = pkt + *idx;
151 ucp = pkt + *idx;
155 ucp = pkt + *idx;
160 ucp = pkt + *idx; *idx = *idx + ilen
    [all...]

Completed in 29 milliseconds

1 2