003 File Manager
Current Path:
/usr/src/contrib/subversion/subversion/include/private
usr
/
src
/
contrib
/
subversion
/
subversion
/
include
/
private
/
📁
..
📄
README
(241 B)
📄
ra_svn_sasl.h
(2.63 KB)
📄
ra_svn_wrapped_sasl.h
(3.89 KB)
📄
svn_adler32.h
(1.47 KB)
📄
svn_atomic.h
(4.83 KB)
📄
svn_auth_private.h
(11.32 KB)
📄
svn_branch.h
(22.98 KB)
📄
svn_branch_compat.h
(10.78 KB)
📄
svn_branch_impl.h
(5.67 KB)
📄
svn_branch_nested.h
(7.55 KB)
📄
svn_branch_repos.h
(3.47 KB)
📄
svn_cache.h
(22.67 KB)
📄
svn_cert.h
(2.27 KB)
📄
svn_client_mtcc.h
(7.8 KB)
📄
svn_client_private.h
(22.85 KB)
📄
svn_client_shelf.h
(16.26 KB)
📄
svn_client_shelf2.h
(15.27 KB)
📄
svn_cmdline_private.h
(10.52 KB)
📄
svn_config_private.h
(4.26 KB)
📄
svn_dav_protocol.h
(2.56 KB)
📄
svn_debug.h
(3.35 KB)
📄
svn_delta_private.h
(4.91 KB)
📄
svn_dep_compat.h
(6.64 KB)
📄
svn_diff_private.h
(6 KB)
📄
svn_diff_tree.h
(14.32 KB)
📄
svn_dirent_uri_private.h
(1.85 KB)
📄
svn_doxygen.h
(1.27 KB)
📄
svn_editor.h
(43.09 KB)
📄
svn_element.h
(12.83 KB)
📄
svn_eol_private.h
(3.18 KB)
📄
svn_error_private.h
(1.67 KB)
📄
svn_fs_fs_private.h
(11.08 KB)
📄
svn_fs_private.h
(8.36 KB)
📄
svn_fs_util.h
(11.11 KB)
📄
svn_fspath.h
(5.36 KB)
📄
svn_io_private.h
(6.47 KB)
📄
svn_log.h
(6.96 KB)
📄
svn_magic.h
(2.36 KB)
📄
svn_mergeinfo_private.h
(12.71 KB)
📄
svn_mutex.h
(4.3 KB)
📄
svn_object_pool.h
(4.53 KB)
📄
svn_opt_private.h
(5.73 KB)
📄
svn_packed_data.h
(9.39 KB)
📄
svn_ra_private.h
(12.07 KB)
📄
svn_ra_svn_private.h
(38.63 KB)
📄
svn_repos_private.h
(15.45 KB)
📄
svn_skel.h
(8.46 KB)
📄
svn_sorts_private.h
(7.66 KB)
📄
svn_sqlite.h
(23.22 KB)
📄
svn_string_private.h
(11.05 KB)
📄
svn_subr_private.h
(24.43 KB)
📄
svn_temp_serializer.h
(8.75 KB)
📄
svn_token.h
(3.11 KB)
📄
svn_utf_private.h
(11.18 KB)
📄
svn_wc_private.h
(93.26 KB)
Editing: svn_delta_private.h
/** * @copyright * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== * @endcopyright * * @file svn_delta_private.h * @brief The Subversion delta/diff/editor library - Internal routines */ #ifndef SVN_DELTA_PRIVATE_H #define SVN_DELTA_PRIVATE_H #include <apr_pools.h> #include "svn_types.h" #include "svn_error.h" #include "svn_delta.h" #include "svn_editor.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ typedef svn_error_t *(*svn_delta__start_edit_func_t)( void *baton, svn_revnum_t base_revision); typedef svn_error_t *(*svn_delta__target_revision_func_t)( void *baton, svn_revnum_t target_revision, apr_pool_t *scratch_pool); typedef svn_error_t *(*svn_delta__unlock_func_t)( void *baton, const char *path, apr_pool_t *scratch_pool); /* See svn_editor__insert_shims() for more information. */ struct svn_delta__extra_baton { svn_delta__start_edit_func_t start_edit; svn_delta__target_revision_func_t target_revision; void *baton; }; /** A temporary API to convert from a delta editor to an Ev2 editor. */ svn_error_t * svn_delta__editor_from_delta(svn_editor_t **editor_p, struct svn_delta__extra_baton **exb, svn_delta__unlock_func_t *unlock_func, void **unlock_baton, const svn_delta_editor_t *deditor, void *dedit_baton, svn_boolean_t *send_abs_paths, const char *repos_root, const char *base_relpath, svn_cancel_func_t cancel_func, void *cancel_baton, svn_delta_fetch_kind_func_t fetch_kind_func, void *fetch_kind_baton, svn_delta_fetch_props_func_t fetch_props_func, void *fetch_props_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool); /** A temporary API to convert from an Ev2 editor to a delta editor. */ svn_error_t * svn_delta__delta_from_editor(const svn_delta_editor_t **deditor, void **dedit_baton, svn_editor_t *editor, svn_delta__unlock_func_t unlock_func, void *unlock_baton, svn_boolean_t *found_abs_paths, const char *repos_root, const char *base_relpath, svn_delta_fetch_props_func_t fetch_props_func, void *fetch_props_baton, svn_delta_fetch_base_func_t fetch_base_func, void *fetch_base_baton, struct svn_delta__extra_baton *exb, apr_pool_t *pool); /** Read the txdelta window header from @a stream and return the total length of the unparsed window data in @a *window_len. */ svn_error_t * svn_txdelta__read_raw_window_len(apr_size_t *window_len, svn_stream_t *stream, apr_pool_t *pool); /* Return a debug editor that wraps @a wrapped_editor. * * The debug editor simply prints an indication of what callbacks are being * called to @c stdout, and is only intended for use in debugging subversion * editors. * * @a prefix, if non-null, is printed between "DBG: " and each indication. * * Note: Our test suite generally ignores stdout lines starting with "DBG:". */ svn_error_t * svn_delta__get_debug_editor(const svn_delta_editor_t **editor, void **edit_baton, const svn_delta_editor_t *wrapped_editor, void *wrapped_baton, const char *prefix, apr_pool_t *pool); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_DELTA_PRIVATE_H */
Upload File
Create Folder