Home
last modified time | relevance | path

Searched refs:mds (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/ttymon/
H A Dstty.h65 struct mds { struct
72 extern const struct mds lmodes[]; argument
73 extern const struct mds nlmodes[];
74 extern const struct mds cmodes[];
75 extern const struct mds ncmodes[];
76 extern const struct mds imodes[];
77 extern const struct mds nimodes[];
78 extern const struct mds omodes[];
79 extern const struct mds hmodes[];
80 extern const struct mds clkmodes[];
H A Dsttytable.c87 const struct mds cmodes[] = {
125 const struct mds ncmodes[] = {
135 const struct mds imodes[] = {
182 const struct mds nimodes[] = {
188 const struct mds lmodes[] = {
225 const struct mds nlmodes[] = {
245 const struct mds omodes[] = {
305 const struct mds hmodes[] = {
319 const struct mds clkmodes[] = {
/illumos-gate/usr/src/cmd/ipcs/
H A Dipcs.c266 struct shmid_ds64 mds; in main() local
293 if (shmctl64(id, IPC_STAT64, &mds) < 0) in main()
297 mds.shmx_perm.ipcx_zoneid != zoneid) in main()
301 (void) printf(" %6llu", mds.shmx_nattch); in main()
303 (void) printf(" %10llu", mds.shmx_segsz); in main()
306 (int)mds.shmx_cpid, (int)mds.shmx_lpid); in main()
308 tp(mds.shmx_atime); in main()
309 tp(mds.shmx_dtime); in main()
310 tp(mds.shmx_ctime); in main()
315 jp(&mds.shmx_perm); in main()
[all …]
/illumos-gate/usr/src/ucbcmd/stty/
H A Dsttytable.c79 const struct mds cmodes[] = {
121 const struct mds ncmodes[] = {
131 const struct mds imodes[] = {
178 const struct mds nimodes[] = {
184 const struct mds lmodes[] = {
225 const struct mds nlmodes[] = {
251 const struct mds omodes[] = {
312 const struct mds hmodes[] = {
326 const struct mds clkmodes[] = {
H A Dsttyparse.c58 extern const struct mds lmodes[];
59 extern const struct mds nlmodes[];
60 extern const struct mds cmodes[];
61 extern const struct mds ncmodes[];
62 extern const struct mds imodes[];
63 extern const struct mds nimodes[];
64 extern const struct mds omodes[];
65 extern const struct mds hmodes[];
66 extern const struct mds clkmodes[];
H A Dstty.h40 struct mds { struct
/illumos-gate/usr/src/cmd/ipcrm/
H A Dipcrm.c269 struct shmid_ds64 mds; in shmgetid() local
274 if (shmctl64(id, IPC_STAT64, &mds) < 0) { in shmgetid()
278 if (mds.shmx_perm.ipcx_zoneid != zoneid) { in shmgetid()
298 struct shmid_ds64 mds; in shmgetkey() local
316 if (shmctl64(id, IPC_STAT64, &mds) < 0) in shmgetkey()
318 if (IPC_KEYMATCH(mds.shmx_perm, zoneid, k)) in shmgetkey()
/illumos-gate/usr/src/cmd/bnu/
H A Dsetmode.c35 struct mds { struct
41 static struct mds cmodes[] = { argument
95 static struct mds imodes[] = {
144 static struct mds lmodes[] = {
201 static struct mds omodes[] = {
/illumos-gate/usr/src/lib/madv/common/
H A Dmadv.c674 struct shmid_ds mds; in shmat() local
703 rc = shmctl(shmid, IPC_STAT, &mds); in shmat()
705 rc = memcntl(result, mds.shm_segsz, MC_ADVISE, in shmat()
709 result, mds.shm_segsz, advice, rc, errno)); in shmat()
712 (void) shmctl(shmid, IPC_STAT, &mds); in shmat()
713 (void) memcntl(result, mds.shm_segsz, MC_ADVISE, in shmat()