Lines Matching refs:pitem
3074 ng_realloc_item(item_p pitem, int type, int flags) in ng_realloc_item() argument
3079 KASSERT((pitem != NULL), ("%s: can't reallocate NULL", __func__)); in ng_realloc_item()
3083 from = ((pitem->el_flags & NGQF_TYPE) == NGQF_DATA); in ng_realloc_item()
3088 ng_free_item(pitem); in ng_realloc_item()
3091 *item = *pitem; in ng_realloc_item()
3092 ng_free_item(pitem); in ng_realloc_item()
3094 item = pitem; in ng_realloc_item()
3764 ng_send_fn2(node_p node, hook_p hook, item_p pitem, ng_item_fn2 *fn, void *arg1, in ng_send_fn2() argument
3769 KASSERT((pitem != NULL || (flags & NG_REUSE_ITEM) == 0), in ng_send_fn2()
3776 if (pitem == NULL || (flags & NG_REUSE_ITEM) == 0) { in ng_send_fn2()
3779 if (pitem != NULL) in ng_send_fn2()
3780 item->apply = pitem->apply; in ng_send_fn2()
3782 if ((item = ng_realloc_item(pitem, NGQF_FN2, flags)) == NULL) in ng_send_fn2()