HomeSort by: relevance | last modified time | path
    Searched refs:shmid_ds (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/compat/sys/
shm.h 89 static __inline void __shmid_ds14_to_native(const struct shmid_ds14 *, struct shmid_ds *);
90 static __inline void __native_to_shmid_ds14(const struct shmid_ds *, struct shmid_ds14 *);
91 static __inline void __shmid_ds13_to_native(const struct shmid_ds13 *, struct shmid_ds *);
92 static __inline void __native_to_shmid_ds13(const struct shmid_ds *, struct shmid_ds13 *);
94 __shmid_ds14_to_native(const struct shmid_ds14 *oshmbuf, struct shmid_ds *shmbuf)
111 __native_to_shmid_ds14(const struct shmid_ds *shmbuf, struct shmid_ds14 *oshmbuf)
131 __shmid_ds13_to_native(const struct shmid_ds13 *oshmbuf, struct shmid_ds *shmbuf)
148 __native_to_shmid_ds13(const struct shmid_ds *shmbuf, struct shmid_ds13 *oshmbuf)
169 int __shmctl50(int, int, struct shmid_ds *);
  /src/sys/compat/linux/common/
linux_shm.h 134 struct shmid_ds *);
136 struct shmid_ds *);
137 void bsd_to_linux_shmid_ds(struct shmid_ds *,
139 void bsd_to_linux_shmid64_ds(struct shmid_ds *,
linux_ipc.c 492 * Convert between Linux and NetBSD shmid_ds structures.
500 linux_to_bsd_shmid_ds(struct linux_shmid_ds *lsp, struct shmid_ds *bsp)
514 linux_to_bsd_shmid64_ds(struct linux_shmid64_ds *lsp, struct shmid_ds *bsp)
528 bsd_to_linux_shmid_ds(struct shmid_ds *bsp, struct linux_shmid_ds *lsp)
543 bsd_to_linux_shmid64_ds(struct shmid_ds *bsp, struct linux_shmid64_ds *lsp)
570 struct shmid_ds bs;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_openbsd.cc 235 CHECK_TYPE_SIZE(shmid_ds);
236 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_perm);
237 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_segsz);
238 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_atime);
239 CHECK_SIZE_AND_OFFSET(shmid_ds, __shm_atimensec);
240 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_dtime);
241 CHECK_SIZE_AND_OFFSET(shmid_ds, __shm_dtimensec);
242 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_ctime);
243 CHECK_SIZE_AND_OFFSET(shmid_ds, __shm_ctimensec);
244 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_cpid)
    [all...]
sanitizer_platform_limits_solaris.cc 303 CHECK_TYPE_SIZE(shmid_ds);
304 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_perm);
305 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_segsz);
306 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_atime);
307 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_dtime);
308 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_ctime);
309 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_cpid);
310 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_lpid);
311 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_nattch);
sanitizer_platform_limits_freebsd.cc 465 CHECK_TYPE_SIZE(shmid_ds);
466 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_perm);
467 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_segsz);
468 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_atime);
469 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_dtime);
470 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_ctime);
471 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_cpid);
472 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_lpid);
473 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_nattch);
sanitizer_platform_limits_posix.cc 1137 CHECK_TYPE_SIZE(shmid_ds);
1138 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_perm);
1139 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_segsz);
1140 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_atime);
1141 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_dtime);
1142 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_ctime);
1143 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_cpid);
1144 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_lpid);
1145 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_nattch);
sanitizer_platform_limits_netbsd.cc 2461 CHECK_TYPE_SIZE(shmid_ds);
2462 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_perm);
2463 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_segsz);
2464 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_atime);
2465 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_dtime);
2466 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_ctime);
2467 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_cpid);
2468 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_lpid);
2469 CHECK_SIZE_AND_OFFSET(shmid_ds, shm_nattch);
  /src/lib/libc/compat/sys/
compat___shmctl13.c 56 struct shmid_ds ds;
  /src/sys/sys/
shm.h 99 struct shmid_ds { struct
163 extern struct shmid_ds *shmsegs;
179 int shmctl1(struct lwp *, int, int, struct shmid_ds *);
201 int shmctl(int, int, struct shmid_ds *) __RENAME(__shmctl50);
syscallargs.h 2906 syscallarg(struct shmid_ds *) buf;
  /src/sys/kern/
sysv_shm.c 93 struct shmid_ds * shmsegs __read_mostly;
130 struct shmid_ds *shmseg;
147 static struct shmid_ds *
151 struct shmid_ds *shmseg;
177 struct shmid_ds *shmseg;
208 struct shmid_ds *shmseg;
274 shm_memlock(struct shmid_ds *shmseg, int shmid, int cmd)
314 struct shmid_ds *shmseg;
381 struct shmid_ds *shmseg;
491 syscallarg(struct shmid_ds *) buf
    [all...]
  /src/sys/compat/common/
sysv_shm_14.c 63 struct shmid_ds shmbuf;
sysv_shm_50.c 62 struct shmid_ds shmbuf;
  /src/sys/compat/netbsd32/
netbsd32_compat_14_sysv.c 165 netbsd32_shmid_ds14_to_native(struct netbsd32_shmid_ds14 *oshmbuf, struct shmid_ds *shmbuf)
182 native_to_netbsd32_shmid_ds14(struct shmid_ds *shmbuf, struct netbsd32_shmid_ds14 *oshmbuf)
302 struct shmid_ds shmbuf;
netbsd32_compat_50_sysv.c 183 struct shmid_ds ds;
netbsd32_conv.h 683 struct shmid_ds *dsp)
699 struct shmid_ds *dsp)
714 netbsd32_from_shmid_ds50(const struct shmid_ds *dsp,
730 netbsd32_from_shmid_ds(const struct shmid_ds *dsp,
netbsd32_ipc.c 448 struct shmid_ds ds;
  /src/sys/compat/linux32/common/
linux32_ipccall.c 87 bsd_to_linux32_shmid_ds(struct shmid_ds *, struct linux32_shmid_ds *);
89 linux32_to_bsd_shmid_ds(struct linux32_shmid_ds *, struct shmid_ds *);
91 bsd_to_linux32_shmid64_ds(struct shmid_ds *, struct linux32_shmid64_ds *);
93 linux32_to_bsd_shmid64_ds(struct linux32_shmid64_ds *, struct shmid_ds *);
553 bsd_to_linux32_shmid_ds(struct shmid_ds *bsp, struct linux32_shmid_ds *lsp)
568 linux32_to_bsd_shmid_ds(struct linux32_shmid_ds *lsp, struct shmid_ds *bsp)
582 bsd_to_linux32_shmid64_ds(struct shmid_ds *bsp, struct linux32_shmid64_ds *lsp)
597 linux32_to_bsd_shmid64_ds(struct linux32_shmid64_ds *lsp, struct shmid_ds *bsp)
663 struct shmid_ds bs;
  /src/tests/kernel/
t_sysv.c 68 void print_shmid_ds(struct shmid_ds *, mode_t);
611 struct shmid_ds s_ds;
713 print_shmid_ds(struct shmid_ds *sp, mode_t mode)
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 32 int shmctl(int, int, struct shmid_ds *);
1305 struct shmid_ds ds;
1312 res = shmctl(id, IPC_INFO, (struct shmid_ds *)&si);
1317 res = shmctl(id, SHM_INFO, (struct shmid_ds *)&s_i);

Completed in 32 milliseconds