/src/sys/arch/rs6000/stand/boot/ |
boot.c | 151 struct ipl_info *infop; local in function:boot 173 infop = (struct ipl_info *)((char *)iplcb_p + dirp->iplinfo_off); 174 printf("Machine model = 0x%x\n", infop->model); 175 printf("RAM = 0x%x\n", infop->ram_size);
|
/src/sys/arch/evbmips/rmixl/ |
machdep.c | 231 mach_init(int argc, int32_t *argv, void *envp, int64_t infop) 265 memsize = rmixlfw_init(infop); 660 rmixlfw_init(int64_t infop) 668 infop |= MIPS_KSEG0_START; 669 rcp->rc_psb_info = *(rmixlfw_info_t *)(intptr_t)infop; 706 rmixl_puthex64((uint64_t)(intptr_t)infop);
|
/src/tests/lib/libc/db/ |
h_db.c | 90 static void *infop; /* Iflags. */ variable in typeref:typename:void * 154 infop = NULL; 159 infop = setinfo(type, p); 177 oflags, S_IRUSR | S_IWUSR, type, infop)) == NULL)
|
/src/lib/libc/rpc/ |
clnt_vc.c | 538 void *infop = info; local in function:clnt_vc_control 582 ct->ct_wait = *(struct timeval *)infop; 586 *(struct timeval *)infop = ct->ct_wait;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_syscalls.inc | 642 PRE_SYSCALL(waitid)(long which, long pid, void *infop, long options, void *ru) { 645 POST_SYSCALL(waitid)(long res, long which, long pid, void *infop, long options, 648 if (infop) POST_WRITE(infop, siginfo_t_sz);
|
sanitizer_common_interceptors.inc | 2388 INTERCEPTOR_WITH_SUFFIX(int, waitid, int idtype, long long id, void *infop, 2391 INTERCEPTOR_WITH_SUFFIX(int, waitid, int idtype, int id, void *infop, 2395 COMMON_INTERCEPTOR_ENTER(ctx, waitid, idtype, id, infop, options); 2399 int res = REAL(waitid)(idtype, id, infop, options); 2400 if (res != -1 && infop) 2401 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, infop, siginfo_t_sz);
|
/src/sys/external/bsd/compiler_rt/dist/include/sanitizer/ |
linux_syscall_hooks.h | 350 #define __sanitizer_syscall_pre_waitid(which, pid, infop, options, ru) \ 352 (long)(which), (long)(pid), (long)(infop), (long)(options), (long)(ru)) 353 #define __sanitizer_syscall_post_waitid(res, which, pid, infop, options, ru) \ 355 (long)(infop), (long)(options), \ 2204 void __sanitizer_syscall_pre_impl_waitid(long which, long pid, long infop, 2207 long infop, long options, long ru);
|
/src/sys/compat/linux/common/ |
linux_misc.c | 276 syscallarg(linux_siginfo_t *) infop; 319 if (error == 0 && SCARG(uap, infop) != NULL) { 322 error = copyout(&linux_info, SCARG(uap, infop), sizeof(linux_info));
|
/src/sys/compat/linux/arch/aarch64/ |
linux_syscallargs.h | 459 syscallarg(linux_siginfo_t *) infop;
|
linux_systrace_args.c | 675 uarg[2] = (intptr_t) SCARG(p, infop); /* linux_siginfo_t * */
|
/src/sys/compat/linux/arch/alpha/ |
linux_syscallargs.h | 1110 syscallarg(linux_siginfo_t *) infop;
|
/src/sys/compat/linux/arch/amd64/ |
linux_syscallargs.h | 1000 syscallarg(linux_siginfo_t *) infop;
|
linux_systrace_args.c | 1718 uarg[2] = (intptr_t) SCARG(p, infop); /* linux_siginfo_t * */
|
/src/sys/compat/linux/arch/arm/ |
linux_syscallargs.h | 1074 syscallarg(linux_siginfo_t *) infop;
|
linux_systrace_args.c | 1817 uarg[2] = (intptr_t) SCARG(p, infop); /* linux_siginfo_t * */
|
/src/sys/compat/linux/arch/i386/ |
linux_syscallargs.h | 1121 syscallarg(linux_siginfo_t *) infop;
|
linux_systrace_args.c | 1880 uarg[2] = (intptr_t) SCARG(p, infop); /* linux_siginfo_t * */
|
/src/sys/compat/linux/arch/mips/ |
linux_syscallargs.h | 1115 syscallarg(linux_siginfo_t *) infop;
|
/src/sys/compat/linux/arch/powerpc/ |
linux_syscallargs.h | 1007 syscallarg(linux_siginfo_t *) infop;
|