Lines Matching defs:pnp

3075 	rc_node_t *pnp;
3116 pnp = np->rn_parent;
3119 (void) pthread_mutex_lock(&pnp->rn_lock);
3124 rc_node_hold_locked(pnp);
3126 (void) pthread_mutex_unlock(&pnp->rn_lock);
3129 *out = pnp;
3164 rc_node_t *pnp;
3171 if ((rc = rc_node_ptr_parent(npp, &pnp)) != REP_PROTOCOL_SUCCESS) {
3176 if (type != pnp->rn_id.rl_type) {
3177 rc_node_rele(pnp);
3181 rc_node_assign(out, pnp);
3182 rc_node_rele(pnp);
3190 rc_node_t *pnp;
3199 if ((rc = rc_node_ptr_parent(npp, &pnp)) != REP_PROTOCOL_SUCCESS)
3202 *type_out = pnp->rn_id.rl_type;
3204 rc_node_rele(pnp);
4145 rc_pg_notify_fire(rc_node_pg_notify_t *pnp)
4149 if (pnp->rnpn_pg != NULL) {
4150 uu_list_remove(pnp->rnpn_pg->rn_pg_notify_list, pnp);
4151 (void) close(pnp->rnpn_fd);
4153 pnp->rnpn_pg = NULL;
4154 pnp->rnpn_fd = -1;
4156 assert(pnp->rnpn_fd == -1);
4309 rc_node_pg_notify_t *pnp;
4334 while ((pnp = uu_list_first(cp->rn_pg_notify_list)) != NULL)
4335 rc_pg_notify_fire(pnp);
4700 rc_node_pg_notify_t *pnp;
4988 while ((pnp = uu_list_first(np->rn_pg_notify_list)) != NULL)
4989 rc_pg_notify_fire(pnp);
6957 rc_node_pg_notify_t *pnp;
7246 while ((pnp = uu_list_first(np->rn_pg_notify_list)) != NULL)
7247 rc_pg_notify_fire(pnp);
7277 rc_pg_notify_init(rc_node_pg_notify_t *pnp)
7279 uu_list_node_init(pnp, &pnp->rnpn_node, rc_pg_notify_pool);
7280 pnp->rnpn_pg = NULL;
7281 pnp->rnpn_fd = -1;
7285 rc_pg_notify_setup(rc_node_pg_notify_t *pnp, rc_node_ptr_t *npp, int fd)
7310 rc_pg_notify_fire(pnp);
7311 pnp->rnpn_pg = np;
7312 pnp->rnpn_fd = fd;
7313 (void) uu_list_insert_after(np->rn_pg_notify_list, NULL, pnp);
7321 rc_pg_notify_fini(rc_node_pg_notify_t *pnp)
7324 rc_pg_notify_fire(pnp);
7327 uu_list_node_fini(pnp, &pnp->rnpn_node, rc_pg_notify_pool);