HomeSort by relevance Sort by last modified time
    Searched full:dest_url (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_impl.h 52 const FileSystemURL& dest_url,
55 const FileSystemURL& dest_url,
91 // or the parent directory of |dest_url| does not exist.
92 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
94 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and
98 const FileSystemURL& dest_url,
120 // Copies a file from |src_url| to |dest_url|.
122 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
126 // or the parent directory of |dest_url| does not exist.
128 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists an
    [all...]
file_system_operation_runner.h 70 // Copies a file or directory from |src_url| to |dest_url|. If
72 // |dest_url| recursively. A new file or directory is created at
73 // |dest_url| as needed.
75 const FileSystemURL& dest_url,
78 // Moves a file or directory from |src_url| to |dest_url|. A new file
79 // or directory is created at |dest_url| as needed.
81 const FileSystemURL& dest_url,
161 // or the parent directory of |dest_url| does not exist.
162 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
164 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist an
    [all...]
file_system_operation_impl.cc 76 const FileSystemURL& dest_url,
83 src_url, dest_url,
91 const FileSystemURL& dest_url,
98 src_url, dest_url,
266 const FileSystemURL& dest_url,
270 dest_url,
272 AsWeakPtr(), src_local_disk_file_path, dest_url,
299 const FileSystemURL& dest_url,
302 DCHECK(src_url.IsInSameFileSystem(dest_url));
304 dest_url,
    [all...]
file_system_file_util.h 130 // Copies or moves a single file from |src_url| to |dest_url|.
131 // The filesystem type of |src_url| and |dest_url| MUST be same.
135 // or the parent directory of |dest_url| does not exist.
137 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
139 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and
145 const FileSystemURL& dest_url,
154 const FileSystemURL& dest_url) = 0;
async_file_util_adapter.h 78 const FileSystemURL& dest_url,
83 const FileSystemURL& dest_url,
88 const FileSystemURL& dest_url,
async_file_util.h 198 // Copies a file from |src_url| to |dest_url|.
200 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
206 // or the parent directory of |dest_url| does not exist.
208 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
210 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and
216 const FileSystemURL& dest_url,
219 // Moves a local file from |src_url| to |dest_url|.
221 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
227 // or the parent directory of |dest_url| does not exist.
229 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists an
    [all...]
file_system_operation_runner.cc 72 const FileSystemURL& dest_url,
76 file_system_context_->CreateFileSystemOperation(dest_url, &error);
82 PrepareForWrite(id, dest_url);
85 src_url, dest_url,
93 const FileSystemURL& dest_url,
97 file_system_context_->CreateFileSystemOperation(dest_url, &error);
103 PrepareForWrite(id, dest_url);
106 src_url, dest_url,
348 const FileSystemURL& dest_url,
352 dest_url, &error)
    [all...]
local_file_util.h 74 const FileSystemURL& dest_url,
79 const FileSystemURL& dest_url) OVERRIDE;
obfuscated_file_util_unittest.cc 524 FileSystemURL dest_url = CreateURLFromUTF8("new file"); local
544 ofu()->EnsureFileExists(context.get(), dest_url, &created));
553 ObfuscatedFileUtil::ComputeFilePathCost(dest_url.path());
560 src_file_path, dest_url));
567 src_file_path, dest_url));
569 EXPECT_TRUE(PathExists(dest_url));
570 EXPECT_FALSE(DirectoryExists(dest_url));
576 context.get(), dest_url, &file_info, &data_path));
582 ofu()->DeleteFile(context.get(), dest_url));
1183 FileSystemURL dest_url = CreateURLFromUTF8("path1.txt"); local
1239 FileSystemURL dest_url = CreateURLFromUTF8(test_case.dest_path); local
1305 FileSystemURL dest_url = CreateURLFromUTF8("destination path"); local
1332 FileSystemURL dest_url = CreateURLFromUTF8("destination path"); local
1378 FileSystemURL dest_url = FileSystemURLAppend( local
1421 FileSystemURL dest_url = CreateURLFromUTF8("destination dir"); local
    [all...]
obfuscated_file_util.cc 504 const FileSystemURL& dest_url,
507 DCHECK(src_url.origin() == dest_url.origin());
508 DCHECK(src_url.type() == dest_url.type());
520 bool overwrite = db->GetFileWithPath(dest_url.path(),
539 db, context, dest_url.origin(), dest_url.type(), dest_file_id,
550 if (!db->GetFileWithPath(VirtualPath::DirName(dest_url.path()),
558 VirtualPath::BaseName(dest_url.path()).value();
596 dest_url.origin(), dest_url.type()
    [all...]
async_file_util_adapter.cc 255 const FileSystemURL& dest_url,
262 base::Owned(context_ptr), src_url, dest_url, true /* copy */),
270 const FileSystemURL& dest_url,
277 base::Owned(context_ptr), src_url, dest_url, false /* copy */),
285 const FileSystemURL& dest_url,
292 base::Owned(context_ptr), src_file_path, dest_url),
local_file_util.cc 193 const FileSystemURL& dest_url,
201 error = GetLocalFilePath(context, dest_url, &dest_file_path);
211 const FileSystemURL& dest_url) {
217 GetLocalFilePath(context, dest_url, &dest_file_path);
isolated_file_util_unittest.cc 443 FileSystemURL dest_url = GetOtherURL(file_system_context(), local
449 dest_url));
457 src_url, dest_url));
458 VerifyFilesHaveSameContent(src_url, dest_url);
480 FileSystemURL dest_url = GetOtherURL(file_system_context(), local
486 src_url, dest_url));
487 VerifyDirectoriesHaveSameContent(src_url, dest_url);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.h 67 const fileapi::FileSystemURL& dest_url,
72 const fileapi::FileSystemURL& dest_url,
77 const fileapi::FileSystemURL& dest_url,
114 const fileapi::FileSystemURL& dest_url,
120 const fileapi::FileSystemURL& dest_url,
142 const fileapi::FileSystemURL& dest_url,
147 const fileapi::FileSystemURL& dest_url);
native_media_file_util.cc 209 const fileapi::FileSystemURL& dest_url,
217 src_url, dest_url, true /* copy */, callback));
224 const fileapi::FileSystemURL& dest_url,
232 src_url, dest_url, false /* copy */, callback));
239 const fileapi::FileSystemURL& dest_url,
247 src_file_path, dest_url, callback));
342 const fileapi::FileSystemURL& dest_url,
347 CopyOrMoveFileSync(context.get(), src_url, dest_url, copy);
357 const fileapi::FileSystemURL& dest_url,
361 CopyInForeignFileSync(context.get(), src_file_path, dest_url);
    [all...]
