| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBFileSpec.cpp | 101 int SBFileSpec::ResolvePath(const char *src_path, char *dst_path, in ResolvePath() argument 104 (const char *, char *, size_t), src_path, dst_path, in ResolvePath() 109 ::snprintf(dst_path, dst_len, "%s", result.c_str()); in ResolvePath() 145 uint32_t SBFileSpec::GetPath(char *dst_path, size_t dst_len) const { in GetPath() argument 147 (char *, size_t), dst_path, "", dst_len); in GetPath() 149 uint32_t result = m_opaque_up->GetPath(dst_path, dst_len); in GetPath() 151 if (result == 0 && dst_path && dst_len > 0) in GetPath() 152 *dst_path = '\0'; in GetPath()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_fs_x/ |
| H A D | hotcopy.c | 46 const char *dst_path, in hotcopy_io_dir_file_copy() argument 56 dst_target = svn_dirent_join(dst_path, file, scratch_pool); in hotcopy_io_dir_file_copy() 132 const char *dst_path; in hotcopy_io_copy_dir_recursively() local 141 dst_path = svn_dirent_join(dst_parent, dst_basename, scratch_pool); in hotcopy_io_copy_dir_recursively() 158 SVN_ERR(svn_io_check_path(dst_path, &kind, subpool)); in hotcopy_io_copy_dir_recursively() 162 SVN_ERR(svn_io_make_dir_recursively(dst_path, scratch_pool)); in hotcopy_io_copy_dir_recursively() 196 const char *dst_target = svn_dirent_join(dst_path, in hotcopy_io_copy_dir_recursively() 215 dst_path, in hotcopy_io_copy_dir_recursively() 695 const char *dst_path, in svn_fs_x__hotcopy() argument 719 dst_format_abspath = svn_dirent_join(dst_path, PATH_FORMAT, in svn_fs_x__hotcopy() [all …]
|
| H A D | hotcopy.h | 38 const char *dst_path,
|
| H A D | fs.c | 531 const char *dst_path, in x_hotcopy() argument 555 return svn_fs_x__hotcopy(src_fs, dst_fs, src_path, dst_path, in x_hotcopy()
|
| /freebsd-13.1/contrib/subversion/subversion/svn/ |
| H A D | move-cmd.c | 50 const char *dst_path; in svn_cl__move() local 68 dst_path = APR_ARRAY_IDX(targets, targets->nelts - 1, const char *); in svn_cl__move() 71 if (! svn_path_is_url(dst_path)) in svn_cl__move() 87 err = svn_client_move7(targets, dst_path, in svn_cl__move()
|
| H A D | copy-cmd.c | 49 const char *src_path, *dst_path; in svn_cl__copy() local 120 SVN_ERR(svn_opt_parse_path(&peg, &dst_path, tgt, pool)); in svn_cl__copy() 133 dst_is_url = svn_path_is_url(dst_path); in svn_cl__copy() 170 err = svn_client_copy7(sources, dst_path, TRUE, in svn_cl__copy()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_fs_fs/ |
| H A D | hotcopy.c | 45 const char *dst_path, in hotcopy_io_dir_file_copy() argument 55 dst_target = svn_dirent_join(dst_path, file, scratch_pool); in hotcopy_io_dir_file_copy() 75 return svn_error_trace(svn_io_dir_file_copy(src_path, dst_path, file, in hotcopy_io_dir_file_copy() 131 const char *dst_path; in hotcopy_io_copy_dir_recursively() local 140 dst_path = svn_dirent_join(dst_parent, dst_basename, pool); in hotcopy_io_copy_dir_recursively() 156 SVN_ERR(svn_io_check_path(dst_path, &kind, subpool)); in hotcopy_io_copy_dir_recursively() 160 SVN_ERR(svn_io_make_dir_recursively(dst_path, pool)); in hotcopy_io_copy_dir_recursively() 194 const char *dst_target = svn_dirent_join(dst_path, in hotcopy_io_copy_dir_recursively() 213 dst_path, in hotcopy_io_copy_dir_recursively() 1008 const char *dst_path, in svn_fs_fs__hotcopy() argument [all …]
|
| H A D | hotcopy.h | 37 const char *dst_path,
|
| H A D | fs.c | 575 const char *dst_path, in fs_hotcopy() argument 595 return svn_fs_fs__hotcopy(src_fs, dst_fs, src_path, dst_path, in fs_hotcopy()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 102 std::string dst_path(destination.GetPath()); in PutFile() local 103 if (dst_path.empty()) in PutFile() 114 if (chown_file(this, dst_path.c_str(), uid, gid) != 0) in PutFile() 122 std::string dst_path(destination.GetPath()); in PutFile() local 123 if (dst_path.empty()) in PutFile() 129 dst_path.c_str()); in PutFile() 135 GetHostname(), dst_path.c_str()); in PutFile() 163 std::string dst_path(destination.GetPath()); in GetFile() local 164 if (dst_path.empty()) in GetFile() 185 dst_path.c_str()); in GetFile() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBFileSpec.i | 72 GetPath (char *dst_path, size_t dst_len) const; 75 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | log.c | 167 svn_log__switch(const char *path, const char *dst_path, svn_revnum_t revnum, in svn_log__switch() argument 172 svn_path_uri_encode(dst_path, pool), revnum, in svn_log__switch() 187 const char *dst_path, svn_revnum_t revnum, in svn_log__diff() argument 194 if (strcmp(path, dst_path) == 0) in svn_log__diff() 200 svn_path_uri_encode(dst_path, pool), revnum, in svn_log__diff()
|
| H A D | sqlite.c | 1463 const char *dst_path, in svn_sqlite__hotcopy() argument 1477 SVN_ERR(svn_sqlite__open(&dst_db, dst_path, svn_sqlite__mode_rwcreate, in svn_sqlite__hotcopy() 1510 SVN_ERR(svn_io_copy_perms(src_path, dst_path, scratch_pool)); in svn_sqlite__hotcopy()
|
| H A D | io.c | 1115 const char *dst_path; in svn_io_copy_dir_recursively() local 1124 dst_path = svn_dirent_join(dst_parent, dst_basename, pool); in svn_io_copy_dir_recursively() 1140 SVN_ERR(svn_io_check_path(dst_path, &kind, subpool)); in svn_io_copy_dir_recursively() 1144 svn_dirent_local_style(dst_path, pool)); in svn_io_copy_dir_recursively() 1148 SVN_ERR(svn_io_dir_make(dst_path, APR_OS_DEFAULT, pool)); in svn_io_copy_dir_recursively() 1177 const char *dst_target = svn_dirent_join(dst_path, in svn_io_copy_dir_recursively() 1185 const char *dst_target = svn_dirent_join(dst_path, in svn_io_copy_dir_recursively() 1201 dst_path, in svn_io_copy_dir_recursively()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBFileSpec.h | 51 uint32_t GetPath(char *dst_path, size_t dst_len) const; 53 static int ResolvePath(const char *src_path, char *dst_path, size_t dst_len);
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_client/ |
| H A D | copy.c | 849 const char *dst_path, in do_wc_to_wc_moves() argument 1146 const char *dst_path; member 1413 info->dst_path = svn_relpath_join(parent_info->dst_path, in queue_externals_change_path_infos() 1713 info->dst_path = dst_rel; in repos_to_repos_copy() 1806 info->dst_path = relpath; in repos_to_repos_copy() 3312 const char *dst_path, in svn_client_copy7() argument 3334 sources, dst_path, in svn_client_copy7() 3364 dst_path in svn_client_copy7() 3395 const char *dst_path, in svn_client_move7() argument 3433 sources, dst_path, in svn_client_move7() [all …]
|
| H A D | deprecated.c | 686 const char *dst_path, in svn_client_copy6() argument 709 const char *dst_path, in svn_client_copy5() argument 730 const char *dst_path, in svn_client_copy4() argument 745 const char *dst_path, in svn_client_copy3() argument 767 const char *dst_path, in svn_client_copy2() argument 798 const char *dst_path, in svn_client_copy() argument 814 const char *dst_path, in svn_client_move6() argument 835 const char *dst_path, in svn_client_move5() argument 856 const char *dst_path, in svn_client_move4() argument 873 const char *dst_path, in svn_client_move3() argument [all …]
|
| /freebsd-13.1/contrib/subversion/subversion/include/private/ |
| H A D | svn_log.h | 135 svn_log__switch(const char *path, const char *dst_path, svn_revnum_t revnum, 154 const char *dst_path, svn_revnum_t revnum,
|
| H A D | svn_sqlite.h | 555 const char *dst_path,
|
| /freebsd-13.1/contrib/subversion/subversion/include/ |
| H A D | svn_client.h | 5606 const char *dst_path, 5630 const char *dst_path, 5651 const char *dst_path, 5670 const char *dst_path, 5692 const char *dst_path, 5711 const char *dst_path, 5727 const char *dst_path, 5826 const char *dst_path, 5847 const char *dst_path, 5870 const char *dst_path, [all …]
|
| H A D | svn_repos.h | 689 const char *dst_path, 708 const char *dst_path, 724 const char *dst_path,
|
| /freebsd-13.1/sys/dev/usb/ |
| H A D | usb_dev.h | 47 char dst_path[32]; /* Destination path - including member
|
| H A D | usb_dev.c | 2312 strlcpy(ps->dst_path, target, sizeof(ps->dst_path)); in usb_alloc_symlink() 2313 ps->dst_len = strlen(ps->dst_path); in usb_alloc_symlink() 2407 error = copyout(ps->dst_path, in usb_read_symlink()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_fs/ |
| H A D | fs-loader.c | 648 svn_fs_hotcopy3(const char *src_path, const char *dst_path, in svn_fs_hotcopy3() argument 663 if (strcmp(src_path, dst_path) == 0) in svn_fs_hotcopy3() 672 SVN_ERR(svn_io_check_path(dst_path, &dst_kind, scratch_pool)); in svn_fs_hotcopy3() 676 svn_dirent_local_style(dst_path, in svn_fs_hotcopy3() 682 svn_dirent_local_style(dst_path, in svn_fs_hotcopy3() 688 SVN_ERR(svn_io_check_path(svn_dirent_join(dst_path, in svn_fs_hotcopy3() 694 SVN_ERR(svn_fs_type(&dst_fs_type, dst_path, scratch_pool)); in svn_fs_hotcopy3() 705 SVN_ERR(vtable->hotcopy(src_fs, dst_fs, src_path, dst_path, clean, in svn_fs_hotcopy3() 709 return svn_error_trace(write_fs_type(dst_path, src_fs_type, scratch_pool)); in svn_fs_hotcopy3()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_repos/ |
| H A D | deprecated.c | 236 const char *dst_path, in svn_repos_hotcopy2() argument 243 return svn_error_trace(svn_repos_hotcopy3(src_path, dst_path, clean_logs, in svn_repos_hotcopy2() 250 const char *dst_path, in svn_repos_hotcopy() argument 254 return svn_error_trace(svn_repos_hotcopy2(src_path, dst_path, clean_logs, in svn_repos_hotcopy()
|