Home
last modified time | relevance | path

Searched refs:childPtr (Results 1 – 2 of 2) sorted by relevance

/base/security/selinux/interfaces/policycoreutils/src/
Dcontexts_trie.c58 groupNode->childPtr = child; in AddGroupNode()
81 *child = childNode->childPtr; in InsertElementToTrie()
84 ParamContextsTrie *childPtr = (ParamContextsTrie *)calloc(1, sizeof(ParamContextsTrie)); in InsertElementToTrie() local
85 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 …]
/base/security/selinux/interfaces/policycoreutils/include/
Dselinux_map.h50 ParamContextsTrie *childPtr; member