Lines Matching refs:curNode
106 ParamList curNode = list;
107 while (curNode != NULL) {
108 ParamList nextNode = curNode->next;
109 DestroyParamEntry(curNode->entry);
110 free(curNode);
111 curNode = nextNode;
133 ParamList curNode = list;
134 while (curNode != NULL) {
135 if (curNode->next == NULL) {
136 // if the curNode is the last node, create a tail node
150 curNode->next = node;
154 curNode = curNode->next;