/external/strace/tests/ |
mq_sendrecv-read.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -eread=0 -a14
|
mq_sendrecv-write.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -ewrite=0 -a14
|
mq_sendrecv.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -a14
|
/external/strace/tests-m32/ |
mq_sendrecv-read.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -eread=0 -a14
|
mq_sendrecv-write.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -ewrite=0 -a14
|
mq_sendrecv.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -a14
|
/external/strace/tests-mx32/ |
mq_sendrecv-read.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -eread=0 -a14
|
mq_sendrecv-write.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -ewrite=0 -a14
|
mq_sendrecv.test | 3 # Check decoding of mq_open, mq_notify, mq_timedsend, mq_timedreceive syscalls. 6 run_strace_match_diff -e trace=mq_open,mq_notify,mq_timedsend,mq_timedreceive,mq_unlink -a14
|
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/mqueue_h/ |
9-1-buildonly.c | 3 of the mq_timedreceive function as specified on 20 size = mq_timedreceive(mqdes, msgp, msg_len, &msg_prio, &abstime);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_timedreceive/ |
1-1.c | 10 * mq_timedreceive test plan: 11 * mq_timedreceive will receive the oldest of the highest priority messages 27 #define FUNCTION "mq_timedreceive" 65 if (mq_timedreceive(mqdes, msgrv1, BUFFER, &rvprio, &ts) == -1) { 66 perror(ERROR_PREFIX "mq_timedreceive"); 71 printf("FAIL: mq_timedreceive didn't receive the highest " 82 if (mq_timedreceive(mqdes, msgrv2, BUFFER, &rvprio, &ts) == -1) { 83 perror(ERROR_PREFIX "mq_timedreceive"); 87 printf("FAIL: mq_timedreceive didn't receive the correct "
|
11-1.c | 10 * mq_timedreceive test plan: 11 * On success, mq_timedreceive will return the length of the selected message 15 * 2. call mq_timedreceive() twice, if the two received messages are the same, 16 * which means the first mq_timedreceive does not remove the message from 31 #define FUNCTION "mq_timedreceive" 68 if (mq_timedreceive(mqdes, msgrv1, BUFFER, NULL, &ts) != 70 printf("FAIL: mq_timedreceive didn't return the selected " 74 if (mq_timedreceive(mqdes, msgrv2, BUFFER, NULL, &ts) != 76 printf("FAIL: mq_timedreceive didn't return the selected " 81 printf("FAIL: mq_timedreceive received the same message [all...] |
10-1.c | 10 * mq_timedreceive test plan: 12 * mq_timedreceive will never fail with a timeout. 26 #define FUNCTION "mq_timedreceive" 59 if (mq_timedreceive(mqdes, msgrv, BUFFER, &rvprio, &ts) == -1) {
|
10-2.c | 30 #define FUNCTION "mq_timedreceive" 65 if (mq_timedreceive(mqdes, msgrv, BUFFER, &rvprio, &ts) == -1) { 67 printf("FAIL: mq_timedreceive returned " 70 perror("Unexpected error at mq_timedreceive");
|
13-1.c | 10 * mq_timedreceive() test plan: 11 * mq_timedreceive() will fail with EAGAIN, if message queue is empty and 28 #define FUNCTION "mq_timedreceive" 54 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) == -1) { 60 printf("mq_timedreceive() succeed unexpectly\n");
|
14-1.c | 10 * mq_timedreceive() test plan: 11 * mq_timedreceive() will fail with EBADF, if mqdes is not a valid message 28 #define FUNCTION "mq_timedreceive" 55 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) == -1) { 61 printf("mq_timedreceive() succeed unexpectly\n");
|
15-1.c | 10 * mq_timedreceive test plan: 11 * mq_timedreceive will return EMSGSIZE when msg_len is less than the 27 #define FUNCTION "mq_timedreceive" 60 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) > 0) { 61 printf("FAIL: mq_timedreceive succeed unexpectly\n");
|
17-1.c | 10 * mq_timedreceive() test plan: 11 * mq_timedreceive() will fail with EINVAL if message queue is 30 #define FUNCTION "mq_timedreceive" 55 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) == -1) { 61 printf("FAIL: mq_timedreceive() succeed unexpectly\n");
|
17-2.c | 10 * mq_timedreceive() test plan: 11 * mq_timedreceive() will fail with EINVAL if message queue is 31 #define FUNCTION "mq_timedreceive" 56 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) == -1) { 62 printf("FAIL: mq_timedreceive() succeed unexpectly\n");
|
17-3.c | 10 * mq_timedreceive() test plan: 11 * mq_timedreceive() will fail with EINVAL if message queue is 31 #define FUNCTION "mq_timedreceive" 56 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) == -1) { 62 printf("FAIL: mq_timedreceive() succeed unexpectly\n");
|
2-1.c | 10 * mq_timedreceive test plan: 26 #define FUNCTION "mq_timedreceive" 59 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) > 0) { 60 printf("FAIL: mq_timedreceive succeed unexpectly\n");
|
5-1.c | 10 * mq_timedreceive() test plan: 12 * mq_timedreceive() will block until a message is enqueued on the 33 #define FUNCTION "mq_timedreceive" 66 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) > 0) { 73 printf("mq_timedreceive didn't block on waiting\n"); 75 perror(ERROR_PREFIX "mq_timedreceive");
|
7-1.c | 10 * mq_timedreceive() test plan: 12 * no message will be removed from the queue, mq_timedreceive will return an 28 #define FUNCTION "mq_timedreceive" 55 if (mq_timedreceive(mqdes, msgrv, BUFFER, NULL, &ts) != -1) { 56 printf("mq_timedreceive succeed unexpectly\n");
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_timedreceive/speculative/ |
10-2.c | 10 * mq_timedreceive test plan: 29 #define FUNCTION "mq_timedreceive" 62 if (mq_timedreceive(mqdes, msgrv, BUFFER, &rvprio, &ts) == -1) { 63 printf("mq_timedreceive() did fail on invalid abs_time\n"); 65 printf("mq_timedreceive() did not fail on invalid abs_time\n");
|
/external/strace/ |
mq.c | 58 SYS_FUNC(mq_timedreceive)
|