Lines Matching defs:temp_node
569 dns_rbtnode_t temp_node;
584 temp_node = *node;
585 temp_node.down_is_relative = 0;
586 temp_node.left_is_relative = 0;
587 temp_node.right_is_relative = 0;
588 temp_node.parent_is_relative = 0;
589 temp_node.data_is_relative = 0;
590 temp_node.is_mmapped = 1;
598 if (temp_node.parent != NULL) {
599 temp_node.parent = (dns_rbtnode_t *)(parent);
600 temp_node.parent_is_relative = 1;
602 if (temp_node.left != NULL) {
603 temp_node.left = (dns_rbtnode_t *)(left);
604 temp_node.left_is_relative = 1;
606 if (temp_node.right != NULL) {
607 temp_node.right = (dns_rbtnode_t *)(right);
608 temp_node.right_is_relative = 1;
610 if (temp_node.down != NULL) {
611 temp_node.down = (dns_rbtnode_t *)(down);
612 temp_node.down_is_relative = 1;
614 if (temp_node.data != NULL) {
615 temp_node.data = (dns_rbtnode_t *)(data);
616 temp_node.data_is_relative = 1;
622 CHECK(isc_stdio_write(&temp_node, 1, sizeof(dns_rbtnode_t),
632 hexdump("node header", (unsigned char*) &temp_node,
637 isc_crc64_update(crc, (const isc_uint8_t *) &temp_node,