Searched defs:FileIO (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dfile_io.h22 /// The <code>FileIO</code> class represents a regular file.
23 class FileIO : public Resource { class in namespace:pp
25 /// Default constructor for creating an is_null() <code>FileIO</code>
27 FileIO();
29 /// A constructor used to create a <code>FileIO</code> and associate it with
34 explicit FileIO(const InstanceHandle& instance);
36 /// The copy constructor for <code>FileIO</code>.
38 /// @param[in] other A reference to a <code>FileIO</code>.
39 FileIO(const FileIO
[all...]
H A Dfile_io.cc31 FileIO::FileIO() { function in class:pp::FileIO
34 FileIO::FileIO(const InstanceHandle& instance) { function in class:pp::FileIO
44 FileIO::FileIO(const FileIO& other) function in class:pp::FileIO
48 int32_t FileIO::Open(const FileRef& file_ref,
63 int32_t FileIO::Query(PP_FileInfo* result_buf,
75 int32_t FileIO
[all...]
/external/chromium_org/ppapi/proxy/
H A Dnacl_message_scanner.h76 // FileIO information for quota auditing.
77 class PPAPI_PROXY_EXPORT FileIO { class in class:ppapi::proxy::NaClMessageScanner
79 FileIO(FileSystem* file_system, int64_t max_written_offset);
80 ~FileIO();
100 DISALLOW_COPY_AND_ASSIGN(FileIO);
103 FileIO* GetFile(PP_Resource file_io);
111 // We intercept FileSystem and FileIO messages to maintain information about
116 typedef std::map<int32_t, FileIO*> FileIOMap;
H A Dnacl_message_scanner.cc256 NaClMessageScanner::FileIO::FileIO(FileSystem* file_system, function in class:ppapi::proxy::NaClMessageScanner::FileIO
262 NaClMessageScanner::FileIO::~FileIO() {
265 void NaClMessageScanner::FileIO::SetMaxWrittenOffset(
271 bool NaClMessageScanner::FileIO::Grow(int64_t amount) {
348 // Audit FileIO and FileSystem messages to ensure that the plugin doesn't
363 // Audit FileIO Close messages to make sure the plugin reports an
388 // Audit FileIO SetLength messages to make sure the plugin is within
463 NaClMessageScanner::FileIO* NaClMessageScanne
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_file_io.cc44 REGISTER_TEST_CASE(FileIO); variable
64 std::string result = "FileIO:Open had unexpected behavior with flags: ";
84 pp::FileIO* file_io,
107 pp::FileIO* file_io,
146 pp::FileIO* file_io,
307 pp::FileIO file_io(instance_);
325 pp::FileIO file_io(instance_);
419 pp::FileIO file_io2(instance_);
453 pp::FileIO file_io(instance_);
557 pp::FileIO file_i
[all...]

Completed in 88 milliseconds