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

1 2 3

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/shm_h/
12-1-buildonly.c 17 * IPC_STAT
46 #ifndef IPC_STAT
47 #error IPC_STAT not defined
  /external/strace/xlat/
msgctl_flags.h 25 #if defined(IPC_STAT) || (defined(HAVE_DECL_IPC_STAT) && HAVE_DECL_IPC_STAT)
26 XLAT(IPC_STAT),
shmctl_flags.h 19 #if defined(IPC_STAT) || (defined(HAVE_DECL_IPC_STAT) && HAVE_DECL_IPC_STAT)
20 XLAT(IPC_STAT),
semctl_flags.h 23 #if defined(IPC_STAT) || (defined(HAVE_DECL_IPC_STAT) && HAVE_DECL_IPC_STAT)
24 XLAT(IPC_STAT),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
ipc.h 33 #define IPC_STAT 2 /* Get `ipc_perm' options. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
ipc.h 33 #define IPC_STAT 2 /* Get `ipc_perm' options. */
  /bionic/tests/
sys_msg_test.cpp 37 if (msgctl(-1, IPC_STAT, nullptr) == -1 && errno == ENOSYS) {
51 ASSERT_EQ(0, msgctl(id, IPC_STAT, &ds));
63 ASSERT_EQ(0, msgctl(id, IPC_STAT, &ds));
79 ASSERT_EQ(-1, msgctl(-1, IPC_STAT, nullptr));
sys_shm_test.cpp 37 if (shmctl(-1, IPC_STAT, nullptr) == -1 && errno == ENOSYS) {
51 ASSERT_EQ(0, shmctl(id, IPC_STAT, &ds));
73 ASSERT_EQ(-1, shmctl(-1, IPC_STAT, nullptr));
  /system/extras/tests/kernel.config/
sysvipc_test.cpp 47 EXPECT_EQ(-1, msgctl(-1, IPC_STAT, nullptr));
51 EXPECT_EQ(-1, semctl(-1, 0, IPC_STAT, nullptr));
55 EXPECT_EQ(-1, shmctl(-1, IPC_STAT, nullptr));
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl04.c 83 &msg_q_1, IPC_STAT, &q_buf, EACCES},
84 /* EFAULT - the structure address is invalid - IPC_STAT */
86 &msg_q_2, IPC_STAT, (struct msqid_ds *)-1, EFAULT},
93 /* EINVAL - the queue id is invalid - IPC_STAT */
95 &bad_q, IPC_STAT, &q_buf, EINVAL},
msgctl02.c 96 if ((msgctl(msg_q_1, IPC_STAT, &qs_buf) == -1)) {
155 if ((msgctl(msg_q_1, IPC_STAT, &qs_buf)) == -1) {
msgctl01.c 25 * msgctl01 - create a message queue, then issue the IPC_STAT command
31 * call msgctl() with the IPC_STAT command
88 TEST(msgctl(msg_q_1, IPC_STAT, &qs_buf));
msgctl03.c 35 * issue an IPC_STAT on the queue that was just removed
86 * if the queue is gone, then an IPC_STAT msgctl()
89 if ((msgctl(msg_q_1, IPC_STAT, &qs_buf) == -1)) {
msgctl13.c 77 TEST(msgctl(msg_q, IPC_STAT, &buf));
  /external/ltp/testcases/kernel/syscalls/ipc/shmctl/
shmctl02.c 79 &shm_id_1, IPC_STAT, &buf, EACCES},
83 /* EFAULT - IPC_STAT & buf isn't valid */
85 &shm_id_2, IPC_STAT, (struct shmid_ds *)-1, EFAULT},
88 &shm_id_3, IPC_STAT, &buf, EINVAL},
  /bionic/tests/headers/posix/
sys_ipc_h.c 58 MACRO(IPC_STAT);
  /external/compiler-rt/test/asan/TestCases/Linux/
shmctl.cc 16 int res = shmctl(id, IPC_STAT, &ds);
  /external/valgrind/memcheck/tests/solaris/
shmat.c 23 int ret = shmctl(shmid, IPC_STAT, &stats);
25 perror("shmctl(IPC_STAT)");
  /external/strace/
ipc_msgctl.c 63 case IPC_STAT:
73 if (cmd != IPC_STAT) {
ipc_shmctl.c 63 case IPC_STAT:
73 if (cmd != IPC_STAT) {
  /bionic/libc/kernel/uapi/linux/
ipc.h 40 #define IPC_STAT 2
  /external/kernel-headers/original/uapi/linux/
ipc.h 41 #define IPC_STAT 2 /* get ipc_perm options */
  /external/ltp/testcases/kernel/mem/hugetlb/hugeshmctl/
hugeshmctl01.c 18 * hugeshmctl01 - test the IPC_STAT, IPC_SET and IPC_RMID commands as
79 {IPC_STAT, func_stat, stat_setup},
80 {IPC_STAT, func_stat, stat_setup},
135 * stat_setup() - Set up for the IPC_STAT command with shmctl().
184 * func_stat() - check the functionality of the IPC_STAT command with shmctl()
274 if (shmctl(shm_id_1, IPC_STAT, &buf) == -1) {
298 if (shmctl(shm_id_1, IPC_STAT, &buf) != -1)
  /external/ltp/testcases/kernel/syscalls/ipc/msgsnd/
msgsnd01.c 49 SAFE_MSGCTL(queue_id, IPC_STAT, &qs_buf);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ipc.h 40 #define IPC_STAT 2 /* get ipc_perm options */

Completed in 302 milliseconds

1 2 3