Lines Matching defs:mbp
70 * Note: Get allocates mbp->mb_top
75 smbfs_acl_iocget(int fd, uint32_t selector, mbdata_t *mbp)
81 error = mb_init_sz(mbp, MAX_RAW_SD_SIZE);
85 m = mbp->mb_top;
103 mb_done(mbp);
109 smbfs_acl_iocset(int fd, uint32_t selector, mbdata_t *mbp)
116 error = m_lineup(mbp->mb_top, &m);
120 if (mbp->mb_top != m)
121 mb_initm(mbp, m);
143 mbdata_t *mbp, mb_store;
146 mbp = &mb_store;
147 bzero(mbp, sizeof (*mbp));
151 * Returns allocated mbchain in mbp.
153 error = smbfs_acl_iocget(fd, selector, mbp);
160 error = md_get_ntsd(mbp, sdp);
163 mb_done(mbp);
173 mbdata_t *mbp, mb_store;
176 mbp = &mb_store;
177 error = mb_init_sz(mbp, MAX_RAW_SD_SIZE);
184 * Returns allocated mbchain in mbp.
186 error = mb_put_ntsd(mbp, sd);
191 error = smbfs_acl_iocset(fd, selector, mbp);
194 mb_done(mbp);