Home | History | Annotate | Download | only in base

Lines Matching refs:new_path

221                               const Pathname &new_path) {
227 << " to " << new_path.pathname();
228 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
231 if (!CopyFile(old_path, new_path))
240 const Pathname &new_path) {
246 << " to " << new_path.pathname();
247 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
250 if (!CopyFolder(old_path, new_path))
266 const Pathname &new_path) {
268 << " to " << new_path.pathname();
276 StreamInterface *dest = OpenFile(new_path, "wb");