Lines Matching refs:pdp
422 * we check to see if 'pdp' is non-NULL and a pointer. If it is, we search
429 dt_decl_func(dt_decl_t *pdp, dt_node_t *dnp)
438 if (pdp == NULL || pdp->dd_kind != CTF_K_POINTER)
441 while (pdp->dd_next != NULL && !(pdp->dd_next->dd_attr & DT_DA_PAREN))
442 pdp = pdp->dd_next;
444 if (pdp->dd_next == NULL)
447 ddp->dd_next = pdp->dd_next;
448 pdp->dd_next = ddp;
450 return (pdp);