Lines Matching refs:src_path
101 std::string src_path(source.GetPath()); in PutFile() local
102 if (src_path.empty()) in PutFile()
108 command.Printf("cp %s %s", src_path.c_str(), dst_path.c_str()); in PutFile()
121 std::string src_path(source.GetPath()); in PutFile() local
122 if (src_path.empty()) in PutFile()
130 command.Printf("rsync %s %s %s", GetRSyncOpts(), src_path.c_str(), in PutFile()
133 command.Printf("rsync %s %s %s%s", GetRSyncOpts(), src_path.c_str(), in PutFile()
136 command.Printf("rsync %s %s %s:%s", GetRSyncOpts(), src_path.c_str(), in PutFile()
162 std::string src_path(source.GetPath()); in GetFile() local
163 if (src_path.empty()) in GetFile()
174 cp_command.Printf("cp %s %s", src_path.c_str(), dst_path.c_str()); in GetFile()
186 command.Printf("rsync %s %s %s", GetRSyncOpts(), src_path.c_str(), in GetFile()
190 src_path.c_str(), dst_path.c_str()); in GetFile()
193 m_remote_platform_sp->GetHostname(), src_path.c_str(), in GetFile()