Home
last modified time | relevance | path

Searched refs:MoveFile (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/webrtc/base/
Dfileutils.h163 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path) = 0;
169 return MoveFile(old_path, new_path); in MoveFileOrFolder()
319 static bool MoveFile(const Pathname &old_path, const Pathname &new_path) { in MoveFile() function
320 return EnsureDefaultFilesystem()->MoveFile(old_path, new_path); in MoveFile()
Dwin32filesystem.cc231 bool Win32Filesystem::MoveFile(const Pathname &old_path, in MoveFile() function in rtc::Win32Filesystem
239 return ::MoveFile(ToUtf16(old_path.pathname()).c_str(), in MoveFile()
251 if (::MoveFile(ToUtf16(old_path.pathname()).c_str(), in MoveFolder()
Dwin32filesystem.h46 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
Dunixfilesystem.h67 bool MoveFile(const Pathname& old_path, const Pathname& new_path) override;
Dfileutils_mock.h181 bool MoveFile(const Pathname &old_path, const Pathname &new_path) { in MoveFile() function
Dfilerotatingstream.cc295 if (!Filesystem::MoveFile(unrotated_name, rotated_name)) { in RotateFiles()
Dunixfilesystem.cc222 bool UnixFilesystem::MoveFile(const Pathname &old_path, in MoveFile() function in rtc::UnixFilesystem
/external/python/cpython2/Lib/msilib/
Dschema.py341 MoveFile = Table('MoveFile') variable
342 MoveFile.add_field(1,'FileKey',11592)
343 MoveFile.add_field(2,'Component_',3400)
344 MoveFile.add_field(3,'SourceName',8191)
345 MoveFile.add_field(4,'DestName',8191)
346 MoveFile.add_field(5,'SourceFolder',7496)
347 MoveFile.add_field(6,'DestFolder',3400)
348 MoveFile.add_field(7,'Options',1282)
580 …dComponent, LaunchCondition, ListBox, ListView, LockPermissions, Media, MoveFile, MsiAssembly, Msi…
/external/python/cpython2/Tools/msi/
Dschema.py341 MoveFile = Table('MoveFile') variable
342 MoveFile.add_field(1,'FileKey',11592)
343 MoveFile.add_field(2,'Component_',0xDFF)
344 MoveFile.add_field(3,'SourceName',8191)
345 MoveFile.add_field(4,'DestName',8191)
346 MoveFile.add_field(5,'SourceFolder',7496)
347 MoveFile.add_field(6,'DestFolder',3400)
348 MoveFile.add_field(7,'Options',1282)
580 …dComponent, LaunchCondition, ListBox, ListView, LockPermissions, Media, MoveFile, MsiAssembly, Msi…
/external/syslinux/win/
Dsyslinux.c275 if (!MoveFile(pathname, new_name)) { in move_file()
/external/lzma/CPP/Windows/
DFileDir.cpp162 if (::MoveFile(fs2fas(oldFile), fs2fas(newFile))) in MyMoveFile()