Home | History | Annotate | Download | only in base

Lines Matching refs:new_path

215                               const Pathname &new_path) {
221 << " to " << new_path.pathname();
222 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
225 if (!CopyFile(old_path, new_path))
234 const Pathname &new_path) {
240 << " to " << new_path.pathname();
241 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
244 if (!CopyFolder(old_path, new_path))
260 const Pathname &new_path) {
262 << " to " << new_path.pathname();
270 StreamInterface *dest = OpenFile(new_path, "wb");