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

1 2

  /external/chromium_org/ppapi/cpp/
file_ref.h 25 /// The <code>FileRef</code> class represents a "weak pointer" to a file in
27 class FileRef : public Resource {
29 /// Default constructor for creating an is_null() <code>FileRef</code>
31 FileRef() {}
33 /// A constructor used when you have an existing PP_Resource for a FileRef
38 explicit FileRef(PP_Resource resource);
44 FileRef(PassRef, PP_Resource resource);
52 FileRef(const FileSystem& file_system, const char* path);
54 /// The copy constructor for <code>FileRef</code>.
56 /// @param[in] other A pointer to a <code>FileRef</code>
    [all...]
file_ref.cc 27 FileRef::FileRef(PP_Resource resource) : Resource(resource) {
30 FileRef::FileRef(PassRef, PP_Resource resource) : Resource(PASS_REF, resource) {
33 FileRef::FileRef(const FileSystem& file_system,
44 FileRef::FileRef(const FileRef& other)
48 PP_FileSystemType FileRef::GetFileSystemType() const
    [all...]
url_response_info.cc 37 FileRef URLResponseInfo::GetBodyAsFileRef() const {
39 return FileRef();
40 return FileRef(PASS_REF,
url_response_info.h 16 class FileRef;
45 /// This function returns a <code>FileRef</code>
52 /// @return A <code>FileRef</code> corresponding to a
53 /// <code>FileRef</code> if successful, an <code>is_null</code> object if
56 FileRef GetBodyAsFileRef() const;
directory_entry.h 31 /// contains a <code>FileRef</code> that has already been reference counted
38 /// increments a reference count of the <code>FileRef</code> held by this
44 /// A destructor that decrements a reference count of the <code>FileRef</code>
50 /// count of the <code>FileRef</code> of the other DirectoryEntry while
51 /// decrementing the reference count of the FileRef of this DirectoryEntry.
64 /// This function returns the <code>FileRef</code> held by this
67 /// @return A <code>FileRef</code> of the file.
68 FileRef file_ref() const { return FileRef(data_.file_ref); }
url_request_info.h 16 class FileRef;
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,
file_io.h 19 class FileRef;
64 int32_t Open(const FileRef& file_ref,
url_request_info.cc 48 bool URLRequestInfo::AppendFileToBody(const FileRef& file_ref,
62 const FileRef& file_ref,
  /external/chromium_org/ppapi/cpp/private/
flash_drm.h 14 class FileRef;
28 // Returns the voucher file as a FileRef or an invalid resource on failure.
29 int32_t GetVoucherFile(const CompletionCallbackWithOutput<FileRef>& callback);
flash_file.h 15 class FileRef;
63 static PP_FileHandle OpenFile(const pp::FileRef& resource,
65 static bool QueryFile(const pp::FileRef& resource,
flash_drm.cc 67 const CompletionCallbackWithOutput<FileRef>& callback) {
  /external/chromium_org/ppapi/cpp/dev/
file_chooser_dev.h 18 class FileRef;
70 /// const std::vector<pp::FileRef>& files) {
79 const CompletionCallbackWithOutput< std::vector<FileRef> >& callback);
  /external/chromium_org/ppapi/tests/
test_file_ref.h 13 class FileRef;
25 // Creates a FileRef on an external filesystem.
27 std::string MakeExternalFileRef(pp::FileRef* file_ref_ext);
29 int32_t DeleteDirectoryRecursively(pp::FileRef* dir);
test_file_ref.cc 27 REGISTER_TEST_CASE(FileRef);
53 std::string TestFileRef::MakeExternalFileRef(pp::FileRef* file_ref_ext) {
69 *file_ref_ext = pp::FileRef(response_info.GetBodyAsFileRef());
74 int32_t TestFileRef::DeleteDirectoryRecursively(pp::FileRef* dir) {
92 pp::FileRef file_ref = it->file_ref();
118 // FileRef::Query is out-of-process only.
122 // FileRef::ReadDirectoryEntries is out-of-process only.
143 pp::FileRef file_ref_pers(file_system_pers, invalid_paths[j].c_str());
148 pp::FileRef file_ref_temp(file_system_temp, invalid_paths[j].c_str());
163 pp::FileRef file_ref_pers(file_system_pers, kPersFilePath)
    [all...]
test_flash_drm.cc 25 using pp::FileRef;
99 TestCompletionCallbackWithOutput<FileRef> output_callback(
104 FileRef result = output_callback.output();
test_url_request.h 18 class FileRef;
test_url_loader.h 16 class FileRef;
37 int32_t PrepareFileForPost(const pp::FileRef& file_ref,
  /external/chromium_org/ppapi/cpp/trusted/
file_chooser_trusted.h 32 const CompletionCallbackWithOutput< std::vector<FileRef> >& callback);
file_chooser_trusted.cc 56 const CompletionCallbackWithOutput< std::vector<FileRef> >& callback) {
  /external/chromium_org/ppapi/proxy/
ppb_file_ref_proxy.cc 45 class FileRef : public PPB_FileRef_Shared {
47 explicit FileRef(const PPB_FileRef_CreateInfo& info);
48 virtual ~FileRef();
120 // FileSystem won't die before FileRef. See PPB_FileRef_Impl for
122 // be no longer needed after FileRef refactoring.
125 DISALLOW_IMPLICIT_CONSTRUCTORS(FileRef);
128 FileRef::FileRef(const PPB_FileRef_CreateInfo& info)
134 FileRef::~FileRef() {
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
local_temp_file.h 19 class FileRef;
109 nacl::scoped_ptr<pp::FileRef> file_ref_;
111 nacl::scoped_ptr<pp::FileRef> old_ref_;
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_interface.cc 17 DEFINE_INTERFACE_FUNC(FileRef)
46 REQUEST_INTERFACE(FileRef, FILEREF)
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
file_io.cc 160 pp::FileRef ref(file_system_, file_name.c_str());
209 pp::FileRef ref(file_system_, file_name.c_str());
261 pp::FileRef ref(file_system_, file_name.c_str());
280 pp::FileRef ref(file_system_, dir_name.c_str());
289 pp::FileRef /* unused_ref */) {
311 pp::FileRef ref(file_system_, dir_name.c_str());
  /external/chromium_org/ppapi/examples/crxfs/
crxfs.cc 52 pp::FileRef file_ref_;
87 file_ref_ = pp::FileRef(file_system, filename_.c_str());
  /external/chromium_org/ppapi/examples/url_loader/
stream_to_file.cc 69 pp::FileRef dest_file_;
143 dest_file_ = pp::FileRef();

Completed in 944 milliseconds

1 2