Home
last modified time | relevance | path

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

/external/ltp/include/
Dtst_safe_sysv_ipc.h31 size_t msgsz, int msgflg);
32 #define SAFE_MSGSND(msqid, msgp, msgsz, msgflg) \ argument
33 safe_msgsnd(__FILE__, __LINE__, (msqid), (msgp), (msgsz), (msgflg))
36 size_t msgsz, long msgtyp, int msgflg);
37 #define SAFE_MSGRCV(msqid, msgp, msgsz, msgtyp, msgflg) \ argument
38 safe_msgrcv(__FILE__, __LINE__, (msqid), (msgp), (msgsz), (msgtyp), (msgflg))
/external/strace/tests-m32/
Dipc_msgbuf.c40 #define msgsz sizeof(text_string) macro
94 char mtext[msgsz]; in main()
111 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main()
114 if (sys_msgrcv(msqid, &msg, msgsz, -mtype, 0) != msgsz) in main()
Dipc.c105 const long msgsz = -3; in main() local
109 msqid, msgsz, IPC_NOWAIT, (long) efault, msgtyp); in main()
111 msqid, efault, msgsz, msgtyp, rc, errno2name()); in main()
/external/strace/tests-mx32/
Dipc_msgbuf.c40 #define msgsz sizeof(text_string) macro
94 char mtext[msgsz]; in main()
111 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main()
114 if (sys_msgrcv(msqid, &msg, msgsz, -mtype, 0) != msgsz) in main()
Dipc.c105 const long msgsz = -3; in main() local
109 msqid, msgsz, IPC_NOWAIT, (long) efault, msgtyp); in main()
111 msqid, efault, msgsz, msgtyp, rc, errno2name()); in main()
/external/strace/tests/
Dipc_msgbuf.c40 #define msgsz sizeof(text_string) macro
94 char mtext[msgsz]; in main()
111 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main()
114 if (sys_msgrcv(msqid, &msg, msgsz, -mtype, 0) != msgsz) in main()
Dipc.c105 const long msgsz = -3; in main() local
109 msqid, msgsz, IPC_NOWAIT, (long) efault, msgtyp); in main()
111 msqid, efault, msgsz, msgtyp, rc, errno2name()); in main()
/external/ltp/lib/
Dtst_safe_sysv_ipc.c58 size_t msgsz, int msgflg) in safe_msgsnd() argument
62 rval = msgsnd(msqid, msgp, msgsz, msgflg); in safe_msgsnd()
66 file, lineno, msqid, msgp, msgsz, msgflg); in safe_msgsnd()
73 size_t msgsz, long msgtyp, int msgflg) in safe_msgrcv() argument
77 rval = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in safe_msgrcv()
81 file, lineno, msqid, msgp, msgsz, msgtyp, msgflg); in safe_msgrcv()
/external/u-boot/drivers/crypto/fsl/
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()
Djobdesc.h31 const uint8_t *msg, uint32_t msgsz, uint8_t *digest,
/external/ltp/testcases/kernel/syscalls/ipc/msgsnd/
Dmsgsnd02.c61 int msgsz; member
76 TEST(msgsnd(*tc->id, tc->buffer, tc->msgsz, 0)); in verify_msgsnd()
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h1286 #define __sanitizer_syscall_pre_msgsnd(msqid, msgp, msgsz, msgflg) \ argument
1288 (long)(msgsz), (long)(msgflg))
1289 #define __sanitizer_syscall_post_msgsnd(res, msqid, msgp, msgsz, msgflg) \ argument
1291 (long)(msgsz), (long)(msgflg))
1292 #define __sanitizer_syscall_pre_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) \ argument
1294 (long)(msgsz), (long)(msgtyp), \
1296 #define __sanitizer_syscall_post_msgrcv(res, msqid, msgp, msgsz, msgtyp, \ argument
1299 (long)(msgsz), (long)(msgtyp), \
2732 void __sanitizer_syscall_pre_impl_msgsnd(long msqid, long msgp, long msgsz,
2735 long msgsz, long msgflg);
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc2071 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,