HomeSort by relevance Sort by last modified time
    Searched refs:from_path (Results 26 - 36 of 36) sorted by null

12

  /external/chromium/base/
file_util.h 119 BASE_API bool Move(const FilePath& from_path, const FilePath& to_path);
121 // Renames file |from_path| to |to_path|. Both paths must be on the same
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,
243 // Copy from_path to to_path recursively and then delete from_path recursively.
247 BASE_API bool CopyAndDeleteDirectory(const FilePath& from_path,
file_util.cc 375 bool CopyDirectory(const std::wstring& from_path, const std::wstring& to_path,
377 return CopyDirectory(FilePath::FromWStringHack(from_path),
  /external/libmtp/examples/
sendtr.c 164 int sendtrack_function(char * from_path, char * to_path, char *partist, char *palbumartist, char *ptitle, char *pgenre, char *palbum, char *pcomposer, uint16_t tracknum, uint16_t length, uint16_t year, uint32_t storageid)
176 printf("Sending track %s to %s\n",from_path,to_path);
189 if ( stat(from_path, &sb) == -1 ) {
190 fprintf(stderr, "%s: ", from_path);
195 trackmeta->filetype = find_filetype (from_path);
350 ret = LIBMTP_Send_Track_From_File(device, from_path, trackmeta, progress, NULL);
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.h 60 const ppapi::PepperFilePath& from_path,
pepper_flash_file_message_filter.cc 156 const ppapi::PepperFilePath& from_path,
159 from_path, base::Bind(&CanCreateReadWrite));
  /external/chromium_org/chrome/test/pyautolib/
pyauto_utils.py 63 from_path = os.path.join(self._backup_dir, self._backup_basename)
64 logging.info('Reinstating backup from %s to %s' % (from_path, self._path))
65 shutil.move(from_path, self._path)
  /external/chromium_org/webkit/browser/fileapi/
sandbox_prioritized_origin_database.cc 186 base::FilePath from_path = file_system_directory_.Append(directory_name); local
191 base::Move(from_path, to_path);
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 238 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
  /external/chromium_org/chrome/common/extensions/docs/server2/
appengine_wrappers.py 230 def from_path(model_name, path): member in class:IsDeadlineExceededError.db.Key
  /external/chromium_org/chrome/browser/chromeos/login/
wallpaper_manager.cc 96 base::FilePath from_path = base_path.Append(email); local
97 if (base::PathExists(from_path))
98 return base::Move(from_path, to_path);
    [all...]
  /external/chromium_org/base/
file_util_unittest.cc 1366 FilePath from_path = local
1369 FilePath from_path = local
    [all...]

Completed in 268 milliseconds

12