Home
last modified time | relevance | path

Searched refs:IPC_STAT (Results 1 – 6 of 6) sorted by relevance

/aosp12/bionic/tests/
H A Dsys_msg_test.cpp37 if (msgctl(-1, IPC_STAT, nullptr) == -1 && errno == ENOSYS) { in TEST()
50 ASSERT_EQ(0, msgctl(id, IPC_STAT, &ds)); in TEST()
62 ASSERT_EQ(0, msgctl(id, IPC_STAT, &ds)); in TEST()
78 ASSERT_EQ(-1, msgctl(-1, IPC_STAT, nullptr)); in TEST()
H A Dsys_shm_test.cpp36 if (shmctl(-1, IPC_STAT, nullptr) == -1 && errno == ENOSYS) { in TEST()
49 ASSERT_EQ(0, shmctl(id, IPC_STAT, &ds)); in TEST()
71 ASSERT_EQ(-1, shmctl(-1, IPC_STAT, nullptr)); in TEST()
H A Dsys_sem_test.cpp50 ASSERT_EQ(0, semctl(id, 0, IPC_STAT, &ds)); in TEST()
/aosp12/system/extras/tests/kernel.config/
H A Dsysvipc_test.cpp86 EXPECT_EQ(-1, msgctl(-1, IPC_STAT, nullptr)); in TEST()
90 EXPECT_EQ(-1, semctl(-1, 0, IPC_STAT, nullptr)); in TEST()
94 EXPECT_EQ(-1, shmctl(-1, IPC_STAT, nullptr)); in TEST()
/aosp12/bionic/tests/headers/posix/
H A Dsys_ipc_h.c58 MACRO(IPC_STAT); in sys_ipc_h()
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dipc.h40 #define IPC_STAT 2 macro