Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/ttymon/
H A Dstty.h67 struct mds { struct
74 extern const struct mds lmodes[]; argument
75 extern const struct mds nlmodes[];
76 extern const struct mds cmodes[];
77 extern const struct mds ncmodes[];
78 extern const struct mds imodes[];
79 extern const struct mds nimodes[];
80 extern const struct mds omodes[];
81 extern const struct mds hmodes[];
82 extern const struct mds clkmodes[];
H A Dsttytable.c79 const struct mds cmodes[] = {
117 const struct mds ncmodes[] = {
127 const struct mds imodes[] = {
174 const struct mds nimodes[] = {
180 const struct mds lmodes[] = {
217 const struct mds nlmodes[] = {
237 const struct mds omodes[] = {
297 const struct mds hmodes[] = {
311 const struct mds clkmodes[] = {
/titanic_41/usr/src/cmd/ipcs/
H A Dipcs.c269 struct shmid_ds64 mds; in main() local
296 if (shmctl64(id, IPC_STAT64, &mds) < 0) in main()
300 mds.shmx_perm.ipcx_zoneid != zoneid) in main()
302 hp('m', "--rw-rw-rw-", &mds.shmx_perm, id); in main()
304 (void) printf(" %6llu", mds.shmx_nattch); in main()
306 (void) printf(" %10llu", mds.shmx_segsz); in main()
309 (int)mds.shmx_cpid, (int)mds.shmx_lpid); in main()
311 tp(mds.shmx_atime); in main()
312 tp(mds.shmx_dtime); in main()
313 tp(mds.shmx_ctime); in main()
[all …]
/titanic_41/usr/src/ucbcmd/stty/
H A Dsttytable.c71 const struct mds cmodes[] = {
113 const struct mds ncmodes[] = {
123 const struct mds imodes[] = {
170 const struct mds nimodes[] = {
176 const struct mds lmodes[] = {
217 const struct mds nlmodes[] = {
243 const struct mds omodes[] = {
304 const struct mds hmodes[] = {
318 const struct mds clkmodes[] = {
H A Dsttyparse.c61 extern const struct mds lmodes[];
62 extern const struct mds nlmodes[];
63 extern const struct mds cmodes[];
64 extern const struct mds ncmodes[];
65 extern const struct mds imodes[];
66 extern const struct mds nimodes[];
67 extern const struct mds omodes[];
68 extern const struct mds hmodes[];
69 extern const struct mds clkmodes[];
H A Dstty.h43 struct mds { struct
/titanic_41/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()
/titanic_41/usr/src/cmd/bnu/
H A Dsetmode.c37 struct mds { struct
43 static struct mds cmodes[] = { argument
97 static struct mds imodes[] = {
146 static struct mds lmodes[] = {
203 static struct mds omodes[] = {
/titanic_41/usr/src/lib/madv/common/
H A Dmadv.c676 struct shmid_ds mds; in shmat() local
707 rc = shmctl(shmid, IPC_STAT, &mds); in shmat()
711 rc = memcntl(result, mds.shm_segsz, MC_ADVISE, in shmat()
715 result, mds.shm_segsz, advice, rc, errno)); in shmat()