| /freebsd-12.1/contrib/ntp/libntp/ |
| H A D | adjtime.c | 217 register MsgBuf *msgp = &msg; in _adjtime() local 226 msgp->msgb.mtype = CLIENT; in _adjtime() 227 msgp->msgb.tv = *delta; in _adjtime() 229 msgp->msgb.code = DELTA2; in _adjtime() 231 msgp->msgb.code = DELTA1; in _adjtime() 237 if (msgsnd(mqid, &msgp->msgp, MSGSIZE, 0) == -1) in _adjtime() 240 if (msgrcv(mqid, &msgp->msgp, MSGSIZE, SERVER, 0) == -1) in _adjtime() 242 *olddelta = msgp->msgb.tv; in _adjtime()
|
| /freebsd-12.1/contrib/openpam/lib/libpam/ |
| H A D | pam_vprompt.c | 65 const struct pam_message *msgp; in pam_vprompt() local 83 msgp = &msg; in pam_vprompt() 85 r = (conv->conv)(1, &msgp, &rsp, conv->appdata_ptr); in pam_vprompt()
|
| /freebsd-12.1/sys/kern/ |
| H A D | sysv_msg.c | 1030 msgp = (const char *)msgp + tlen; in kern_msgsnd() 1120 (const char *)uap->msgp + sizeof(mtype), in sys_msgsnd() 1127 void *msgp; member 1378 msgp = (char *)msgp + tlen; in kern_msgrcv() 1404 (char *)uap->msgp + sizeof(mtype), uap->msgsz, in sys_msgrcv() 1790 const void *msgp; in freebsd32_msgsnd() local 1795 msgp = PTRIN(uap->msgp); in freebsd32_msgsnd() 1800 (const char *)msgp + sizeof(mtype32), in freebsd32_msgsnd() 1807 void *msgp; in freebsd32_msgrcv() local 1812 msgp = PTRIN(uap->msgp); in freebsd32_msgrcv() [all …]
|
| H A D | systrace_args.c | 1107 uarg[1] = (intptr_t) p->msgp; /* const void * */ in systrace_args() 1117 uarg[1] = (intptr_t) p->msgp; /* void * */ in systrace_args()
|
| /freebsd-12.1/contrib/openpam/modules/pam_unix/ |
| H A D | pam_unix.c | 72 const struct pam_message *msgp; in pam_sm_authenticate() local 96 msgp = &msg; in pam_sm_authenticate() 104 pam_err = (*conv->conv)(1, &msgp, &resp, conv->appdata_ptr); in pam_sm_authenticate()
|
| /freebsd-12.1/crypto/openssh/openbsd-compat/ |
| H A D | getrrsetbyname.c | 118 _getshort(msgp) in _getshort() argument 119 register const u_char *msgp; in _getshort() 123 GETSHORT(u, msgp); 132 _getlong(msgp) in _getlong() argument 133 register const u_char *msgp; in _getlong() 137 GETLONG(u, msgp);
|
| /freebsd-12.1/sys/compat/linux/ |
| H A D | linux_ipc.c | 653 const void *msgp; in linux_msgsnd() local 660 msgp = PTRIN(args->msgp); in linux_msgsnd() 661 if ((error = copyin(msgp, &lmtype, sizeof(lmtype))) != 0) in linux_msgsnd() 665 (const char *)msgp + sizeof(lmtype), in linux_msgsnd() 672 void *msgp; in linux_msgrcv() local 679 msgp = PTRIN(args->msgp); in linux_msgrcv() 681 (char *)msgp + sizeof(lmtype), args->msgsz, in linux_msgrcv() 685 return (copyout(&lmtype, msgp, sizeof(lmtype))); in linux_msgrcv()
|
| /freebsd-12.1/sys/i386/ibcs2/ |
| H A D | ibcs2_ipc.c | 163 void *msgp; member 176 ap.msgp = uap->msgp; in ibcs2_msgrcv() 186 void *msgp; member 198 ap.msgp = uap->msgp; in ibcs2_msgsnd()
|
| /freebsd-12.1/contrib/ntp/include/ |
| H A D | adjtime.h | 45 struct msgbuf msgp; member
|
| /freebsd-12.1/sys/i386/linux/ |
| H A D | linux_machdep.c | 126 struct l_msgbuf *msgp; member 167 a.msgp = PTRIN(args->ptr); in linux_ipc() 187 a.msgp = PTRIN(tmp.msgp); in linux_ipc() 190 a.msgp = PTRIN(args->ptr); in linux_ipc()
|
| H A D | linux_systrace_args.c | 2881 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args() 2891 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args()
|
| /freebsd-12.1/sys/amd64/linux32/ |
| H A D | linux32_machdep.c | 252 l_uintptr_t msgp; member 293 a.msgp = PTRIN(args->ptr); in linux_ipc() 313 a.msgp = PTRIN(tmp.msgp); in linux_ipc() 316 a.msgp = PTRIN(args->ptr); in linux_ipc()
|
| H A D | linux32_systrace_args.c | 2805 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args() 2815 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args()
|
| H A D | linux32_proto.h | 1420 …char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf… member 1426 …char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf… member
|
| /freebsd-12.1/contrib/ntp/adjtimed/ |
| H A D | adjtimed.c | 219 if (msgrcv(mqid, &msg.msgp, MSGSIZE, CLIENT, 0) == -1) { in main() 235 while (msgsnd(mqid, &msg.msgp, MSGSIZE, 0) == -1) { in main()
|
| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_platform_linux.cc | 321 int ExtractRecvmsgFDs(void *msgp, int *fds, int nfd) { in ExtractRecvmsgFDs() argument 323 msghdr *msg = (msghdr*)msgp; in ExtractRecvmsgFDs()
|
| /freebsd-12.1/contrib/compiler-rt/include/sanitizer/ |
| H A D | linux_syscall_hooks.h | 1286 #define __sanitizer_syscall_pre_msgsnd(msqid, msgp, msgsz, msgflg) \ argument 1287 __sanitizer_syscall_pre_impl_msgsnd((long)(msqid), (long)(msgp), \ 1289 #define __sanitizer_syscall_post_msgsnd(res, msqid, msgp, msgsz, msgflg) \ argument 1290 __sanitizer_syscall_post_impl_msgsnd(res, (long)(msqid), (long)(msgp), \ 1292 #define __sanitizer_syscall_pre_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 1293 __sanitizer_syscall_pre_impl_msgrcv((long)(msqid), (long)(msgp), \ 1296 #define __sanitizer_syscall_post_msgrcv(res, msqid, msgp, msgsz, msgtyp, \ argument 1298 __sanitizer_syscall_post_impl_msgrcv(res, (long)(msqid), (long)(msgp), \ 2732 void __sanitizer_syscall_pre_impl_msgsnd(long msqid, long msgp, long msgsz, 2734 void __sanitizer_syscall_post_impl_msgsnd(long res, long msqid, long msgp, [all …]
|
| H A D | netbsd_syscall_hooks.h | 1154 #define __sanitizer_syscall_pre_msgsnd(msqid, msgp, msgsz, msgflg) \ argument 1155 __sanitizer_syscall_pre_impl_msgsnd((long long)(msqid), (long long)(msgp), \ 1157 #define __sanitizer_syscall_post_msgsnd(res, msqid, msgp, msgsz, msgflg) \ argument 1159 (long long)(msgp), (long long)(msgsz), \ 1161 #define __sanitizer_syscall_pre_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 1162 __sanitizer_syscall_pre_impl_msgrcv((long long)(msqid), (long long)(msgp), \ 1165 #define __sanitizer_syscall_post_msgrcv(res, msqid, msgp, msgsz, msgtyp, \ argument 3573 void __sanitizer_syscall_pre_impl_msgsnd(long long msqid, long long msgp, 3576 long long msgp, long long msgsz, 3578 void __sanitizer_syscall_pre_impl_msgrcv(long long msqid, long long msgp, [all …]
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_syscalls.inc | 2071 PRE_SYSCALL(msgsnd)(long msqid, void *msgp, long msgsz, long msgflg) { 2072 if (msgp) PRE_READ(msgp, msgsz); 2075 POST_SYSCALL(msgsnd)(long res, long msqid, void *msgp, long msgsz, 2078 PRE_SYSCALL(msgrcv)(long msqid, void *msgp, long msgsz, long msgtyp, 2081 POST_SYSCALL(msgrcv)(long res, long msqid, void *msgp, long msgsz, long msgtyp, 2084 if (msgp) POST_WRITE(msgp, res);
|
| /freebsd-12.1/sys/dev/de/ |
| H A D | if_de.c | 3743 const char * const *msgp = tulip_status_bits; in tulip_print_abnormal_interrupt() local 3751 for (sep = " ", mask = 1; mask <= csr; mask <<= 1, msgp++) { in tulip_print_abnormal_interrupt() 3752 if ((csr & mask) && *msgp != NULL) { in tulip_print_abnormal_interrupt() 3753 printf("%s%s", sep, *msgp); in tulip_print_abnormal_interrupt()
|
| /freebsd-12.1/sys/arm64/linux/ |
| H A D | linux_systrace_args.c | 1386 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args() 1397 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args()
|
| H A D | linux_proto.h | 659 …char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf… member 666 …char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf… member
|
| /freebsd-12.1/sys/amd64/linux/ |
| H A D | linux_systrace_args.c | 617 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args() 627 uarg[1] = (intptr_t) p->msgp; /* struct l_msgbuf * */ in systrace_args()
|
| H A D | linux_proto.h | 325 …char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf… member 331 …char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf… member
|
| /freebsd-12.1/sys/compat/freebsd32/ |
| H A D | freebsd32_proto.h | 179 char msgp_l_[PADL_(void *)]; void * msgp; char msgp_r_[PADR_(void *)]; member 185 char msgp_l_[PADL_(void *)]; void * msgp; char msgp_r_[PADR_(void *)]; member
|