/external/strace/tests/ |
D | ipc_shm.c | 16 if (shmctl(id, IPC_STAT, &ds)) in main() 20 int max = shmctl(0, SHM_INFO, &ds); in main() 25 rc = shmctl(id, SHM_STAT, &ds); in main() 40 if (shmctl(id, IPC_RMID, 0) < 0) in main()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | shmctl.cc | 16 int res = shmctl(id, IPC_STAT, &ds); in main() 20 assert(-1 != shmctl(id, IPC_RMID, 0)); in main() 23 res = shmctl(0, SHM_INFO, (struct shmid_ds *)&shmInfo); in main()
|
/external/toybox/toys/pending/ |
D | ipcs.c | 123 if ((ret = shmctl(TT.id, IPC_STAT, &buf)) < 0) { in show_shm_id() 156 if ((max_nr = shmctl(0, SHM_INFO, (struct shmid_ds*)&shm_buf)) < 0) { in shm_array() 176 if ((shmctl(0, 3, (struct shmid_ds*)&ipc_buf)) < 0) return; //IPC_INFO in shm_array() 209 if ((shmid = shmctl(i, SHM_STAT, &buf)) < 0 ) continue; in shm_array()
|
D | ipcrm.c | 62 if (ipc == 1) ret = shmctl(id, IPC_RMID, NULL);
|
/external/mesa3d/src/mesa/drivers/x11/ |
D | xm_buffer.c | 107 shmctl(b->shminfo.shmid, IPC_RMID, 0); in alloc_back_shm_ximage() 127 shmctl(b->shminfo.shmid, IPC_RMID, 0); in alloc_back_shm_ximage() 134 shmctl(b->shminfo.shmid, IPC_RMID, 0); /* nobody else needs it */ in alloc_back_shm_ximage() 148 shmctl(b->shminfo.shmid, IPC_RMID, 0); in alloc_back_shm_ximage()
|
/external/fio/os/windows/posix/include/sys/ |
D | shm.h | 36 int shmctl(int shmid, int cmd, struct shmid_ds *buf);
|
/external/valgrind/none/tests/ |
D | map_unmap.c | 147 if (shmctl(shmid, IPC_RMID, 0) != 0) { in main()
|
/external/mesa3d/src/gallium/winsys/sw/xlib/ |
D | xlib_sw_winsys.c | 135 shmctl(shminfo->shmid, IPC_RMID, 0); in alloc_shm() 254 shmctl(xlib_dt->shminfo.shmid, IPC_RMID, 0); in xlib_displaytarget_destroy()
|
/external/fio/os/ |
D | os-android.h | 70 static inline int shmctl (int __shmid, int __cmd, struct shmid_ds *__buf) in shmctl() function
|
/external/valgrind/memcheck/tests/darwin/ |
D | scalar.stderr.exp | 562 Syscall param shmctl(shmid) contains uninitialised byte(s) 565 Syscall param shmctl(cmd) contains uninitialised byte(s) 568 Syscall param shmctl(buf) contains uninitialised byte(s) 571 Syscall param shmctl(IPC_STAT, buf) points to unaddressable byte(s)
|
/external/fio/ |
D | memory.c | 121 shmctl(td->shm_id, IPC_RMID, &sbuf); in free_mem_shm()
|
D | init.c | 283 shmctl(shm_id, IPC_RMID, &sbuf); in free_threads_shm()
|
/external/strace/ |
D | ipc.c | 313 SYS_FUNC(shmctl) in SYS_FUNC() argument
|
D | sys_func.h | 238 extern SYS_FUNC(shmctl);
|
/external/valgrind/coregrind/m_syswrap/ |
D | priv_syswrap-darwin.h | 324 DECL_TEMPLATE(darwin, shmctl); // 263
|
D | syswrap-darwin.c | 2433 PRE(shmctl) in PRE() argument 2440 POST(shmctl) in POST() argument 9680 MACXY(__NR_shmctl, shmctl),
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 32 int shmctl(int, int, struct shmid_ds *); 1190 TEST(MemorySanitizer, shmctl) { in TEST() argument 1195 int res = shmctl(id, IPC_STAT, &ds); in TEST() 1202 res = shmctl(id, IPC_INFO, (struct shmid_ds *)&si); in TEST() 1207 res = shmctl(id, SHM_INFO, (struct shmid_ds *)&s_i); in TEST() 1212 res = shmctl(id, IPC_RMID, 0); in TEST() 1240 res = shmctl(id, IPC_RMID, 0); in TEST()
|
/external/libvncserver/x11vnc/ |
D | scan.c | 345 shmctl(shm->shmid, IPC_RMID, 0); in shm_create() 362 shmctl(shm->shmid, IPC_RMID, 0); in shm_create() 381 shmctl(shm->shmid, IPC_RMID, 0); in shm_delete()
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 1297 DECLARE_REAL(int, shmctl, int shmid, int cmd, void *buf) in DECLARE_REAL() argument 1304 int res = REAL(shmctl)(shmid, shmctl_ipc_stat, &ds); in DECLARE_REAL()
|
/external/fio/os/windows/ |
D | posix.c | 596 int shmctl(int shmid, int cmd, struct shmid_ds *buf) in shmctl() function
|
/external/mesa3d/include/GL/ |
D | vms_x_fix.h | 1074 #define shmctl SHMCTL macro
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 3401 INTERCEPTOR(int, shmctl, int shmid, int cmd, void *buf) { 3403 COMMON_INTERCEPTOR_ENTER(ctx, shmctl, shmid, cmd, buf); 3407 int res = REAL(shmctl)(shmid, cmd, buf); 3420 #define INIT_SHMCTL COMMON_INTERCEPT_FUNCTION(shmctl);
|
D | sanitizer_common_syscalls.inc | 2153 PRE_SYSCALL(shmctl)(long shmid, long cmd, void *buf) {} 2155 POST_SYSCALL(shmctl)(long res, long shmid, long cmd, void *buf) {
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2889 fun:shmctl=uninstrumented
|
/external/valgrind/ |
D | NEWS.old | 1326 86987 semctl and shmctl syscalls family is not handled properly
|