HomeSort by relevance Sort by last modified time
    Searched refs:Rename (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/content/browser/download/
save_file.cc 46 DownloadInterruptReason SaveFile::Rename(const base::FilePath& full_path) {
47 return file_.Rename(full_path);
mock_download_file.h 30 MOCK_METHOD1(Rename, DownloadInterruptReason(
save_file.h 30 DownloadInterruptReason Rename(const base::FilePath& full_path);
save_item.h 51 void Rename(const base::FilePath& full_path);
base_file.h 59 // Rename the download file. Returns a DownloadInterruptReason indicating the
61 virtual DownloadInterruptReason Rename(const base::FilePath& full_path);
save_item.cc 115 // Rename the save item with new path.
116 void SaveItem::Rename(const base::FilePath& full_path) {
  /external/chromium/chrome/browser/download/
base_file.h 42 // Rename the download file. Returns true on success.
43 virtual bool Rename(const FilePath& full_path);
download_file_unittest.cc 127 // Rename the file before any data is downloaded, after some has, after it all
139 // Rename the file before downloading any data.
140 EXPECT_TRUE(download_file_->Rename(path_1));
152 // Rename the file after downloading some data.
153 EXPECT_TRUE(download_file_->Rename(path_2));
163 // Rename the file after downloading all the data.
164 EXPECT_TRUE(download_file_->Rename(path_3));
178 // Rename the file after downloading all the data and closing the file.
179 EXPECT_TRUE(download_file_->Rename(path_4));
save_item.h 50 void Rename(const FilePath& full_path);
save_item.cc 114 // Rename the save item with new path.
115 void SaveItem::Rename(const FilePath& full_path) {
base_file_unittest.cc 124 // Rename the file after writing to it, then detach.
135 EXPECT_TRUE(base_file_->Rename(new_path));
191 // Rename the file after all writes to it.
202 EXPECT_TRUE(base_file_->Rename(new_path));
209 // Rename the file while the download is still in progress.
221 EXPECT_TRUE(base_file_->Rename(new_path));
download_manager_unittest.cc 205 MOCK_METHOD1(Rename, bool(const FilePath&));
365 EXPECT_CALL(*download_file, Rename(new_path)).WillOnce(Return(true));
369 EXPECT_CALL(*download_file, Rename(_))
420 EXPECT_CALL(*download_file, Rename(cr_path)).WillOnce(Return(true));
486 EXPECT_CALL(*download_file, Rename(cr_path)).WillOnce(Return(true));
569 download_file->Rename(cr_path);
  /external/chromium_org/ppapi/cpp/
file_ref.h 139 /// Rename() renames a file or directory. Argument <code>new_file_ref</code>
141 /// error to rename a file or directory that is in use. It is not valid to
142 /// rename a file in the external file system.
147 /// completion of Rename().
150 int32_t Rename(const FileRef& new_file_ref, const CompletionCallback& cc);
file_ref.cc 153 int32_t FileRef::Rename(const FileRef& new_file_ref,
156 return get_interface<PPB_FileRef_1_1>()->Rename(
160 return get_interface<PPB_FileRef_1_0>()->Rename(
  /external/chromium_org/ppapi/thunk/
ppb_file_ref_thunk.cc 108 int32_t Rename(PP_Resource file_ref,
111 VLOG(4) << "PPB_FileRef::Rename()";
115 return enter.SetResult(enter.object()->Rename(new_file_ref,
158 &Rename
171 &Rename,
ppb_file_ref_api.h 36 virtual int32_t Rename(PP_Resource new_file_ref,
  /external/chromium_org/ppapi/c/
ppb_file_ref.h 165 * Rename() renames a file or directory. Arguments <code>file_ref</code> and
167 * system. It is an error to rename a file or directory that is in use. It
168 * is not valid to rename a file in the external file system.
175 * completion of Rename().
179 int32_t (*Rename)(PP_Resource file_ref,
233 int32_t (*Rename)(PP_Resource file_ref,
  /external/chromium_org/ppapi/api/
ppb_file_ref.idl 153 * Rename() renames a file or directory. Arguments <code>file_ref</code> and
155 * system. It is an error to rename a file or directory that is in use. It
156 * is not valid to rename a file in the external file system.
163 * completion of Rename().
167 int32_t Rename([in] PP_Resource file_ref,
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA1/
SDL_main.cpp 106 currentThread.Rename(exeName.Name());
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
move_operation.h 81 void Rename(const std::string& src_id,
87 // Called in Rename() to reflect the rename on the local metadata.
  /external/chromium_org/chrome/test/pyautolib/chromeos/
file_browser.py 104 def Rename(self, name):
105 """Rename selected entry.
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_external_file_ref_backend.h 36 virtual int32_t Rename(ppapi::host::ReplyMessageContext context,
pepper_internal_file_ref_backend.h 40 virtual int32_t Rename(ppapi::host::ReplyMessageContext context,
pepper_file_ref_host.h 37 virtual int32_t Rename(ppapi::host::ReplyMessageContext context,
78 // Required to support Rename().
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
local_temp_file.h 66 void Rename(const nacl::string& new_name,
110 // Temporarily holds the previous file ref during a rename operation.

Completed in 1155 milliseconds

1 2 3