Home | History | Annotate | Download | only in base

Lines Matching refs:new_path

222                               const Pathname &new_path) {
228 << " to " << new_path.pathname();
229 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
232 if (!CopyFile(old_path, new_path))
241 const Pathname &new_path) {
247 << " to " << new_path.pathname();
248 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
251 if (!CopyFolder(old_path, new_path))
267 const Pathname &new_path) {
269 << " to " << new_path.pathname();
277 StreamInterface *dest = OpenFile(new_path, "wb");