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

  /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...]
  /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/tests/
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...]

Completed in 85 milliseconds