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

  /external/compiler-rt/test/asan/TestCases/Linux/
shmctl.cc 16 int res = shmctl(id, IPC_STAT, &ds);
20 assert(-1 != shmctl(id, IPC_RMID, 0));
23 res = shmctl(0, SHM_INFO, (struct shmid_ds *)&shmInfo);
  /external/strace/tests/
ipc_shm.c 16 if (shmctl(id, IPC_STAT, &ds))
18 printf("shmctl\\(%d, (IPC_64\\|)?IPC_STAT, %p\\) += 0\n", id, &ds);
20 int max = shmctl(0, SHM_INFO, &ds);
23 printf("shmctl\\(0, (IPC_64\\|)?SHM_INFO, %p\\) += %d\n", &ds, max);
25 rc = shmctl(id, SHM_STAT, &ds);
33 printf("shmctl\\(%d, (IPC_64\\|)?SHM_STAT, %p\\) += -1 EINVAL \\(Invalid argument\\)\n", id, &ds);
35 printf("shmctl\\(%d, (IPC_64\\|)?SHM_STAT, %p\\) += %d\n", id, &ds, id);
40 if (shmctl(id, IPC_RMID, 0) < 0)
42 printf("shmctl\\(%d, (IPC_64\\|)?IPC_RMID, 0\\) += 0\n", id);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
shm.h 51 extern int shmctl (int __shmid, int __cmd, struct shmid_ds *__buf) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
shm.h 51 extern int shmctl (int __shmid, int __cmd, struct shmid_ds *__buf) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
shm.h 51 extern int shmctl (int __shmid, int __cmd, struct shmid_ds *__buf) __THROW;
  /external/fio/os/windows/posix/include/sys/
shm.h 33 time_t shm_ctime; /* time of last change by shmctl() */
36 int shmctl(int shmid, int cmd, struct shmid_ds *buf);
  /external/valgrind/none/tests/
map_unmap.c 147 if (shmctl(shmid, IPC_RMID, 0) != 0) {
148 perror("shmctl IPC_RMID");
  /external/toybox/toys/pending/
ipcrm.c 62 if (ipc == 1) ret = shmctl(id, IPC_RMID, NULL);
ipcs.c 123 if ((ret = shmctl(TT.id, IPC_STAT, &buf)) < 0) {
124 perror_msg("shmctl");
156 if ((max_nr = shmctl(0, SHM_INFO, (struct shmid_ds*)&shm_buf)) < 0) {
176 if ((shmctl(0, 3, (struct shmid_ds*)&ipc_buf)) < 0) return; //IPC_INFO
209 if ((shmid = shmctl(i, SHM_STAT, &buf)) < 0 ) continue;
  /external/mesa3d/src/mesa/drivers/x11/
xm_buffer.c 107 shmctl(b->shminfo.shmid, IPC_RMID, 0);
127 shmctl(b->shminfo.shmid, IPC_RMID, 0);
134 shmctl(b->shminfo.shmid, IPC_RMID, 0); /* nobody else needs it */
148 shmctl(b->shminfo.shmid, IPC_RMID, 0);
  /external/mesa3d/src/gallium/winsys/sw/xlib/
xlib_sw_winsys.c 135 shmctl(shminfo->shmid, IPC_RMID, 0);
254 shmctl(xlib_dt->shminfo.shmid, IPC_RMID, 0);
  /external/fio/
memory.c 121 shmctl(td->shm_id, IPC_RMID, &sbuf);
init.c 283 shmctl(shm_id, IPC_RMID, &sbuf);
    [all...]
  /external/fio/os/
os-android.h 70 static inline int shmctl (int __shmid, int __cmd, struct shmid_ds *__buf) function
  /external/strace/
sys_func.h 238 extern SYS_FUNC(shmctl);
ipc.c 313 SYS_FUNC(shmctl)
  /external/valgrind/memcheck/tests/darwin/
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)
    [all...]
  /external/valgrind/coregrind/m_syswrap/
priv_syswrap-darwin.h 324 DECL_TEMPLATE(darwin, shmctl); // 263
syswrap-darwin.c     [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 32 int shmctl(int, int, struct shmid_ds *);
1190 TEST(MemorySanitizer, shmctl) {
1195 int res = shmctl(id, IPC_STAT, &ds);
1199 // FreeBSD does not support shmctl(IPC_INFO) and shmctl(SHM_INFO).
1202 res = shmctl(id, IPC_INFO, (struct shmid_ds *)&si);
1207 res = shmctl(id, SHM_INFO, (struct shmid_ds *)&s_i);
1212 res = shmctl(id, IPC_RMID, 0);
1240 res = shmctl(id, IPC_RMID, 0);
    [all...]
  /external/libvncserver/x11vnc/
scan.c 345 shmctl(shm->shmid, IPC_RMID, 0);
362 shmctl(shm->shmid, IPC_RMID, 0);
381 shmctl(shm->shmid, IPC_RMID, 0);
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc     [all...]
  /external/fio/os/windows/
posix.c 596 int shmctl(int shmid, int cmd, struct shmid_ds *buf) function
  /external/mesa3d/include/GL/
vms_x_fix.h 1074 #define shmctl macro
    [all...]

Completed in 592 milliseconds