/external/chromium/chrome/browser/chromeos/cros/ |
D | burn_library.cc | 24 virtual bool DoBurn(const FilePath& from_path, const FilePath& to_path); 26 bool BurnImage(const FilePath& from_path, const FilePath& to_path); 50 void BurnImage(const FilePath& from_path, const FilePath& to_path); 85 const FilePath& to_path) { in DoBurn() argument 88 task->BurnImage(from_path, to_path); in DoBurn() 91 from_path, to_path)); in DoBurn() 96 const FilePath& to_path) { in BurnImage() argument 102 target_path_ = to_path.value(); in BurnImage() 107 StartBurn(from_path.value().c_str(), to_path.value().c_str(), in BurnImage() 151 const FilePath& to_path) { in BurnImage() argument [all …]
|
D | burn_library.h | 45 virtual bool DoBurn(const FilePath& from_path, const FilePath& to_path) = 0;
|
/external/chromium/net/disk_cache/ |
D | cache_util_posix.cc | 13 bool MoveCache(const FilePath& from_path, const FilePath& to_path) { in MoveCache() argument 21 if (!file_util::CreateDirectory(to_path)) { in MoveCache() 32 FilePath destination = to_path.Append(name.BaseName()); in MoveCache() 40 return file_util::Move(from_path, to_path); in MoveCache()
|
D | cache_util_win.cc | 44 bool MoveCache(const FilePath& from_path, const FilePath& to_path) { in MoveCache() argument 47 if (!MoveFileEx(from_path.value().c_str(), to_path.value().c_str(), 0)) { in MoveCache()
|
D | cache_util.h | 21 bool MoveCache(const FilePath& from_path, const FilePath& to_path);
|
/external/chromium/base/ |
D | file_util_win.cc | 178 bool Move(const FilePath& from_path, const FilePath& to_path) { in Move() argument 184 to_path.value().length() >= MAX_PATH) { in Move() 187 if (MoveFileEx(from_path.value().c_str(), to_path.value().c_str(), in Move() 200 ret = CopyAndDeleteDirectory(from_path, to_path); in Move() 212 bool ReplaceFile(const FilePath& from_path, const FilePath& to_path) { in ReplaceFile() argument 217 to_path.value().c_str(), in ReplaceFile() 228 return ::ReplaceFile(to_path.value().c_str(), in ReplaceFile() 233 bool CopyFile(const FilePath& from_path, const FilePath& to_path) { in CopyFile() argument 239 to_path.value().length() >= MAX_PATH) { in CopyFile() 242 return (::CopyFile(from_path.value().c_str(), to_path.value().c_str(), in CopyFile() [all …]
|
D | file_util_posix.cc | 186 bool Move(const FilePath& from_path, const FilePath& to_path) { in Move() argument 191 if (CallStat(to_path.value().c_str(), &to_file_info) == 0) { in Move() 201 if (rename(from_path.value().c_str(), to_path.value().c_str()) == 0) in Move() 204 if (!CopyDirectory(from_path, to_path, true)) in Move() 211 bool ReplaceFile(const FilePath& from_path, const FilePath& to_path) { in ReplaceFile() argument 213 return (rename(from_path.value().c_str(), to_path.value().c_str()) == 0); in ReplaceFile() 217 const FilePath& to_path, in CopyDirectory() argument 224 DCHECK(to_path.value().find('*') == std::string::npos); in CopyDirectory() 234 FilePath real_to_path = to_path; in CopyDirectory() 271 if (recursive && stat(to_path.value().c_str(), &to_path_stat) == 0 && in CopyDirectory() [all …]
|
D | file_util_mac.mm | 29 bool CopyFile(const FilePath& from_path, const FilePath& to_path) { 32 to_path.value().c_str(), NULL, COPYFILE_ALL) == 0);
|
D | file_util.h | 119 BASE_API bool Move(const FilePath& from_path, const FilePath& to_path); 126 BASE_API bool ReplaceFile(const FilePath& from_path, const FilePath& to_path); 129 BASE_API bool CopyFile(const FilePath& from_path, const FilePath& to_path); 138 BASE_API bool CopyDirectory(const FilePath& from_path, const FilePath& to_path, 248 const FilePath& to_path);
|
D | file_util_deprecated.h | 41 const std::wstring& to_path,
|
D | file_util.cc | 375 bool CopyDirectory(const std::wstring& from_path, const std::wstring& to_path, in CopyDirectory() argument 378 FilePath::FromWStringHack(to_path), in CopyDirectory()
|
/external/libmtp/examples/ |
D | getfile.c | 42 getfile_function(char * from_path,char * to_path) in getfile_function() argument 46 printf("Getting %s to %s\n",from_path,to_path); in getfile_function() 47 if (LIBMTP_Get_File_To_File(device, id, to_path, progress, NULL) != 0 ) { in getfile_function()
|
D | sendfile.c | 49 int sendfile_function(char * from_path, char *to_path) in sendfile_function() argument 51 printf("Sending %s to %s\n",from_path,to_path); in sendfile_function() 67 parent_id = parse_path (to_path,files,folders); in sendfile_function()
|
D | sendtr.c | 164 int sendtrack_function(char * from_path, char * to_path, char *partist, char *palbumartist, char *p… in sendtrack_function() argument 176 printf("Sending track %s to %s\n",from_path,to_path); in sendtrack_function() 181 parent = dirname(strdup(to_path)); in sendtrack_function() 182 filename = basename(strdup(to_path)); in sendtrack_function()
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | mock_drt_unittest.py | 103 def to_path(self, port, test_name): member in MockDRTTest 107 url = port.filename_to_uri(self.to_path(port, test_name)) 129 path = self.to_path(port, test_name) 235 url = port.filename_to_uri(self.to_path(port, test_name)) 241 url = port.filename_to_uri(self.to_path(port, test_name))
|