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

1 2 3 4

  /external/chromium_org/ppapi/api/
pp_directory_entry.idl 12 PP_Resource file_ref;
ppb_file_ref.idl 67 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
74 PP_FileSystemType GetFileSystemType([in] PP_Resource file_ref);
79 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
87 PP_Var GetName([in] PP_Resource file_ref);
92 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
99 PP_Var GetPath([in] PP_Resource file_ref);
103 * <code>file_ref</code> points to the root of the filesystem, then the root
106 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
113 PP_Resource GetParent([in] PP_Resource file_ref);
121 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a fil
    [all...]
  /external/chromium_org/ppapi/c/
ppb_file_ref.h 91 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
98 PP_FileSystemType (*GetFileSystemType)(PP_Resource file_ref);
102 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
110 struct PP_Var (*GetName)(PP_Resource file_ref);
114 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
121 struct PP_Var (*GetPath)(PP_Resource file_ref);
124 * <code>file_ref</code> points to the root of the filesystem, then the root
127 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
134 PP_Resource (*GetParent)(PP_Resource file_ref);
141 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a fil
    [all...]
pp_directory_entry.h 28 PP_Resource file_ref; member in struct:PP_DirectoryEntry
ppb_url_request_info.h 238 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
256 PP_Resource file_ref,
  /external/chromium_org/ppapi/api/private/
ppb_file_ref_private.idl 16 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
21 PP_Var GetAbsolutePath([in] PP_Resource file_ref);
ppb_flash_drm.idl 47 * Asynchronously returns a PPB_FileRef resource in |file_ref| which points to
52 [out] PP_Resource file_ref,
  /external/chromium_org/ppapi/cpp/
directory_entry.cc 20 data_.file_ref = data.file_ref;
25 data_.file_ref = other.data_.file_ref;
27 if (data_.file_ref)
28 Module::Get()->core()->AddRefResource(data_.file_ref);
32 if (data_.file_ref)
33 Module::Get()->core()->ReleaseResource(data_.file_ref);
38 if (data_.file_ref)
39 Module::Get()->core()->ReleaseResource(data_.file_ref);
    [all...]
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
url_request_info.cc 7 #include "ppapi/cpp/file_ref.h"
48 bool URLRequestInfo::AppendFileToBody(const FileRef& file_ref,
55 file_ref.pp_resource(),
62 const FileRef& file_ref,
70 file_ref.pp_resource(),
url_request_info.h 64 /// @param[in] file_ref A <code>FileRef</code> containing the file
76 bool AppendFileToBody(const FileRef& file_ref,
83 /// @param[in] file_ref A <code>FileRef</code> containing the file
99 bool AppendFileRangeToBody(const FileRef& file_ref,
  /external/chromium_org/ppapi/c/private/
ppb_file_ref_private.h 34 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
39 struct PP_Var (*GetAbsolutePath)(PP_Resource file_ref);
ppb_flash_drm.h 59 * Asynchronously returns a PPB_FileRef resource in |file_ref| which points to
64 PP_Resource* file_ref,
85 PP_Resource* file_ref,
  /external/chromium_org/ppapi/thunk/
ppb_file_ref_thunk.cc 51 PP_FileSystemType GetFileSystemType(PP_Resource file_ref) {
53 EnterFileRef enter(file_ref, true);
59 PP_Var GetName(PP_Resource file_ref) {
61 EnterFileRef enter(file_ref, true);
67 PP_Var GetPath(PP_Resource file_ref) {
69 EnterFileRef enter(file_ref, true);
75 PP_Resource GetParent(PP_Resource file_ref) {
77 EnterFileRef enter(file_ref, true);
107 int32_t Touch(PP_Resource file_ref,
112 EnterFileRef enter(file_ref, callback, true)
    [all...]
ppb_flash_drm_api.h 21 virtual int32_t GetVoucherFile(PP_Resource* file_ref,
ppb_url_request_info_api.h 24 virtual PP_Bool AppendFileToBody(PP_Resource file_ref,
ppb_flash_file_api.h 49 PP_Resource file_ref,
53 PP_Resource file_ref,
ppb_flash_file_fileref_thunk.cc 18 PP_Instance GetInstanceFromFileRef(PP_Resource file_ref) {
19 thunk::EnterResource<thunk::PPB_FileRef_API> enter(file_ref, true);
ppb_url_request_info_thunk.cc 52 PP_Resource file_ref,
60 return enter.object()->AppendFileToBody(file_ref,
  /external/chromium_org/ppapi/shared_impl/
url_request_info_data.cc 33 URLRequestInfoData::BodyItem::BodyItem(Resource* file_ref,
38 file_ref_resource(file_ref),
39 file_ref_pp_resource(file_ref->pp_resource()),
  /external/chromium_org/ppapi/tests/extensions/media_galleries/
test_galleries.cc 9 #include "ppapi/cpp/file_ref.h"
37 void TestRead(pp::FileRef file_ref);
38 void TestWrite(pp::FileRef file_ref);
95 pp::FileRef file_ref = ParseMessage(var_message, &test_type); local
96 if (file_ref.is_null())
100 TestRead(file_ref);
102 TestWrite(file_ref);
108 void FilePassingInstance::TestRead(pp::FileRef file_ref) {
114 file_io.Open(file_ref, PP_FILEOPENFLAG_READ, callback.GetCallback()));
138 void FilePassingInstance::TestWrite(pp::FileRef file_ref) {
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
snapshot_manager.h 55 scoped_refptr<storage::ShareableFileReference> file_ref; member in struct:file_manager::SnapshotManager::FileReferenceWithSizeInfo
72 const scoped_refptr<storage::ShareableFileReference>& file_ref);
  /external/chromium_org/ppapi/proxy/
flash_drm_resource.cc 59 PP_Resource* file_ref,
61 if (!file_ref)
64 *file_ref = 0;
70 file_ref, callback));
flash_file_resource.h 51 PP_Resource file_ref,
55 PP_Resource file_ref,
  /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()));
365 pp::FileRef file_ref(file_system, "/file_touch");
368 file_io.Open(file_ref,
386 callback.WaitForResult(file_ref.Touch(last_access_time, last_modified_time,
441 pp::FileRef file_ref(file_system, "/file_delete");
444 file_io.Open(file_ref, PP_FILEOPENFLAG_CREATE, callback.GetCallback()))
742 pp::FileRef file_ref = it->file_ref(); local
    [all...]

Completed in 631 milliseconds

1 2 3 4