Lines Matching defs:proph

718 lookup_and_lock_propnode(int rw, picl_prophdl_t proph, picl_obj_t **nodep,
724 pobj = hash_lookup_obj(&ptreetbl, proph);
726 return (ptree_hdl_error(proph));
1084 lookup_verify_prop_handle(picl_prophdl_t proph, picl_obj_t **ret)
1088 propp = hash_lookup_obj(&ptreetbl, proph);
1090 return (ptree_hdl_error(proph));
1263 picl_prophdl_t *proph)
1331 *proph = pobj->ptree_hdl;
1398 ptree_destroy_prop(picl_prophdl_t proph)
1404 propp = hash_lookup_obj(&ptreetbl, proph);
1407 return (ptree_hdl_error(proph));
1428 ptree_add_prop(picl_nodehdl_t nodeh, picl_prophdl_t proph)
1441 err = lookup_verify_prop_handle(proph, &propp);
1549 ptree_delete_prop(picl_prophdl_t proph)
1561 err = lookup_and_lock_propnode(WRLOCK_NODE, proph, &nodep, &propp);
1723 ptree_get_next_by_row(picl_prophdl_t proph, picl_prophdl_t *nextrowh)
1733 * proph could be a table handle or a table entry handle
1737 err = lookup_and_lock_tableprop_node(RDLOCK_NODE, proph, &nodep,
1755 ptree_get_next_by_col(picl_prophdl_t proph, picl_prophdl_t *nextcolh)
1764 * proph could be a table handle or a table entry handle
1768 err = lookup_and_lock_tableprop_node(RDLOCK_NODE, proph, &nodep,
2096 ptree_get_propinfo(picl_prophdl_t proph, ptree_propinfo_t *pinfo)
2104 err = lookup_and_lock_propnode(RDLOCK_NODE, proph, &nodep, &propp);
2207 rarg.proph = propp->ptree_hdl;
2230 xptree_get_propval_with_cred(picl_prophdl_t proph, void *vbuf, size_t size,
2239 err = lookup_and_lock_propnode(RDLOCK_NODE, proph, &nodep, &propp);
2259 ptree_get_propval(picl_prophdl_t proph, void *vbuf, size_t size)
2261 return (xptree_get_propval_with_cred(proph, vbuf, size, picld_cred));
2339 warg.proph = propp->ptree_hdl;
2360 xptree_update_propval_with_cred(picl_prophdl_t proph, const void *vbuf,
2369 err = lookup_and_lock_propnode(WRLOCK_NODE, proph, &nodep, &propp);
2390 ptree_update_propval(picl_prophdl_t proph, const void *vbuf, size_t size)
2392 return (xptree_update_propval_with_cred(proph, vbuf, size, picld_cred));
2456 picl_prophdl_t *proph)
2479 *proph = propp->ptree_hdl;
2490 ptree_get_first_prop(picl_nodehdl_t nodeh, picl_prophdl_t *proph)
2504 *proph = pobj->first_prop->ptree_hdl;
2517 ptree_get_next_prop(picl_prophdl_t proph, picl_prophdl_t *nextproph)
2525 err = lookup_and_lock_propnode(RDLOCK_NODE, proph, &nodep, &propp);
2749 picl_prophdl_t proph;
2753 err = ptree_get_prop_by_name(nodeh, pname, &proph);
2757 err = ptree_get_propinfo(proph, &pinfo);
2768 err = ptree_get_propval(proph, vbuf,
3000 * handle to the caller if successful and proph is not NULL
3004 void *vbuf, picl_prophdl_t *proph)
3017 if (proph)
3018 *proph = tmph;
3111 picl_prophdl_t proph;
3115 err = ptree_get_prop_by_name(nodeh, pname, &proph);
3118 err = ptree_get_propinfo(proph, &propinfo);
3132 err = ptree_get_propval(proph, vbuf, propinfo.piclinfo.size);
3467 picl_prophdl_t proph;
3481 err = ptree_create_and_add_prop(rooth, &pinfo, &picl_vers, &proph);