HomeSort by relevance Sort by last modified time
    Searched refs:msgrcv (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/strace/tests/
ipc_msgbuf.test 3 # Check msgget, msgsnd, msgrcv, msgctl syscalls decoding.
8 run_strace -v -e msgget,msgsnd,msgrcv,msgctl $args
ipc_msgbuf.c 64 if (msgrcv(msqid, &msg, msgsz, mtype, 0) != msgsz)
65 perror_msg_and_skip("msgrcv");
  /external/strace/tests-m32/
ipc_msgbuf.test 3 # Check msgget, msgsnd, msgrcv, msgctl syscalls decoding.
8 run_strace -v -e msgget,msgsnd,msgrcv,msgctl $args
ipc_msgbuf.c 64 if (msgrcv(msqid, &msg, msgsz, mtype, 0) != msgsz)
65 perror_msg_and_skip("msgrcv");
  /external/strace/tests-mx32/
ipc_msgbuf.test 3 # Check msgget, msgsnd, msgrcv, msgctl syscalls decoding.
8 run_strace -v -e msgget,msgsnd,msgrcv,msgctl $args
ipc_msgbuf.c 64 if (msgrcv(msqid, &msg, msgsz, mtype, 0) != msgsz)
65 perror_msg_and_skip("msgrcv");
  /bionic/libc/include/sys/
msg.h 46 ssize_t msgrcv(int, void*, size_t, long, int) __INTRODUCED_IN(26);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
msg.h 52 /* Template for struct to be used as argument for `msgsnd' and `msgrcv'. */
73 extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
msg.h 52 /* Template for struct to be used as argument for `msgsnd' and `msgrcv'. */
73 extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
msg.h 52 /* Template for struct to be used as argument for `msgsnd' and `msgrcv'. */
73 extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  /external/linux-kselftest/tools/testing/selftests/powerpc/syscalls/
ipc.h 22 DO_TEST(msgrcv, __NR_msgrcv)
  /bionic/tests/
sys_msg_test.cpp 69 ASSERT_EQ(static_cast<ssize_t>(sizeof(msg)), msgrcv(id, &msg, sizeof(msg), 0, 0));
91 ASSERT_EQ(-1, msgrcv(-1, nullptr, 0, 0, 0));
  /bionic/libc/bionic/
sys_msg.cpp 55 ssize_t msgrcv(int id, void* msg, size_t n, long type, int flags) { function
59 return syscall(SYS_ipc, IPCCALL(1, MSGRCV), id, n, flags, msg, type);
  /external/ltp/testcases/kernel/ipc/ipc_stress/
message_queue_test_02_rcv.c 128 if (msgrcv(msqid, message, BUF_SIZE, 0, 0) < 0)
129 sys_error("msgrcv failed", __LINE__);
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl07.c 238 if ((size = msgrcv(msqid, &c1_msgp, BYTES, 0, 0)) == -1) {
239 tst_brkm(TFAIL | TERRNO, NULL, "msgrcv() failed");
258 if ((size = msgrcv(msqid, &c3_msgp, BYTES, 3, 0)) == -1) {
259 tst_brkm(TFAIL | TERRNO, NULL, "msgrcv() failed");
270 if ((size = msgrcv(msqid, &c2_msgp, BYTES, 2, 0)) == -1) {
271 tst_brkm(TFAIL | TERRNO, NULL, "msgrcv() failed");
282 if ((size = msgrcv(msqid, &c1_msgp, BYTES, 1, 0)) == -1) {
283 tst_brkm(TFAIL | TERRNO, NULL, "msgrcv() failed");
  /external/ltp/testcases/kernel/syscalls/ipc/msgget/
msgget01.c 143 if (msgrcv(msg_q_1, &rcv_buf, MSGSIZE, MSGTYPE, IPC_NOWAIT) == -1) {
  /external/ltp/testcases/kernel/syscalls/ipc/msgrcv/
msgrcv01.c 25 * msgrcv01 - test that msgrcv() receives the expected message
146 TEST(msgrcv(msg_q_1, &rcv_buf, MSGSIZE, 1, 0));
msgrcv03.c 30 * call msgrcv() using two different invalid cases
101 TEST(msgrcv(*(TC[i].queue_id), &rcv_buf, TC[i].msize,
msgrcv04.c 32 * call msgrcv() using two different invalid cases
112 TEST(msgrcv(msg_q_1, &rcv_buf, TC[i].size, TC[i].type,
msgrcv05.c 30 * fork a child who attempts to read a non-existent message with msgrcv()
133 TEST(msgrcv(msg_q_1, &rcv_buf, MSGSIZE, 1, 0));
msgrcv06.c 30 * fork a child who sleeps on an attempted read with msgrcv()
152 TEST(msgrcv(msg_q_1, &rcv_buf, MSGSIZE, 1, 0));
msgrcv08.c 26 * ipc: fix compat msgrcv with negative msgtyp
30 * 32-bit application using the msgrcv() system call
33 * msgrcv: No message of desired type
69 sret = msgrcv(msqid, &msbr, sizeof(msbr.mtext), -mtype, IPC_NOWAIT | MSG_NOERROR);
msgrcv07.c 20 * Basic test for msgrcv(2) using MSG_EXCEPT, MSG_NOERROR
96 TEST(msgrcv(msgq_id, &rcv_buf, MSGSIZE, MSGTYPE2, MSG_EXCEPT));
98 fprintf(stderr, "msgrcv(MSG_EXCEPT) failed\n");
136 TEST(msgrcv(msgq_id, &rcv_buf, msg_len, MSGTYPE1, MSG_NOERROR));
163 tst_brkm(TBROK, cleanup, "msgrcv failed unexpectedly");
msgrcv02.c 33 * call msgrcv() using two different invalid cases
113 TEST(msgrcv(*(TC[i].queue_id), TC[i].mbuf, MSGSIZE,
  /external/ltp/testcases/kernel/syscalls/ipc/msgsnd/
msgsnd01.c 121 if (msgrcv(msg_q_1, &rd_buf, MSGSIZE, 1, 0) == -1) {

Completed in 447 milliseconds

1 2 3