| /src/sys/compat/linux/common/ |
| linux_shm.h | 110 syscallarg(void *) shmaddr; member in struct:linux_sys_shmat_args
|
| linux_ipccall.c | 148 SCARG(&bsa, shmaddr) = (void *)SCARG(uap, ptr); 272 SCARG(&bsa, shmaddr) = SCARG(uap, ptr);
|
| /src/sys/compat/common/ |
| kern_ipc_10.c | 145 syscallarg(void *) shmaddr; 154 syscallarg(void *) shmaddr; 165 SCARG(&shmat_args, shmaddr) = 178 SCARG(&shmdt_args, shmaddr) =
|
| /src/sys/compat/freebsd/ |
| freebsd_ipc.c | 126 syscallarg(void *) shmaddr; 135 syscallarg(void *) shmaddr; 146 SCARG(&shmat_args, shmaddr) = (void *)SCARG(uap, a3); 155 SCARG(&shmdt_args, shmaddr) = (void *)SCARG(uap, a2);
|
| /src/sys/compat/netbsd32/ |
| netbsd32_compat_10_sysv.c | 133 syscallarg(void *) shmaddr; 142 syscallarg(void *) shmaddr; 153 SCARG(&shmat_args, shmaddr) = NETBSD32IPTR64(SCARG(uap, a3)); 164 SCARG(&shmdt_args, shmaddr) = NETBSD32IPTR64(SCARG(uap, a2));
|
| netbsd32_ipc.c | 428 syscallarg(const netbsd32_voidp) shmaddr; 434 NETBSD32TOP_UAP(shmaddr, void); 476 syscallarg(const netbsd32_voidp) shmaddr; 480 NETBSD32TOP_UAP(shmaddr, const char);
|
| netbsd32_syscallargs.h | 1198 syscallarg(netbsd32_voidp) shmaddr; member in struct:netbsd32_shmat_args 1211 syscallarg(netbsd32_voidp) shmaddr; member in struct:netbsd32_shmdt_args
|
| netbsd32_systrace_args.c | 1617 uarg[1] = (intptr_t) SCARG(p, shmaddr).i32; /* netbsd32_voidp */ 1634 uarg[0] = (intptr_t) SCARG(p, shmaddr).i32; /* netbsd32_voidp */
|
| /src/sys/kern/ |
| sysv_shm.c | 308 syscallarg(const void *) shmaddr; 330 if (shmmap_se->va == (vaddr_t)SCARG(uap, shmaddr)) 341 if (shmmap_se->va == (vaddr_t)SCARG(uap, shmaddr)) 375 syscallarg(const void *) shmaddr; 420 if (SCARG(uap, shmaddr)) { 424 (vaddr_t)SCARG(uap, shmaddr) & ~(SHMLBA-1); 425 else if (((vaddr_t)SCARG(uap, shmaddr) & (SHMLBA-1)) == 0) 426 attach_va = (vaddr_t)SCARG(uap, shmaddr);
|
| systrace_args.c | 1678 uarg[1] = (intptr_t) SCARG(p, shmaddr); /* const void * */ 1695 uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */
|
| /src/sys/compat/ultrix/ |
| ultrix_misc.c | 658 SCARG(&shmat_args, shmaddr) = (void *)SCARG(uap, a3); 669 SCARG(&shmat_args, shmaddr) = (void *)SCARG(uap, a2);
|
| /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/ |
| linux_syscall_hooks.h | 1329 #define __sanitizer_syscall_pre_shmat(shmid, shmaddr, shmflg) \ 1330 __sanitizer_syscall_pre_impl_shmat((long)(shmid), (long)(shmaddr), \ 1332 #define __sanitizer_syscall_post_shmat(res, shmid, shmaddr, shmflg) \ 1333 __sanitizer_syscall_post_impl_shmat(res, (long)(shmid), (long)(shmaddr), \ 1340 #define __sanitizer_syscall_pre_shmdt(shmaddr) \ 1341 __sanitizer_syscall_pre_impl_shmdt((long)(shmaddr)) 1342 #define __sanitizer_syscall_post_shmdt(res, shmaddr) \ 1343 __sanitizer_syscall_post_impl_shmdt(res, (long)(shmaddr)) 2757 void __sanitizer_syscall_pre_impl_shmat(long shmid, long shmaddr, long shmflg); 2758 void __sanitizer_syscall_post_impl_shmat(long res, long shmid, long shmaddr, [all...] |
| netbsd_syscall_hooks.h | 1170 #define __sanitizer_syscall_pre_shmat(shmid, shmaddr, shmflg) \ 1171 __sanitizer_syscall_pre_impl_shmat((long long)(shmid), (long long)(shmaddr), \ 1173 #define __sanitizer_syscall_post_shmat(res, shmid, shmaddr, shmflg) \ 1175 res, (long long)(shmid), (long long)(shmaddr), (long long)(shmflg)) 1182 #define __sanitizer_syscall_pre_shmdt(shmaddr) \ 1183 __sanitizer_syscall_pre_impl_shmdt((long long)(shmaddr)) 1184 #define __sanitizer_syscall_post_shmdt(res, shmaddr) \ 1185 __sanitizer_syscall_post_impl_shmdt(res, (long long)(shmaddr)) 3584 void __sanitizer_syscall_pre_impl_shmat(long long shmid, long long shmaddr, 3587 long long shmaddr, long long shmflg) [all...] |
| /src/sys/compat/linux32/common/ |
| linux32_ipccall.c | 619 SCARG(&ua, shmaddr) = SCARG_P32(uap, ptr); 640 SCARG(&ua, shmaddr) = SCARG_P32(uap, ptr);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| msan_interceptors.cc | 1469 INTERCEPTOR(void *, shmat, int shmid, const void *shmaddr, int shmflg) { 1471 void *p = REAL(shmat)(shmid, shmaddr, shmflg);
|
| /src/sys/compat/linux/arch/aarch64/ |
| linux_systrace_args.c | 1426 uarg[1] = (intptr_t) SCARG(p, shmaddr); /* void * */ 1434 uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */
|
| /src/sys/compat/linux/arch/amd64/ |
| linux_systrace_args.c | 281 uarg[1] = (intptr_t) SCARG(p, shmaddr); /* void * */ 595 uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */
|
| /src/sys/sys/ |
| syscallargs.h | 1458 syscallarg(const void *) shmaddr; member in struct:sys_shmat_args 1475 syscallarg(const void *) shmaddr; member in struct:sys_shmdt_args
|