Home | History | Annotate | Download | only in runtime

Lines Matching refs:File

5  * you may not use this file except in compliance with the License.
26 typedef ::unix_file::FdFile File;
32 // Open an existing file with read only access.
33 static File* OpenFileForReading(const char* name);
35 // Open an existing file with read/write access.
36 static File* OpenFileReadWrite(const char* name);
38 // Create an empty file with read/write access. This is a *new* file, that is, if the file
40 static File* CreateEmptyFile(const char* name);
42 // Create an empty file with write access. This is a *new* file, that is, if the file
44 static File* CreateEmptyFileWriteOnly(const char* name);
46 // Open a file with the specified open(2) flags.
47 static File* OpenFileWithFlags(const char* name, int flags);
49 // Check if a file exists.