device_media_async_file_util.h 74 const fileapi::FileSystemURL& dest_url,
79 const fileapi::FileSystemURL& dest_url,
84 const fileapi::FileSystemURL& dest_url,
device_media_async_file_util.cc 168 const FileSystemURL& dest_url,
178 const FileSystemURL& dest_url,
188 const FileSystemURL& dest_url,
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.cc 125 const FileSystemURL& dest_url,
133 target_paths_.push_back(dest_url);
139 src_url, dest_url,
146 const FileSystemURL& dest_url,
155 target_paths_.push_back(dest_url);
161 src_url, dest_url,
295 const FileSystemURL& dest_url,
303 target_paths_.push_back(dest_url);
309 src_local_disk_path, dest_url,
syncable_file_system_operation.h 44 const fileapi::FileSystemURL& dest_url,
47 const fileapi::FileSystemURL& dest_url,
80 const fileapi::FileSystemURL& dest_url,
canned_syncable_file_system.cc 333 const FileSystemURL& src_url, const FileSystemURL& dest_url) {
340 dest_url));
344 const FileSystemURL& src_url, const FileSystemURL& dest_url) {
351 dest_url));
547 const FileSystemURL& dest_url,
550 operation_runner()->Copy(src_url, dest_url, callback);
555 const FileSystemURL& dest_url,
558 operation_runner()->Move(src_url, dest_url, callback);
canned_syncable_file_system.h 106 const fileapi::FileSystemURL& dest_url);
108 const fileapi::FileSystemURL& dest_url);
156 const fileapi::FileSystemURL& dest_url,
159 const fileapi::FileSystemURL& dest_url,
  /external/chromium_org/chrome/browser/chromeos/drive/
async_file_util.h 68 const fileapi::FileSystemURL& dest_url,
73 const fileapi::FileSystemURL& dest_url,
78 const fileapi::FileSystemURL& dest_url,
async_file_util.cc 280 const fileapi::FileSystemURL& dest_url,
285 base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url);
302 const fileapi::FileSystemURL& dest_url,
307 base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url);
324 const fileapi::FileSystemURL& dest_url,
328 base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url);
  /external/chromium/chrome/browser/prerender/
prerender_browsertest.cc 40 std::string CreateClientRedirect(const std::string& dest_url) {
42 return kClientRedirectBase + dest_url;
45 std::string CreateServerRedirect(const std::string& dest_url) {
47 return kServerRedirectBase + dest_url;
186 GURL dest_url = test_server()->GetURL(html_file); local
187 return (prerender_manager()->FindEntry(dest_url) != NULL);
195 GURL dest_url = test_server()->GetURL(html_file); local
196 return (prerender_manager()->FindPendingEntry(dest_url) != NULL);
207 void set_dest_url(const GURL& dest_url) { dest_url_ = dest_url; }
    [all...]
  /external/chromium_org/content/browser/web_contents/
render_view_host_manager.cc 493 const GURL& dest_url = entry.GetURL(); local
538 RenderProcessHost::ShouldUseProcessPerSite(browser_context, dest_url) &&
539 RenderProcessHostImpl::GetProcessHostForSite(browser_context, dest_url);
540 if (curr_site_instance->HasRelatedSiteInstance(dest_url) ||
542 return curr_site_instance->GetRelatedSiteInstance(dest_url);
549 if (curr_site_instance->HasWrongProcessForURL(dest_url))
550 return curr_site_instance->GetRelatedSiteInstance(dest_url);
557 return SiteInstance::CreateForURL(browser_context, dest_url);
562 browser_context, dest_url)) {
563 return SiteInstance::CreateForURL(browser_context, dest_url);
    [all...]

Completed in 366 milliseconds

1 2