Lines Matching refs:base_node

1648   db_node_t *base_node = NULL;
1754 base_node = MAYBE_ALLOC(base_node, result_pool);
1762 base_node = MAYBE_ALLOC(base_node, result_pool);
1771 base_node = MAYBE_ALLOC(base_node, result_pool);
1779 base_node = MAYBE_ALLOC(base_node, result_pool);
1789 WRITE_ENTRY_ASSERT(base_node || below_working_node);
1791 if (base_node)
1792 base_node->presence = svn_wc__db_status_not_present;
1798 WRITE_ENTRY_ASSERT(base_node && !working_node && !below_working_node);
1800 base_node->presence = svn_wc__db_status_server_excluded;
1949 base_node = MAYBE_ALLOC(base_node, result_pool);
1954 if (base_node)
1956 base_node->wc_id = wc_id;
1957 base_node->local_relpath = local_relpath;
1958 base_node->op_depth = 0;
1959 base_node->parent_relpath = parent_relpath;
1960 base_node->revision = entry->revision;
1961 base_node->recorded_time = entry->text_time;
1962 base_node->recorded_size = entry->working_size;
1965 base_node->depth = entry->depth;
1968 base_node->presence = svn_wc__db_status_excluded;
1969 base_node->depth = svn_depth_infinity;
1974 WRITE_ENTRY_ASSERT(base_node->presence
1977 base_node->kind = entry->kind;
1981 WRITE_ENTRY_ASSERT(base_node->presence
1984 base_node->kind = entry->kind;
1989 if (!SVN_IS_VALID_REVNUM(base_node->revision) && parent_node->base)
1990 base_node->revision = parent_node->base->revision;
1994 base_node->kind = entry->kind;
1996 if (base_node->presence != svn_wc__db_status_excluded)
2004 base_node->presence = svn_wc__db_status_incomplete;
2010 base_node->revision = parent_node->base->revision;
2015 WRITE_ENTRY_ASSERT(base_node->presence
2017 base_node->presence = svn_wc__db_status_incomplete;
2023 base_node->checksum = NULL;
2027 base_node->checksum = text_base_info->revert_base.sha1_checksum;
2029 base_node->checksum = text_base_info->normal_base.sha1_checksum;
2031 base_node->checksum = NULL;
2073 base_node->repos_id = repos_id;
2077 base_node->repos_relpath = svn_uri_skip_ancestor(
2087 base_node->repos_relpath = entry->name;
2089 base_node->repos_relpath =
2100 base_node->changed_rev = entry->cmt_rev;
2101 base_node->changed_date = entry->cmt_date;
2102 base_node->changed_author = entry->cmt_author;
2105 base_node->file_external = TRUE;
2109 && is_switched(parent_node->base, base_node, scratch_pool))
2110 base_node->inherited_props
2113 SVN_ERR(insert_node(sdb, base_node, scratch_pool));
2323 (*entry_node)->base = base_node;