/openbmc/linux/ipc/ |
H A D | msg.c | 91 size_t msgsz; member 197 mss->msgsz = msgsz; in ss_add() 849 size_t msgsz, int msgflg) in do_msgsnd() argument 859 if (msgsz > ns->msg_ctlmax || (long) msgsz < 0 || msqid < 0) in do_msgsnd() 869 msg->m_ts = msgsz; in do_msgsnd() 907 ss_add(msq, &s, msgsz); in do_msgsnd() 942 msq->q_cbytes += msgsz; in do_msgsnd() 1029 size_t msgsz; in do_msg_fill() local 1037 return msgsz; in do_msg_fill() 1280 size_t msgsz; in compat_do_msg_fill() local [all …]
|
H A D | util.h | 283 long compat_ksys_msgrcv(int msqid, compat_uptr_t msgp, compat_ssize_t msgsz, 286 compat_ssize_t msgsz, int msgflg);
|
/openbmc/u-boot/drivers/crypto/fsl/ |
H A D | jobdesc.c | 176 const uint8_t *msg, uint32_t msgsz, uint8_t *digest, in inline_cnstr_jobdesc_hash() argument 195 if (msgsz > 0xffff) { in inline_cnstr_jobdesc_hash() 198 append_cmd(desc, msgsz); in inline_cnstr_jobdesc_hash() 200 append_fifo_load(desc, dma_addr_in, msgsz, options); in inline_cnstr_jobdesc_hash()
|
H A D | jobdesc.h | 31 const uint8_t *msg, uint32_t msgsz, uint8_t *digest,
|
/openbmc/openbmc-tools/adcapp/src/ |
H A D | EINTR_wrappers.h | 67 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); 81 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
|
H A D | EINTR_wrappers.c | 428 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) in sigwrap_msgsnd() argument 432 int Result = msgsnd(msqid, msgp, msgsz, msgflg); in sigwrap_msgsnd() 443 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in sigwrap_msgrcv() argument 447 ssize_t Result = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in sigwrap_msgrcv()
|
/openbmc/openbmc-tools/pwmtachtool/src/ |
H A D | EINTR_wrappers.h | 67 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); 81 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
|
H A D | EINTR_wrappers.c | 371 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) in sigwrap_msgsnd() argument 375 int Result = msgsnd(msqid, msgp, msgsz, msgflg); in sigwrap_msgsnd() 386 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in sigwrap_msgrcv() argument 390 ssize_t Result = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in sigwrap_msgrcv()
|
/openbmc/ipmitool/src/plugins/bmc/ |
H A D | bmc.c | 192 int msgsz = offsetof(bmc_msg_t, msg) + sizeof(bmc_req_t) + in ipmi_bmc_send_cmd_putmsg() local 195 bmc_msg_t *msg = malloc(msgsz); in ipmi_bmc_send_cmd_putmsg() 209 sb.len = msgsz; in ipmi_bmc_send_cmd_putmsg()
|
/openbmc/linux/include/linux/ |
H A D | compat.h | 746 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg); 748 compat_ssize_t msgsz, int msgflg);
|
H A D | syscalls.h | 712 size_t msgsz, long msgtyp, int msgflg); 714 size_t msgsz, int msgflg); 1262 long ksys_msgrcv(int msqid, struct msgbuf __user *msgp, size_t msgsz, 1264 long ksys_msgsnd(int msqid, struct msgbuf __user *msgp, size_t msgsz,
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 4238 ssize_t msgsz, int msgflg) in do_msgsnd() argument 4244 if (msgsz < 0) { in do_msgsnd() 4250 host_mb = g_try_malloc(msgsz + sizeof(long)); in do_msgsnd() 4256 memcpy(host_mb->mtext, target_mb->mtext, msgsz); in do_msgsnd() 4259 ret = get_errno(safe_msgsnd(msqid, host_mb, msgsz, msgflg)); in do_msgsnd() 4264 ret = get_errno(safe_ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, in do_msgsnd() 4267 ret = get_errno(safe_ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, in do_msgsnd() 4293 ssize_t msgsz, abi_long msgtyp, in do_msgrcv() argument 4301 if (msgsz < 0) { in do_msgrcv() 4308 host_mb = g_try_malloc(msgsz + sizeof(long)); in do_msgrcv() [all …]
|