Home | History | Annotate | Download | only in base

Lines Matching defs:FileStream

5 // This file defines FileStream, a basic interface for reading and writing files
30 class FileStream {
32 FileStream();
34 // Construct a FileStream with an existing file handle and opening flags.
38 // The already opened file will not be automatically closed when FileStream
40 FileStream(base::PlatformFile file, int flags);
42 ~FileStream();
44 // Call this method to close the FileStream. It is OK to call Close
49 // Call this method to open the FileStream. The remaining methods
139 // the FileStream was opened with PLATFORM_FILE_ASYNC.
146 DISALLOW_COPY_AND_ASSIGN(FileStream);