Home | History | Annotate | Download | only in ctestfw

Lines Matching defs:child

46   struct TestNode* child;
175 newNode->child = NULL;
186 if(tn->child != NULL) {
187 cleanUpTestTree(tn->child);
231 /* Start with the next child */
232 nextNode = curNode->child;
249 curNode->child = createTestNode(name, nameLen);
250 /* printf("*** added %s\n", curNode->child->name );*/
251 curNode = curNode->child;
439 if(root->child) {
448 iterateTestsWithLevel ( root->child, depth, nodeList, mode );
573 /* Start with the next child */
574 nextNode = curNode->child;