Lines Matching defs:node
181 freeNodeList: The generic node list destructor...
203 freeClass: The class node destructor...
221 freeInstance: The instance node destructor...
260 freeAttr: The attribute node destructor...
330 searchNodeList: Searches next-wise along a list, starting at the node
331 pointed to by "node", until either the end of the list is
332 found, or a node whose name matches the string pointed to by
336 searchNodeList(struct nodeStruct *node, char *name)
341 while (node) {
342 if ((nameHash == node->hashValue) && !strcmp(name, node->name))
344 node = node->next;
347 return(node);
354 searchClass: Searches for the class node whose name matches the string
370 searchInstance: Searches for the instance node identified by "name",
371 parented by the class node identified by "class".
391 searchAttr: Searches for the attribute node identified by "attr",
392 parented by the instance node identified by "name",
393 which in turn is parented by the class node identified by "class".
412 createClass: Creates a new class node within the OWconfig database.
453 createInstance: Creates a new instance node parented by the class node
454 identified by "class". The instance node will be identified
455 by "name". If the class node does not already exist, it will