/external/ltp/include/ |
D | tst_safe_sysv_ipc.h | 26 size_t msgsz, int msgflg); 27 #define SAFE_MSGSND(msqid, msgp, msgsz, msgflg) \ argument 28 safe_msgsnd(__FILE__, __LINE__, (msqid), (msgp), (msgsz), (msgflg)) 31 size_t msgsz, long msgtyp, int msgflg); 32 #define SAFE_MSGRCV(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 33 safe_msgrcv(__FILE__, __LINE__, (msqid), (msgp), (msgsz), (msgtyp), (msgflg))
|
/external/strace/tests/ |
D | ipc_msgbuf.c | 36 #define msgsz sizeof(text_string) macro 53 char mtext[msgsz]; in main() 62 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main() 64 if (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 | 36 #define msgsz sizeof(text_string) macro 53 char mtext[msgsz]; in main() 62 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main() 64 if (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-m32/ |
D | ipc_msgbuf.c | 36 #define msgsz sizeof(text_string) macro 53 char mtext[msgsz]; in main() 62 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main() 64 if (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 | 39 size_t msgsz, int msgflg) in safe_msgsnd() argument 43 rval = msgsnd(msqid, msgp, msgsz, msgflg); in safe_msgsnd() 47 file, lineno, msqid, msgp, msgsz, msgflg); in safe_msgsnd() 54 size_t msgsz, long msgtyp, int msgflg) in safe_msgrcv() argument 58 rval = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in safe_msgrcv() 62 file, lineno, msqid, msgp, msgsz, msgtyp, msgflg); in safe_msgrcv()
|
/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,
|
/external/valgrind/coregrind/m_syswrap/ |
D | syswrap-linux.c | 4397 int, msqid, struct msgbuf *, msgp, vki_size_t, msgsz, int, msgflg); in PRE() 4408 int, msqid, struct msgbuf *, msgp, vki_size_t, msgsz, in PRE()
|