Searched refs:node (Results 1 – 3 of 3) sorted by relevance
498 struct gconv_module *node; in find_derivation() local508 node = __gconv_modules_db; in find_derivation()509 while (node != NULL) in find_derivation()519 runp = node; in find_derivation()647 node = node->left; in find_derivation()649 node = node->right; in find_derivation()814 if (node->left != NULL) in free_modules_db()815 free_modules_db (node->left); in free_modules_db()816 if (node->right != NULL) in free_modules_db()821 node = node->same; in free_modules_db()[all …]
694 add_known_names (struct gconv_module *node) in add_known_names() argument696 if (node->left != NULL) in add_known_names()697 add_known_names (node->left); in add_known_names()698 if (node->right != NULL) in add_known_names()699 add_known_names (node->right); in add_known_names()702 if (strcmp (node->from_string, "INTERNAL") != 0) in add_known_names()703 tsearch (node->from_string, &printlist, (__compar_fn_t) strverscmp); in add_known_names()704 if (strcmp (node->to_string, "INTERNAL") != 0) in add_known_names()705 tsearch (node->to_string, &printlist, (__compar_fn_t) strverscmp); in add_known_names()707 node = node->same; in add_known_names()[all …]
103 struct gconv_module *node = __gconv_modules_db; in detect_conflict() local105 while (node != NULL) in detect_conflict()107 int cmpres = strcmp (alias, node->from_string); in detect_conflict()113 node = node->left; in detect_conflict()115 node = node->right; in detect_conflict()118 return node != NULL; in detect_conflict()
Completed in 9 milliseconds