Home
last modified time | relevance | path

Searched refs:mop (Results 1 – 14 of 14) sorted by relevance

/titanic_44/usr/src/uts/common/io/
H A Dbufmod.c286 mblk_t *mop; in sbioc() local
334 if ((mop = allocb(sizeof (struct stroptions), in sbioc()
340 mop->b_datap->db_type = M_SETOPTS; in sbioc()
341 mop->b_wptr += sizeof (struct stroptions); in sbioc()
342 sop = (struct stroptions *)mop->b_rptr; in sbioc()
346 qreply(wq, mop); in sbioc()
371 if ((mop = allocb(sizeof (struct stroptions), in sbioc()
378 mop->b_datap->db_type = M_SETOPTS; in sbioc()
379 mop->b_wptr += sizeof (struct stroptions); in sbioc()
380 sop = (struct stroptions *)mop->b_rptr; in sbioc()
[all …]
H A Dzcons.c460 mblk_t *mop; in zc_master_open() local
470 if ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in zc_master_open()
497 mop->b_datap->db_type = M_SETOPTS; in zc_master_open()
498 mop->b_wptr += sizeof (struct stroptions); in zc_master_open()
499 sop = (struct stroptions *)(void *)mop->b_rptr; in zc_master_open()
506 putnext(rqp, mop); in zc_master_open()
520 mblk_t *mop; in zc_slave_open() local
551 if ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in zc_slave_open()
575 mop->b_datap->db_type = M_SETOPTS; in zc_slave_open()
576 mop->b_wptr += sizeof (struct stroptions); in zc_slave_open()
[all …]
H A Dptm.c317 mblk_t *mop; /* ptr to a setopts message block */ in ptmopen() local
346 mop = allocb(sizeof (struct stroptions), BPRI_MED); in ptmopen()
347 if (mop == NULL) { in ptmopen()
354 freemsg(mop); in ptmopen()
376 mop->b_datap->db_type = M_SETOPTS; in ptmopen()
377 mop->b_wptr += sizeof (struct stroptions); in ptmopen()
378 sop = (struct stroptions *)mop->b_rptr; in ptmopen()
385 putnext(rqp, mop); in ptmopen()
H A Dpckt.c213 mblk_t *mop; /* ptr to a setopts msg block */ in pcktopen() local
248 while ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in pcktopen()
265 mop->b_datap->db_type = M_SETOPTS; in pcktopen()
266 mop->b_wptr += sizeof (struct stroptions); in pcktopen()
267 sop = (struct stroptions *)mop->b_rptr; in pcktopen()
275 putnext(q, mop); in pcktopen()
H A Dpts.c296 mblk_t *mop; /* ptr to a setopts message block */ in ptsopen() local
363 if ((mop = allocb(sizeof (struct stroptions), BPRI_MED)) == NULL) { in ptsopen()
378 freemsg(mop); in ptsopen()
408 mop->b_datap->db_type = M_SETOPTS; in ptsopen()
409 mop->b_wptr += sizeof (struct stroptions); in ptsopen()
410 sop = (struct stroptions *)mop->b_rptr; in ptsopen()
414 putnext(rqp, mop); in ptsopen()
H A Dptem.c158 mblk_t *mop; /* an setopts mblk */ in ptemopen() local
194 mop = allocb(sizeof (struct stroptions), BPRI_MED); in ptemopen()
195 if (mop == NULL) { in ptemopen()
200 mop->b_datap->db_type = M_SETOPTS; in ptemopen()
201 mop->b_wptr += sizeof (struct stroptions); in ptemopen()
202 sop = (struct stroptions *)mop->b_rptr; in ptemopen()
241 putnext(q, mop); in ptemopen()
H A Decpp.c1024 mblk_t *mop; in ecpp_open() local
1092 if (!(mop = allocb(sizeof (struct stroptions), BPRI_MED))) { in ecpp_open()
1096 mop->b_datap->db_type = M_SETOPTS; in ecpp_open()
1097 mop->b_wptr += sizeof (struct stroptions); in ecpp_open()
1103 sop = (struct stroptions *)mop->b_rptr; in ecpp_open()
1111 putnext(q, mop); in ecpp_open()
/titanic_44/usr/src/uts/common/fs/
H A Dvfs.c2268 mntopt_t *mop, *motbl; in vfs_mergeopttbl() local
2290 if ((mop = vfs_hasopt(omo, imo->mo_list[i].mo_name)) != NULL) { in vfs_mergeopttbl()
2292 uint_t index = mop - omo->mo_list; in vfs_mergeopttbl()
2294 newcanp = vfs_mergecancelopts(mop, &motbl[index]); in vfs_mergeopttbl()
2326 struct mntopt *mop; in vfs_clearmntopt_nolock() local
2333 mop = &mops->mo_list[i]; in vfs_clearmntopt_nolock()
2335 if (mop->mo_flags & MO_EMPTY) in vfs_clearmntopt_nolock()
2337 if (strcmp(opt, mop->mo_name)) in vfs_clearmntopt_nolock()
2339 mop->mo_flags &= ~MO_SET; in vfs_clearmntopt_nolock()
2340 if (mop->mo_arg != NULL) { in vfs_clearmntopt_nolock()
[all …]
/titanic_44/usr/src/uts/common/fs/mntfs/
H A Dmntvnops.c163 mntopt_t *mop; in mntfs_optsize() local
166 mop = &vfsp->vfs_mntopts.mo_list[i]; in mntfs_optsize()
167 if (mop->mo_flags & MO_NODISPLAY) in mntfs_optsize()
169 if (mop->mo_flags & MO_SET) { in mntfs_optsize()
172 size += strlen(mop->mo_name); in mntfs_optsize()
176 if (mop->mo_arg != NULL) { in mntfs_optsize()
177 size += strlen(mop->mo_arg) + 1; in mntfs_optsize()
204 mntopt_t *mop; in mntfs_optprint() local
208 mop = &vfsp->vfs_mntopts.mo_list[i]; in mntfs_optprint()
209 if (mop->mo_flags & MO_NODISPLAY) in mntfs_optprint()
[all …]
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/
H A Ddeflate.c767 z_decompress(void *arg, mblk_t **mop) in z_decompress() argument
770 mblk_t *mi = *mop, *mnext; in z_decompress()
789 *mop = NULL; in z_decompress()
992 *mop = mo_head; in z_decompress()
/titanic_44/usr/src/uts/common/fs/nfs/
H A Dnfs4_stub_vnops.c3261 struct mntopt *mop = &optproto->mo_list[i]; in nfs4_trigger_create_mntopts() local
3263 if (mop->mo_flags & MO_EMPTY) in nfs4_trigger_create_mntopts()
3266 if (nfs4_trigger_add_mntopt(mntopts, mop->mo_name, vfsp)) { in nfs4_trigger_create_mntopts()
/titanic_44/usr/src/lib/libsldap/common/
H A Dns_writes.c162 int mop, in init_bval_mod() argument
203 mod->mod_op = mop | LDAP_MOD_BVALUES; in init_bval_mod()
/titanic_44/usr/src/cmd/look/
H A Dwords15126 mop
/titanic_44/usr/src/cmd/spell/
H A Dlist15124 mop