HomeSort by relevance Sort by last modified time
    Searched refs:snd_buf (Results 1 - 8 of 8) sorted by null

  /external/ltp/testcases/kernel/syscalls/ipc/msgget/
msgget01.c 40 } rcv_buf, snd_buf = {MSGTYPE, "hello, world"}; variable in typeref:struct:buf
52 SAFE_MSGSND(queue_id, &snd_buf, MSGSIZE, 0);
56 if (strcmp(snd_buf.text, rcv_buf.text) == 0)
  /external/ltp/testcases/kernel/syscalls/ipc/msgsnd/
msgsnd02.c 52 } snd_buf[] = { variable in typeref:struct:buf
66 {&queue_id, &snd_buf[0], MSGSIZE, EACCES, 1},
68 {&bad_id, &snd_buf[0], MSGSIZE, EINVAL, 0},
69 {&queue_id, &snd_buf[1], MSGSIZE, EINVAL, 0},
70 {&queue_id, &snd_buf[2], MSGSIZE, EINVAL, 0},
71 {&queue_id, &snd_buf[0], -1, EINVAL, 0}
msgsnd05.c 42 } snd_buf = {1, "hello"}; variable in typeref:struct:buf
56 TEST(msgsnd(queue_id, &snd_buf, MSGSIZE, tc->flag));
106 while (msgsnd(queue_id, &snd_buf, MSGSIZE, IPC_NOWAIT) != -1)
107 snd_buf.type += 1;
msgsnd06.c 39 } snd_buf = {1, "hello"}; variable in typeref:struct:buf
43 TEST(msgsnd(queue_id, &snd_buf, MSGSIZE, 0));
63 while (msgsnd(queue_id, &snd_buf, MSGSIZE, IPC_NOWAIT) != -1)
64 snd_buf.type += 1;
msgsnd01.c 37 } rcv_buf, snd_buf = {MSGTYPE, "hello"}; variable in typeref:struct:buf
43 TEST(msgsnd(queue_id, &snd_buf, MSGSIZE, 0));
  /external/ltp/testcases/kernel/syscalls/ipc/msgrcv/
msgrcv01.c 75 MSGBUF snd_buf, rcv_buf, cmp_buf; variable
117 if (msgsnd(msg_q_1, &snd_buf, MSGSIZE, 0) == -1) {
196 init_buf(&snd_buf, MSGTYPE, MSGSIZE);
msgrcv04.c 69 MSGBUF snd_buf, rcv_buf; variable
162 init_buf(&snd_buf, MSGTYPE, MSGSIZE);
165 if (msgsnd(msg_q_1, &snd_buf, MSGSIZE, 0) == -1) {
msgrcv02.c 77 MSGBUF snd_buf, rcv_buf; variable
177 init_buf(&snd_buf, MSGTYPE, MSGSIZE);
180 if (msgsnd(msg_q_1, &snd_buf, MSGSIZE, IPC_NOWAIT) == -1) {

Completed in 1395 milliseconds