Searched refs:childPtr (Results 1 – 2 of 2) sorted by relevance
58 groupNode->childPtr = child; in AddGroupNode()81 *child = childNode->childPtr; in InsertElementToTrie()84 ParamContextsTrie *childPtr = (ParamContextsTrie *)calloc(1, sizeof(ParamContextsTrie)); in InsertElementToTrie() local85 if (childPtr == NULL) { in InsertElementToTrie()88 childPtr->prefixLabel = EMPTY_STRING; in InsertElementToTrie()89 childPtr->matchLabel = EMPTY_STRING; in InsertElementToTrie()90 childPtr->labeled = UNLABELED; in InsertElementToTrie()91 if (HashMapCreate(&childPtr->handle) != 0) { in InsertElementToTrie()92 ReleaseParamContextsTrieNode(&childPtr); in InsertElementToTrie()95 if (AddGroupNode(root, element, childPtr) == NULL) { in InsertElementToTrie()[all …]
50 ParamContextsTrie *childPtr; member