Home
last modified time | relevance | path

Searched refs:msgsz (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/ipc/
H A Dmsg.c91 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 Dutil.h283 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 Djobdesc.c176 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 Djobdesc.h31 const uint8_t *msg, uint32_t msgsz, uint8_t *digest,
/openbmc/openbmc-tools/adcapp/src/
H A DEINTR_wrappers.h67 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 DEINTR_wrappers.c428 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 DEINTR_wrappers.h67 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 DEINTR_wrappers.c371 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 Dbmc.c192 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 Dcompat.h746 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
748 compat_ssize_t msgsz, int msgflg);
H A Dsyscalls.h712 size_t msgsz, long msgtyp, int msgflg);
714 size_t msgsz, int msgflg);
1256 long ksys_msgrcv(int msqid, struct msgbuf __user *msgp, size_t msgsz,
1258 long ksys_msgsnd(int msqid, struct msgbuf __user *msgp, size_t msgsz,
/openbmc/qemu/linux-user/
H A Dsyscall.c4244 ssize_t msgsz, int msgflg) in do_msgsnd() argument
4250 if (msgsz < 0) { in do_msgsnd()
4256 host_mb = g_try_malloc(msgsz + sizeof(long)); in do_msgsnd()
4262 memcpy(host_mb->mtext, target_mb->mtext, msgsz); in do_msgsnd()
4265 ret = get_errno(safe_msgsnd(msqid, host_mb, msgsz, msgflg)); in do_msgsnd()
4270 ret = get_errno(safe_ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, in do_msgsnd()
4273 ret = get_errno(safe_ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, in do_msgsnd()
4299 ssize_t msgsz, abi_long msgtyp, in do_msgrcv() argument
4307 if (msgsz < 0) { in do_msgrcv()
4314 host_mb = g_try_malloc(msgsz + sizeof(long)); in do_msgrcv()
[all …]