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

1 2 3 4

  /external/chromium_org/webkit/browser/fileapi/
copy_or_move_operation_delegate.cc 49 const FileSystemURL& src_url,
56 src_url_(src_url),
98 const FileSystemURL& src_url,
106 src_url_(src_url),
370 const FileSystemURL& src_url,
379 src_url_(src_url),
728 const FileSystemURL& src_url,
732 FileSystemOperation::BEGIN_COPY_ENTRY, src_url, FileSystemURL(), 0);
735 FileSystemURL dest_url = CreateDestURL(src_url);
739 operation_runner(), operation_type_, src_url, dest_url, option_
    [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_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 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url|
203 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file
    [all...]
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,
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,
284 const FileSystemURL& src_url,
290 DCHECK(src_url.IsInSameFileSystem(dest_url));
295 weak_factory_.GetWeakPtr(), src_url, dest_url, option,
301 const FileSystemURL& src_url,
306 DCHECK(src_url.IsInSameFileSystem(dest_url));
311 src_url, dest_url, option, callback)
    [all...]
file_system_file_util.h 133 // Copies or moves a single file from |src_url| to |dest_url|.
134 // The filesystem type of |src_url| and |dest_url| MUST be same.
138 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url|
140 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
148 const FileSystemURL& src_url,
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,
async_file_util.h 212 // Copies a file from |src_url| to |dest_url|.
214 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
225 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url|
227 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
235 const FileSystemURL& src_url,
241 // Moves a local file from |src_url| to |dest_url|.
243 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
248 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url|
250 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
258 const FileSystemURL& src_url,
    [all...]
  /external/chromium_org/third_party/JSON/
get_and_build_json_pm.sh 5 # SRC_URL='http://www.cpan.org/authors/id/M/MA/MAKAMAKA/JSON-2.58.tar.gz'
8 SRC_URL="http://www.cpan.org/authors/id/M/MA/MAKAMAKA/$PACKAGE-$VERSION.tar.gz"
9 FILENAME="$(basename $SRC_URL)"
14 curl --remote-name "$SRC_URL"
  /external/chromium_org/third_party/jinja2/
get_jinja2.sh 17 SRC_URL='https://pypi.python.org/packages/source/'
18 SRC_URL+="${PACKAGE:0:1}/$PACKAGE/$PACKAGE-$VERSION.tar.gz"
19 FILENAME="$(basename $SRC_URL)"
96 echo "Downloading $SRC_URL"
97 curl --remote-name "$SRC_URL"
  /external/chromium_org/third_party/markupsafe/
get_markupsafe.sh 15 SRC_URL='https://pypi.python.org/packages/source/'
16 SRC_URL+="${PACKAGE:0:1}/$PACKAGE/$PACKAGE-$VERSION.tar.gz"
17 FILENAME="$(basename $SRC_URL)"
94 echo "Downloading $SRC_URL"
95 curl --remote-name "$SRC_URL"
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.h 42 virtual void Copy(const fileapi::FileSystemURL& src_url,
47 virtual void Move(const fileapi::FileSystemURL& src_url,
85 virtual void CopyFileLocal(const fileapi::FileSystemURL& src_url,
90 virtual void MoveFileLocal(const fileapi::FileSystemURL& src_url,
syncable_file_system_operation.cc 124 const FileSystemURL& src_url,
141 src_url, dest_url, option, progress_callback,
147 const FileSystemURL& src_url,
157 target_paths_.push_back(src_url);
164 src_url, dest_url, option,
330 const FileSystemURL& src_url,
336 impl_->CopyFileLocal(src_url, dest_url, option, progress_callback, callback);
340 const FileSystemURL& src_url,
345 impl_->MoveFileLocal(src_url, dest_url, option, callback);
canned_syncable_file_system.h 111 base::PlatformFileError Copy(const fileapi::FileSystemURL& src_url,
113 base::PlatformFileError Move(const fileapi::FileSystemURL& src_url,
165 void DoCopy(const fileapi::FileSystemURL& src_url,
168 void DoMove(const fileapi::FileSystemURL& src_url,
  /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/content/browser/fileapi/
dragged_file_util_unittest.cc 438 FileSystemURL src_url = GetEntryURL(file_system_context(), local
441 src_root, dest_root, src_url);
447 directories.push(src_url);
451 << src_url.path().value());
454 src_url, dest_url));
455 VerifyFilesHaveSameContent(src_url, dest_url);
475 FileSystemURL src_url = GetEntryURL(file_system_context(), local
478 src_root, dest_root, src_url);
480 << src_url.path().value());
483 src_url, dest_url))
    [all...]
fileapi_message_filter.cc 243 FileSystemURL src_url(context_->CrackURL(src_path));
245 if (!ValidateFileSystemURL(request_id, src_url) ||
249 if (!security_policy_->CanReadFileSystemFile(process_id_, src_url) ||
250 !security_policy_->CanDeleteFileSystemFile(process_id_, src_url) ||
258 src_url, dest_url,
266 FileSystemURL src_url(context_->CrackURL(src_path));
268 if (!ValidateFileSystemURL(request_id, src_url) ||
272 if (!security_policy_->CanReadFileSystemFile(process_id_, src_url) ||
280 src_url, dest_url,
657 const GURL& url, const GURL& src_url) {
    [all...]
  /external/chromium/webkit/glue/
context_menu.cc 29 src_url(data.srcURL),
  /external/chromium_org/chrome/browser/chromeos/drive/
async_file_util.h 67 const fileapi::FileSystemURL& src_url,
74 const fileapi::FileSystemURL& src_url,
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.h 64 const fileapi::FileSystemURL& src_url,
71 const fileapi::FileSystemURL& src_url,
114 const fileapi::FileSystemURL& src_url,
147 const fileapi::FileSystemURL& src_url,
  /external/chromium_org/content/child/
webblobregistry_impl.h 39 const blink::WebURL& src_url);
  /external/chromium_org/content/common/fileapi/
webblob_messages.h 71 GURL /* src_url */)
  /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,

Completed in 1419 milliseconds

1 2 3 4