Lines Matching refs:nodeStruct

77 	struct nodeStruct *nextInstance, *prevInstance;
89 struct nodeStruct {
92 struct nodeStruct *next;
93 struct nodeStruct *prev;
94 struct nodeStruct *parent;
95 struct nodeStruct *head; /* One end of the child list... */
96 struct nodeStruct *tail; /* The other end... */
132 static struct nodeStruct OWconfigDatabase;
140 a database nodeStruct.
151 static struct nodeStruct *instanceListHead = NULL;
152 static struct nodeStruct *instanceListTail = NULL;
184 freeNodeList(struct nodeStruct *np)
186 struct nodeStruct *next;
206 freeClass(struct nodeStruct *cp)
224 freeInstance(struct nodeStruct *ip)
227 struct nodeStruct *nextInstance, *prevInstance;
263 freeAttr(struct nodeStruct *ap)
335 static struct nodeStruct *
336 searchNodeList(struct nodeStruct *node, char *name)
357 static struct nodeStruct *
363 return((struct nodeStruct *)NULL);
373 static struct nodeStruct *
376 struct nodeStruct *cp;
382 return((struct nodeStruct *)NULL);
395 static struct nodeStruct *
398 struct nodeStruct *instanceNode;
404 return((struct nodeStruct *)NULL);
414 static struct nodeStruct *
417 struct nodeStruct *cp;
419 cp = (struct nodeStruct *)allocMem(sizeof(struct nodeStruct));
458 static struct nodeStruct *
461 struct nodeStruct *cp, *ip;
470 ip = (struct nodeStruct *)allocMem(sizeof(struct nodeStruct));
1046 struct nodeStruct *cp, *ip, *ap;
1266 struct nodeStruct *cp, *ip;
1279 struct nodeStruct *next = ip->next;
1346 struct nodeStruct *ip;
1379 struct nodeStruct *cp, *ip, *ap;
1404 ap = (struct nodeStruct *)
1405 allocMem(sizeof(struct nodeStruct));
1466 struct nodeStruct *cp, *ip;
1555 struct nodeStruct *ip, *ap;
1651 struct nodeStruct *ap;
1762 struct nodeStruct *oldHead, *oldTail;