Lines Matching refs:pullmp
123 mblk_t *pullmp = NULL; in msgpullup_test() local
132 pullmp = msgpullup(mp, 4); in msgpullup_test()
133 KT_EASSERT3PG(pullmp, !=, NULL, ctx, cleanup); in msgpullup_test()
135 KT_ASSERT3UG(MBLKL(pullmp), ==, 4, ctx, cleanup); in msgpullup_test()
136 KT_ASSERT3UG(msgsize(pullmp), ==, 16, ctx, cleanup); in msgpullup_test()
137 KT_ASSERT3UG(msgsegs(pullmp), ==, 3, ctx, cleanup); in msgpullup_test()
138 KT_ASSERT3PG(pullmp->b_cont, !=, NULL, ctx, cleanup); in msgpullup_test()
139 KT_ASSERT3PG(pullmp->b_cont->b_datap, ==, mp->b_datap, ctx, cleanup); in msgpullup_test()
142 freemsg(pullmp); in msgpullup_test()
151 pullmp = msgpullup(mp, 5); in msgpullup_test()
152 KT_EASSERT3PG(pullmp, !=, NULL, ctx, cleanup); in msgpullup_test()
154 KT_ASSERT3UG(MBLKL(pullmp), ==, 5, ctx, cleanup); in msgpullup_test()
155 KT_ASSERT3UG(msgsize(pullmp), ==, 12, ctx, cleanup); in msgpullup_test()
156 KT_ASSERT3UG(msgsegs(pullmp), ==, 2, ctx, cleanup); in msgpullup_test()
157 KT_ASSERT3PG(pullmp->b_cont, !=, NULL, ctx, cleanup); in msgpullup_test()
158 KT_ASSERT3PG(pullmp->b_cont->b_datap, ==, mp->b_cont->b_datap, ctx, in msgpullup_test()
162 freemsg(pullmp); in msgpullup_test()
171 pullmp = msgpullup(mp, 12); in msgpullup_test()
172 KT_EASSERT3PG(pullmp, !=, NULL, ctx, cleanup); in msgpullup_test()
174 KT_ASSERT3UG(MBLKL(pullmp), ==, 12, ctx, cleanup); in msgpullup_test()
175 KT_ASSERT3UG(msgsize(pullmp), ==, 16, ctx, cleanup); in msgpullup_test()
176 KT_ASSERT3UG(msgsegs(pullmp), ==, 2, ctx, cleanup); in msgpullup_test()
177 KT_ASSERT3PG(pullmp->b_cont, !=, NULL, ctx, cleanup); in msgpullup_test()
178 KT_ASSERT3PG(pullmp->b_cont->b_datap, ==, mp->b_cont->b_cont->b_datap, in msgpullup_test()
186 if (pullmp != NULL) in msgpullup_test()
187 freemsg(pullmp); in msgpullup_test()