Lines Matching defs:node

258 static void threshold(picl_nodehdl_t node, char *oidstr, int row,
260 static void add_thresholds(picl_nodehdl_t node, int row, int *snmp_syserr_p);
266 static int add_string_prop(picl_nodehdl_t node, char *propname, char *propval);
267 static int add_void_prop(picl_nodehdl_t node, char *propname);
495 LOGPRINTF("tree_builder: getting root node\n");
502 LOGPRINTF("tree_builder: getting existing physplat node\n");
576 * Create the physical-platform node
706 * If we've already created this picl node, just return it
714 * subtree's root node
729 * Figure out the physical-platform node name from entPhysicalName;
1021 * Saves the node handle and the row id into physplat_nodes[]. If we're
1023 * old physplat_nodes before entering here to save the first node of the
1388 threshold(picl_nodehdl_t node, char *oidstr, int row, char *propname,
1396 err = add_volatile_prop(node, propname, PICL_PTYPE_INT,
1406 add_thresholds(picl_nodehdl_t node, int row, int *snmp_syserr_p)
1458 threshold(node,
1464 threshold(node,
1470 threshold(node,
1476 threshold(node,
1482 threshold(node,
1488 threshold(node,
1524 add_volatile_prop(picl_nodehdl_t node, char *name, int type, int access,
1539 err = ptree_create_and_add_prop(node, &propinfo, NULL, &prop);
1541 log_msg(LOG_ERR, SNMPP_CANT_ADD_PROP, err, node);
1552 * Add the specified string property to the node
1555 add_string_prop(picl_nodehdl_t node, char *propname, char *propval)
1571 err = ptree_create_and_add_prop(node, &propinfo, propval, NULL);
1573 log_msg(LOG_ERR, SNMPP_CANT_ADD_STR_PROP, err, node);
1581 * Add the specified void property to the node
1584 add_void_prop(picl_nodehdl_t node, char *propname)
1596 err = ptree_create_and_add_prop(node, &propinfo, NULL, NULL);
1598 log_msg(LOG_ERR, SNMPP_CANT_ADD_VOID_PROP, err, node);