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

1 2 3

  /external/chromium_org/storage/browser/fileapi/
copy_or_move_file_validator.h 44 // This method must always return a non-NULL validator. |src_url| is needed
48 const FileSystemURL& src_url,
copy_or_move_operation_delegate.cc 50 const FileSystemURL& src_url,
57 src_url_(src_url),
99 const FileSystemURL& src_url,
107 src_url_(src_url),
372 const FileSystemURL& src_url,
382 src_url_(src_url),
789 const FileSystemURL& src_url,
793 FileSystemOperation::BEGIN_COPY_ENTRY, src_url, FileSystemURL(), 0);
796 FileSystemURL dest_url = CreateDestURL(src_url);
800 ->GetFileSystemBackend(src_url.type()
    [all...]
copy_or_move_operation_delegate.h 118 void DidCopyOrMoveFile(const FileSystemURL& src_url,
125 void ProcessDirectoryInternal(const FileSystemURL& src_url,
128 void DidCreateDirectory(const FileSystemURL& src_url,
133 const FileSystemURL& src_url,
137 void PostProcessDirectoryAfterTouchFile(const FileSystemURL& src_url,
143 void OnCopyFileProgress(const FileSystemURL& src_url, int64 size);
144 FileSystemURL CreateDestURL(const FileSystemURL& src_url) const;
file_system_operation_impl.cc 70 const FileSystemURL& src_url,
82 src_url, dest_url,
91 void FileSystemOperationImpl::Move(const FileSystemURL& src_url,
100 src_url, dest_url,
282 const FileSystemURL& src_url,
288 DCHECK(src_url.IsInSameFileSystem(dest_url));
293 weak_factory_.GetWeakPtr(), src_url, dest_url, option,
299 const FileSystemURL& src_url,
304 DCHECK(src_url.IsInSameFileSystem(dest_url));
309 src_url, dest_url, option, callback)
    [all...]
async_file_util_adapter.h 77 const FileSystemURL& src_url,
84 const FileSystemURL& src_url,
file_system_operation_impl.h 41 virtual void Copy(const FileSystemURL& src_url,
46 virtual void Move(const FileSystemURL& src_url,
84 virtual void CopyFileLocal(const FileSystemURL& src_url,
89 virtual void MoveFileLocal(const FileSystemURL& src_url,
file_system_operation_runner.h 69 // Copies a file or directory from |src_url| to |dest_url|. If
70 // |src_url| is a directory, the contents of |src_url| are copied to
75 OperationID Copy(const FileSystemURL& src_url,
81 // Moves a file or directory from |src_url| to |dest_url|. A new file
84 OperationID Move(const FileSystemURL& src_url,
194 // Copies a file from |src_url| to |dest_url|.
196 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
201 // - File::FILE_ERROR_NOT_FOUND if |src_url|
203 // - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file
    [all...]
file_system_operation_runner.cc 87 const FileSystemURL& src_url,
102 PrepareForRead(handle.id, src_url);
104 src_url, dest_url, option,
115 const FileSystemURL& src_url,
129 PrepareForWrite(handle.id, src_url);
131 src_url, dest_url, option,
454 const FileSystemURL& src_url,
461 file_system_context_->CreateFileSystemOperation(src_url, &error);
468 PrepareForRead(handle.id, src_url);
471 src_url, dest_url, option, progress_callback
    [all...]
  /external/chromium_org/content/browser/streams/
stream_registry.h 29 // Clones a stream. Returns true on success, or false if |src_url| doesn't
31 bool CloneStream(const GURL& url, const GURL& src_url);
stream_registry.cc 41 bool StreamRegistry::CloneStream(const GURL& url, const GURL& src_url) {
43 scoped_refptr<Stream> stream(GetStream(src_url));
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.h 42 virtual void Copy(const storage::FileSystemURL& src_url,
47 virtual void Move(const storage::FileSystemURL& src_url,
87 virtual void CopyFileLocal(const storage::FileSystemURL& src_url,
92 virtual void MoveFileLocal(const storage::FileSystemURL& src_url,
syncable_file_system_operation.cc 120 const FileSystemURL& src_url,
137 src_url, dest_url, option, progress_callback,
143 const FileSystemURL& src_url,
153 target_paths_.push_back(src_url);
160 src_url, dest_url, option,
326 const FileSystemURL& src_url,
332 impl_->CopyFileLocal(src_url, dest_url, option, progress_callback, callback);
336 const FileSystemURL& src_url,
341 impl_->MoveFileLocal(src_url, dest_url, option, callback);
canned_syncable_file_system.h 120 base::File::Error Copy(const storage::FileSystemURL& src_url,
122 base::File::Error Move(const storage::FileSystemURL& src_url,
172 void DoCopy(const storage::FileSystemURL& src_url,
175 void DoMove(const storage::FileSystemURL& src_url,
  /external/chromium_org/content/child/
webblobregistry_impl.h 33 const blink::WebURL& src_url);
  /external/chromium_org/content/public/browser/
site_instance.h 141 const GURL& src_url,
  /external/chromium_org/content/test/
mock_webblob_registry_impl.cc 47 const blink::WebURL& src_url) {
mock_webblob_registry_impl.h 30 const blink::WebURL& src_url);
  /external/chromium_org/content/browser/
site_instance_impl.cc 250 GURL src_url = SiteInstanceImpl::GetEffectiveURL(browser_context, local
263 if (IsRendererDebugURL(src_url) || IsRendererDebugURL(dest_url))
267 if (!src_url.is_valid() || !dest_url.is_valid())
277 if (src_url.scheme() != dest_url.scheme())
281 src_url,
  /external/chromium_org/chrome/browser/renderer_context_menu/
context_menu_content_type_unittest.cc 46 rv.src_url = GURL("http://test.image/");
51 rv.src_url = GURL("http://test.video/");
56 rv.src_url = GURL("http://test.audio/");
  /external/chromium_org/ppapi/examples/video_effects/
video_effects.cc 56 void DestinationOpenDone(int32_t result, const std::string& src_url);
110 const std::string& src_url) {
116 video_source_.Open(src_url,
  /external/chromium_org/chrome/browser/chromeos/drive/fileapi/
async_file_util.h 59 const storage::FileSystemURL& src_url,
66 const storage::FileSystemURL& src_url,
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
provider_async_file_util.h 69 const storage::FileSystemURL& src_url,
76 const storage::FileSystemURL& src_url,
  /external/chromium_org/content/browser/fileapi/
dragged_file_util_unittest.cc 449 FileSystemURL src_url = GetEntryURL(file_system_context(), local
452 src_root, dest_root, src_url);
458 directories.push(src_url);
462 << src_url.path().value());
465 src_url, dest_url));
466 VerifyFilesHaveSameContent(src_url, dest_url);
486 FileSystemURL src_url = GetEntryURL(file_system_context(), local
489 src_root, dest_root, src_url);
491 << src_url.path().value());
494 src_url, dest_url))
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.h 79 const storage::FileSystemURL& src_url,
86 const storage::FileSystemURL& src_url,
129 const storage::FileSystemURL& src_url,
162 const storage::FileSystemURL& src_url,
  /external/chromium_org/content/public/common/
context_menu_params.h 80 GURL src_url; member in struct:content::ContextMenuParams

Completed in 9414 milliseconds

1 2 3