Home
last modified time | relevance | path

Searched refs:src_path (Results 1 – 25 of 36) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
DPlatformPOSIX.cpp204 std::string src_path (source.GetPath()); in PutFile() local
205 if (src_path.empty()) in PutFile()
211 command.Printf("cp %s %s", src_path.c_str(), dst_path.c_str()); in PutFile()
231 std::string src_path (source.GetPath()); in PutFile() local
232 if (src_path.empty()) in PutFile()
243 src_path.c_str(), in PutFile()
248 src_path.c_str(), in PutFile()
255 src_path.c_str(), in PutFile()
389 std::string src_path (source.GetPath()); in GetFile() local
390 if (src_path.empty()) in GetFile()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/
DFileSpec.cpp84 FileSpec::ResolveUsername (const char *src_path, char *dst_path, size_t dst_len) in ResolveUsername() argument
86 if (src_path == NULL || src_path[0] == '\0') in ResolveUsername()
96 if (src_path[0] != '~') in ResolveUsername()
98 size_t len = strlen (src_path); in ResolveUsername()
101 ::bcopy (src_path, dst_path, dst_len - 1); in ResolveUsername()
105 ::bcopy (src_path, dst_path, len + 1); in ResolveUsername()
110 const char *first_slash = ::strchr (src_path, '/'); in ResolveUsername()
116 user_name = src_path + 1; in ResolveUsername()
121 size_t user_name_len = first_slash - src_path - 1; in ResolveUsername()
122 ::memcpy (user_home, src_path + 1, user_name_len); in ResolveUsername()
[all …]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_base/
Dfs.c1290 const char *src_path, in base_hotcopy() argument
1320 &format, svn_dirent_join(src_path, FORMAT_FILE, pool), pool)); in base_hotcopy()
1336 src_path, pool); in base_hotcopy()
1341 SVN_ERR(svn_io_dir_file_copy(src_path, dest_path, "DB_CONFIG", pool)); in base_hotcopy()
1347 SVN_ERR(get_db_pagesize(&pagesize, src_path, pool)); in base_hotcopy()
1361 SVN_ERR(copy_db_file_safely(src_path, dest_path, in base_hotcopy()
1363 SVN_ERR(copy_db_file_safely(src_path, dest_path, in base_hotcopy()
1365 SVN_ERR(copy_db_file_safely(src_path, dest_path, in base_hotcopy()
1367 SVN_ERR(copy_db_file_safely(src_path, dest_path, in base_hotcopy()
1369 SVN_ERR(copy_db_file_safely(src_path, dest_path, in base_hotcopy()
[all …]
Dfs.h314 const char *src_path; member
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs/
Ddeprecated.c40 svn_fs_hotcopy2(const char *src_path, const char *dest_path, in svn_fs_hotcopy2() argument
45 return svn_error_trace(svn_fs_hotcopy3(src_path, dest_path, clean, in svn_fs_hotcopy2()
52 svn_fs_hotcopy(const char *src_path, const char *dest_path, in svn_fs_hotcopy() argument
55 return svn_error_trace(svn_fs_hotcopy2(src_path, dest_path, clean, in svn_fs_hotcopy()
Dfs-loader.c638 svn_fs_hotcopy3(const char *src_path, const char *dst_path, in svn_fs_hotcopy3() argument
653 if (strcmp(src_path, dst_path) == 0) in svn_fs_hotcopy3()
657 SVN_ERR(svn_fs_type(&src_fs_type, src_path, scratch_pool)); in svn_fs_hotcopy3()
695 SVN_ERR(vtable->hotcopy(src_fs, dst_fs, src_path, dst_path, clean, in svn_fs_hotcopy3()
806 svn_fs_hotcopy_berkeley(const char *src_path, const char *dest_path, in svn_fs_hotcopy_berkeley() argument
809 return svn_error_trace(svn_fs_hotcopy3(src_path, dest_path, clean_logs, in svn_fs_hotcopy_berkeley()
/freebsd-10-stable/contrib/subversion/subversion/svn/
Dcopy-cmd.c49 const char *src_path, *dst_path; in svn_cl__copy() local
131 src_path = APR_ARRAY_IDX(targets, 0, const char *); in svn_cl__copy()
132 srcs_are_urls = svn_path_is_url(src_path); in svn_cl__copy()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/
Dcopies-table.c140 const char *src_path, in svn_fs_bdb__create_copy() argument
149 copy.src_path = src_path; in svn_fs_bdb__create_copy()
Dcopies-table.h62 const char *src_path,
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Host/
DFileSpec.h640 Resolve (const char *src_path, char *dst_path, size_t dst_len);
679 ResolveUsername (const char *src_path, char *dst_path, size_t dst_len);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
DSBFileSpec.cpp87 SBFileSpec::ResolvePath (const char *src_path, char *dst_path, size_t dst_len) in ResolvePath() argument
89 return lldb_private::FileSpec::Resolve (src_path, dst_path, dst_len); in ResolvePath()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_client/
Ddeprecated.c688 const char *src_path, in svn_client_copy3() argument
698 copy_source.path = src_path; in svn_client_copy3()
710 const char *src_path, in svn_client_copy2() argument
718 err = svn_client_copy3(commit_info_p, src_path, src_revision, in svn_client_copy2()
727 const char *src_basename = svn_path_basename(src_path, pool); in svn_client_copy2()
731 return svn_client_copy3(commit_info_p, src_path, src_revision, in svn_client_copy2()
741 const char *src_path, in svn_client_copy() argument
750 err = svn_client_copy2(&commit_info, src_path, src_revision, dst_path, in svn_client_copy()
800 const char *src_path, in svn_client_move4() argument
808 APR_ARRAY_PUSH(src_paths, const char *) = src_path; in svn_client_move4()
[all …]
Dcopy.c1136 const char *src_path; member
1205 if (strcmp(path_info->src_path, path) == 0) in path_driver_cb_func()
1405 info->src_path = NULL; /* Only needed on copied dirs */ in queue_externals_change_path_infos()
1709 info->src_path = src_rel; /* May be NULL, if outside RA session scope */ in repos_to_repos_copy()
1714 svn_hash_sets(action_hash, info->src_path, info); in repos_to_repos_copy()
1778 item->url = svn_path_url_add_component2(top_url, info->src_path, in repos_to_repos_copy()
1819 APR_ARRAY_PUSH(paths, const char *) = info->src_path; in repos_to_repos_copy()
3168 const char *src_path = APR_ARRAY_IDX(sources, 0, in svn_client_copy7() local
3171 svn_boolean_t src_is_url = svn_path_is_url(src_path); in svn_client_copy7()
3177 src_basename = src_is_url ? svn_uri_basename(src_path, subpool) in svn_client_copy7()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
DSBFileSpec.h58 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
/freebsd-10-stable/contrib/subversion/subversion/include/
Dsvn_fs.h525 svn_fs_hotcopy3(const char *src_path,
544 svn_fs_hotcopy2(const char *src_path,
561 svn_fs_hotcopy(const char *src_path,
744 svn_fs_hotcopy_berkeley(const char *src_path,
Dsvn_client.h4643 const char *src_path,
4662 const char *src_path,
4678 const char *src_path,
4848 const char *src_path,
4866 const char *src_path,
4883 const char *src_path,
4900 const char *src_path,
/freebsd-10-stable/sys/dev/usb/
Dusb_dev.h43 char src_path[32]; /* Source path - including terminating member
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_fs/
Dfs.c472 const char *src_path, in fs_hotcopy() argument
485 SVN_ERR(fs_open(src_fs, src_path, common_pool_lock, pool, common_pool)); in fs_hotcopy()
Dhotcopy.c44 const char *src_path, in hotcopy_io_dir_file_copy() argument
62 src_target = svn_dirent_join(src_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()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_x/
Dhotcopy.c45 const char *src_path, in hotcopy_io_dir_file_copy() argument
63 src_target = svn_dirent_join(src_path, file, scratch_pool); in hotcopy_io_dir_file_copy()
76 return svn_error_trace(svn_io_dir_file_copy(src_path, dst_path, file, in hotcopy_io_dir_file_copy()
Dfs.c521 const char *src_path, in x_hotcopy() argument
534 SVN_ERR(x_open(src_fs, src_path, common_pool_lock, scratch_pool, in x_hotcopy()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_repos/
Ddeprecated.c230 svn_repos_hotcopy2(const char *src_path, in svn_repos_hotcopy2() argument
238 return svn_error_trace(svn_repos_hotcopy3(src_path, dst_path, clean_logs, in svn_repos_hotcopy2()
244 svn_repos_hotcopy(const char *src_path, in svn_repos_hotcopy() argument
249 return svn_error_trace(svn_repos_hotcopy2(src_path, dst_path, clean_logs, in svn_repos_hotcopy()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
Dsqlite.c1468 svn_sqlite__hotcopy(const char *src_path, in svn_sqlite__hotcopy() argument
1474 SVN_ERR(svn_sqlite__open(&src_db, src_path, svn_sqlite__mode_readonly, in svn_sqlite__hotcopy()
1488 _("SQLite hotcopy failed for %s"), src_path); in svn_sqlite__hotcopy()
1516 SVN_ERR(svn_io_copy_perms(src_path, dst_path, scratch_pool)); in svn_sqlite__hotcopy()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_base/util/
Dfs_skels.c733 copy->src_path = apr_pstrmemdup(pool, in svn_fs_base__parse_copy_skel()
1326 if ((copy->src_path) && (*copy->src_path)) in svn_fs_base__unparse_copy_skel()
1327 svn_skel__prepend(svn_skel__str_atom(copy->src_path, pool), skel); in svn_fs_base__unparse_copy_skel()
/freebsd-10-stable/contrib/subversion/subversion/include/private/
Dsvn_sqlite.h554 svn_sqlite__hotcopy(const char *src_path,

12