Lines Matching defs:headers

61   svn_repos__dumpfile_headers_t *headers;
189 new_db->headers = NULL;
221 /* Append to HEADERS the required headers, and set *CONTENT to the property
225 get_props_content(svn_repos__dumpfile_headers_t *headers,
247 headers, SVN_REPOS_DUMPFILE_PROP_DELTA, "true");
255 * line, not two, after the headers. Why? Historical precedent for the
264 svn_repos__dumpfile_headers_t *headers
271 headers, SVN_REPOS_DUMPFILE_NODE_PATH, node_relpath);
275 headers, SVN_REPOS_DUMPFILE_NODE_ACTION, "delete");
277 SVN_ERR(svn_repos__dump_node_record(stream, headers,
283 /* Set *HEADERS_P to contain some headers for the node at PATH of type KIND.
313 svn_repos__dumpfile_headers_t *headers
327 headers, SVN_REPOS_DUMPFILE_NODE_PATH, node_relpath);
332 headers, SVN_REPOS_DUMPFILE_NODE_KIND, "file");
335 headers, SVN_REPOS_DUMPFILE_NODE_KIND, "dir");
348 headers, SVN_REPOS_DUMPFILE_NODE_ACTION, "change");
354 headers, SVN_REPOS_DUMPFILE_NODE_ACTION, "delete");
362 headers, SVN_REPOS_DUMPFILE_NODE_ACTION, "replace");
391 headers, SVN_REPOS_DUMPFILE_NODE_ACTION, "add");
397 headers, SVN_REPOS_DUMPFILE_NODE_COPYFROM_REV, "%ld", copyfrom_rev);
399 headers, SVN_REPOS_DUMPFILE_NODE_COPYFROM_PATH, copyfrom_path);
428 /* Return the headers so far. We don't necessarily have all the headers
429 yet -- there may be property-related and content length headers to
431 *headers_p = headers;
441 svn_repos__dumpfile_headers_t *headers
446 headers, SVN_REPOS_DUMPFILE_NODE_PATH, repos_relpath);
450 headers, SVN_REPOS_DUMPFILE_NODE_KIND, "dir");
454 headers, SVN_REPOS_DUMPFILE_NODE_ACTION, "add");
457 SVN_ERR(get_props_content(headers, &prop_content,
460 SVN_ERR(svn_repos__dump_node_record(eb->stream, headers, prop_content,
470 /* Dump pending headers and properties for the directory EB->pending_db (if
485 SVN_ERR(get_props_content(db->headers, &prop_content,
489 SVN_ERR(svn_repos__dump_node_record(eb->stream, db->headers, prop_content,
561 SVN_ERR(dump_node(&new_db->headers,
628 SVN_ERR(dump_node(&new_db->headers,
703 SVN_ERR(dump_node(&db->headers,
843 /* Dump the property headers and wait; close_file might need
844 to write text headers too depending on whether
885 svn_repos__dumpfile_headers_t *headers;
889 /* Start dumping this node, by collecting some basic headers for it. */
890 SVN_ERR(dump_node(&headers, eb, fb->repos_relpath, NULL, fb,
894 /* Some pending properties to dump? We'll dump just the headers for
896 the text headers too (if present). */
899 SVN_ERR(get_props_content(headers, &propstring,
904 /* Dump the text headers */
911 headers, SVN_REPOS_DUMPFILE_TEXT_DELTA, "true");
920 headers, SVN_REPOS_DUMPFILE_TEXT_DELTA_BASE_MD5, fb->base_checksum);
924 headers, SVN_REPOS_DUMPFILE_TEXT_CONTENT_MD5, text_checksum);
927 /* Dump the headers and props now */
928 SVN_ERR(svn_repos__dump_node_record(eb->stream, headers, propstring,