Lines Matching defs:wrapper
157 * This is the loadable module wrapper.
947 * If there's insufficient space we allocate one message to hold this 'wrapper'.
958 mblk_t *wrapper; /* padding for msg N, header for msg N+1 */
1081 * Find space for the wrapper. The wrapper consists of:
1089 * It may be possible to append the wrapper to the last mblk
1095 /* Is there space for the wrapper beyond the message's data ? */
1113 /* Have to allocate additional space for the wrapper */
1114 wrapper = allocb(wrapperlen, BPRI_MED);
1115 if (wrapper == NULL) {
1124 (void) memset(wrapper->b_wptr, 0, pad);
1125 wrapper->b_wptr += pad;
1127 /* Link the wrapper msg onto the end of the chunk */
1128 linkb(mp, wrapper);
1129 /* Remember to write the next header in this wrapper */
1130 sbp->sb_head = wrapper;