HomeSort by relevance Sort by last modified time
    Searched defs:file_ref (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/ppapi/c/
pp_directory_entry.h 28 PP_Resource file_ref; member in struct:PP_DirectoryEntry
  /external/chromium_org/content/renderer/pepper/
url_request_info_util.cc 57 const PPB_FileRef_Impl* file_ref = local
61 switch (file_ref->GetFileSystemType()) {
68 file_ref->GetFileSystemURL(), &platform_path));
71 platform_path = file_ref->GetSystemPath();
97 // Ensures that the file_ref members of the given request info data are
104 if (item.is_file && !item.file_ref.get()) {
109 item.file_ref = enter.resource();
154 if (!AppendFileRefToBody(item.file_ref.get(),
pepper_file_io_host.cc 245 PPB_FileRef_Impl* file_ref = static_cast<PPB_FileRef_Impl*>(file_ref_api); local
246 if (file_ref->HasValidFileSystem()) {
247 file_system_url_ = file_ref->GetFileSystemURL();
267 routing_id_, file_ref->GetSystemPath(), open_flags, message_id));
ppb_file_ref_impl.cc 192 scoped_refptr<PPB_FileRef_Impl> file_ref(PPB_FileRef_Impl::CreateInternal(
196 dir_files->push_back(file_ref->GetCreateInfo());
200 file_ref->GetReference();
275 PPB_FileRef_Impl* file_ref = new PPB_FileRef_Impl(info, pp_file_system); local
280 file_ref->AddFileSystemRefCount();
281 return file_ref;
  /external/chromium_org/ppapi/cpp/
directory_entry.h 13 #include "ppapi/cpp/file_ref.h"
62 bool is_null() const { return !data_.file_ref; }
68 FileRef file_ref() const { return FileRef(data_.file_ref); } function in class:pp::DirectoryEntry
  /external/chromium_org/webkit/browser/fileapi/
copy_or_move_operation_delegate.cc 150 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) {
155 current_file_ref_ = file_ref;
226 scoped_refptr<webkit_blob::ShareableFileReference> file_ref; local
227 DidPostWriteValidation(url_pair, callback, file_ref,
245 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) {
255 // Note: file_ref passed here to keep the file alive until after
260 weak_factory_.GetWeakPtr(), url_pair, callback, file_ref));
263 // |file_ref| is unused; it is passed here to make sure the reference is
268 const scoped_refptr<webkit_blob::ShareableFileReference>& /*file_ref*/,
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
itunes_file_util.cc 256 scoped_refptr<webkit_blob::ShareableFileReference>* file_ref) {
260 platform_path, file_ref);
269 *file_ref = scoped_refptr<webkit_blob::ShareableFileReference>();
360 scoped_refptr<webkit_blob::ShareableFileReference> file_ref; local
365 platform_path, file_ref));
native_media_file_util.cc 387 scoped_refptr<webkit_blob::ShareableFileReference> file_ref; local
390 &file_ref);
394 base::Bind(callback, error, file_info, platform_path, file_ref));
569 scoped_refptr<webkit_blob::ShareableFileReference>* file_ref) {
579 *file_ref = scoped_refptr<webkit_blob::ShareableFileReference>();
  /external/chromium_org/ppapi/shared_impl/
url_request_info_data.h 25 BodyItem(Resource* file_ref,
46 scoped_refptr<Resource> file_ref; member in struct:ppapi::URLRequestInfoData::BodyItem
  /external/chromium_org/ppapi/tests/
test_file_ref.cc 17 #include "ppapi/cpp/file_ref.h"
92 pp::FileRef file_ref = it->file_ref(); local
94 rv = DeleteDirectoryRecursively(&file_ref);
98 callback.WaitForResult(file_ref.Delete(callback.GetCallback()));
351 pp::FileRef file_ref(file_system, "/file_touch");
354 file_io.Open(file_ref,
372 callback.WaitForResult(file_ref.Touch(last_access_time, last_modified_time,
425 pp::FileRef file_ref(file_system, "/file_delete");
428 file_io.Open(file_ref, PP_FILEOPENFLAG_CREATE, callback.GetCallback()))
719 pp::FileRef file_ref = it->file_ref(); local
    [all...]
  /external/chromium_org/content/browser/fileapi/
fileapi_message_filter.cc 817 scoped_refptr<webkit_blob::ShareableFileReference> file_ref = snapshot_file; local
831 if (!file_ref.get()) {
833 file_ref = webkit_blob::ShareableFileReference::GetOrCreate(
838 file_ref->AddFinalReleaseCallback(
842 if (file_ref.get()) {
844 in_transit_snapshot_files_[request_id] = file_ref;

Completed in 186 milliseconds