/third_party/ltp/testcases/kernel/syscalls/ipc/msgsnd/ |
H A D | msgsnd06.c | 9 * msgsnd() was trying to send a message. 31 TST_EXP_FAIL(msgsnd(queue_id, &snd_buf, MSGSIZE, 0), EIDRM, in verify_msgsnd() 32 "msgsnd(%i, %p, %i, 0)", queue_id, &snd_buf, MSGSIZE); in verify_msgsnd() 41 while (msgsnd(queue_id, &snd_buf, MSGSIZE, IPC_NOWAIT) != -1) in do_test()
|
H A D | msgsnd05.c | 8 * 1) msgsnd(2) fails and sets errno to EAGAIN if the message can't be 11 * 2) msgsnd(2) fails and sets errno to EINTR if msgsnd(2) sleeps on a 44 TST_EXP_FAIL(msgsnd(queue_id, &snd_buf, MSGSIZE, tc->flag), tc->exp_err, in verify_msgsnd() 45 "msgsnd(%i, %p, %i, %i)", queue_id, &snd_buf, MSGSIZE, tc->flag); in verify_msgsnd() 84 while (msgsnd(queue_id, &snd_buf, MSGSIZE, IPC_NOWAIT) != -1) in setup()
|
H A D | msgsnd01.c | 8 * test that msgsnd() enqueues a message correctly. 34 TEST(msgsnd(queue_id, &snd_buf, MSGSIZE, 0)); in verify_msgsnd() 36 tst_res(TFAIL | TTERRNO, "msgsnd() failed"); in verify_msgsnd() 49 tst_res(TPASS, "PID of last msgsnd(2) matched"); in verify_msgsnd() 51 tst_res(TFAIL, "PID of last msgsnd(2) mismatched"); in verify_msgsnd()
|
H A D | msgsnd02.c | 9 * queue, so msgsnd(2) fails and sets errno to EACCES. 10 * 2) msgsnd(2) fails and sets errno to EFAULT if the message buffer address 12 * 3) msgsnd(2) fails and sets errno to EINVAL if the queue ID is invalid. 13 * 4) msgsnd(2) fails and sets errno to EINVAL if the message type is not 15 * 5) msgsnd(2) fails and sets errno to EINVAL if the message type is not 17 * 6) msgsnd(2) fails and sets errno to EINVAL if the message size is less 64 TST_EXP_FAIL(msgsnd(*tc->id, tc->buffer, tc->msgsz, 0), tc->exp_err, in verify_msgsnd() 65 "msgsnd(%i, %p, %i, 0)", *tc->id, tc->buffer, tc->msgsz); in verify_msgsnd()
|
/third_party/musl/porting/liteos_a/user/src/ipc/ |
H A D | msgsnd.c | 6 int msgsnd(int q, const void *m, size_t len, int flag) in msgsnd() function
|
/third_party/musl/src/ipc/ |
H A D | msgsnd.c | 6 int msgsnd(int q, const void *m, size_t len, int flag) in msgsnd() function
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | msg.h | 40 int msgsnd (int, const void *, size_t, int);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | msg.h | 40 int msgsnd (int, const void *, size_t, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | msg.h | 40 int msgsnd (int, const void *, size_t, int);
|
/third_party/musl/include/sys/ |
H A D | msg.h | 40 int msgsnd (int, const void *, size_t, int);
|
/third_party/musl/libc-test/src/api/ |
H A D | sys_msg.c | 28 {int(*p)(int,const void*,size_t,int) = msgsnd;} in f()
|
/third_party/ltp/libs/libltpipc/ |
H A D | libmsgctl.c | 115 if (msgsnd(id, &buffer, size + 1, 0) < 0) { in dowriter() 116 printf("msgsnd() error in child %d, write # = %d, key = %lx: %s\n", in dowriter()
|
/third_party/musl/libc-test/src/functional/ |
H A D | ipc_msg.c | 74 T(msgsnd(qid, &msg, sizeof msg.data, IPC_NOWAIT)); in snd()
|
/third_party/ltp/lib/ |
H A D | tst_safe_sysv_ipc.c | 87 rval = msgsnd(msqid, msgp, msgsz, msgflg); in safe_msgsnd() 91 "msgsnd(%i, %p, %zu, %x) failed", msqid, msgp, msgsz, in safe_msgsnd() 95 "Invalid msgsnd(%i, %p, %zu, %x) return value %d", in safe_msgsnd()
|
/third_party/libuv/src/unix/ |
H A D | os390-syscalls.c | 161 if (msgsnd(lst->msg_queue, &msg, sizeof(msg.body), 0) != 0) in init_message_queue()
|
/third_party/node/deps/uv/src/unix/ |
H A D | os390-syscalls.c | 161 if (msgsnd(lst->msg_queue, &msg, sizeof(msg.body), 0) != 0) in init_message_queue()
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1864 pub fn msgsnd( in msgsnd() functions
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | constants-ppc.h | 1700 V(msgsnd, MSGSND, 0x7C00019C) \
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3972 pub fn msgsnd( in msgsnd() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 3931 pub fn msgsnd( in msgsnd() functions
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
H A D | mod.rs | 4097 pub fn msgsnd( in msgsnd() functions
|