/openbsd/lib/libc/sys/ |
H A D | w_msgrcv.c | 22 msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in msgrcv() argument 27 ret = HIDDEN(msgrcv)(msqid, msgp, msgsz, msgtyp, msgflg); in msgrcv()
|
/openbsd/sys/kern/ |
H A D | sysv_msg.c | 318 long msgtyp = SCARG(uap, msgtyp); in sys_msgrcv() local 330 while ((msg = msg_lookup(que, msgtyp)) == NULL) { in sys_msgrcv() 510 msg_lookup(struct que *que, int msgtyp) in msg_lookup() argument 521 if (msgtyp == 0 || msgtyp == msg->msg_type || in msg_lookup() 522 (msgtyp < 0 && -msgtyp <= msg->msg_type)) in msg_lookup()
|
/openbsd/gnu/llvm/compiler-rt/include/sanitizer/ |
H A D | linux_syscall_hooks.h | 1300 #define __sanitizer_syscall_pre_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 1302 (long)(msgsz), (long)(msgtyp), \ 1304 #define __sanitizer_syscall_post_msgrcv(res, msqid, msgp, msgsz, msgtyp, \ argument 1307 (long)(msgsz), (long)(msgtyp), \ 2752 long msgtyp, long msgflg); 2754 long msgsz, long msgtyp, long msgflg);
|
H A D | netbsd_syscall_hooks.h | 1187 #define __sanitizer_syscall_pre_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 1189 (long long)(msgsz), (long long)(msgtyp), \ 1191 #define __sanitizer_syscall_post_msgrcv(res, msqid, msgp, msgsz, msgtyp, \ argument 1195 (long long)(msgtyp), (long long)(msgflg)) 3751 long long msgsz, long long msgtyp, 3755 long long msgtyp, long long msgflg);
|
/openbsd/gnu/usr.bin/perl/ |
H A D | syscall_emulator.c | 1119 long msgtyp = (long)va_arg(args, long); in syscall_emulator() local 1121 ret = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in syscall_emulator()
|
/openbsd/sys/sys/ |
H A D | syscallargs.h | 915 syscallarg(long) msgtyp;
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 2278 (long msqid, void *msgp, long msgsz, long msgtyp, long msgflg) {} 2281 (long res, long msqid, void *msgp, long msgsz, long msgtyp, long msgflg) {
|
H A D | sanitizer_common_interceptors.inc | 3345 long msgtyp, int msgflg) { 3347 COMMON_INTERCEPTOR_ENTER(ctx, msgrcv, msqid, msgp, msgsz, msgtyp, msgflg); 3348 SSIZE_T len = REAL(msgrcv)(msqid, msgp, msgsz, msgtyp, msgflg);
|