Lines Matching refs:child
348 struct hash_node *next, *sibling, *child;
386 add_child(hash_node_t *parent, hash_node_t *child)
390 for (node = parent->child; node != NULL; node = node->next) {
391 if (node == child)
395 child->sibling = parent->child;
396 parent->child = child;
413 for (node = parent->child; node != NULL; node = node->sibling)
424 hash_node_t *parent, *child, *srk = NULL;
443 child = hash_insert(keys[i].keyUUID, &keys[i]);
444 add_child(parent, child);
447 srk = child;