/external/ltp/include/ |
D | tst_safe_sysv_ipc.h | 31 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/ |
D | ipc_msgbuf.c | 40 #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()
|
D | ipc.c | 105 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/ |
D | ipc_msgbuf.c | 40 #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()
|
D | ipc.c | 105 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/ |
D | ipc_msgbuf.c | 40 #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()
|
D | ipc.c | 105 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/ |
D | tst_safe_sysv_ipc.c | 58 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/ |
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()
|
D | jobdesc.h | 31 const uint8_t *msg, uint32_t msgsz, uint8_t *digest,
|
/external/ltp/testcases/kernel/syscalls/ipc/msgsnd/ |
D | msgsnd02.c | 61 int msgsz; member 76 TEST(msgsnd(*tc->id, tc->buffer, tc->msgsz, 0)); in verify_msgsnd()
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 1286 #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/ |
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,
|