Lines Matching refs:File
15 File::Info::Info() = default;
17 File::Info::~Info() = default;
19 File::File() = default;
21 File::File(const FilePath& path, uint32_t flags) : error_details_(FILE_OK) {
25 File::File(ScopedPlatformFile platform_file)
32 File::File(PlatformFile platform_file)
39 File::File(Error error_details) : error_details_(error_details) {}
41 File::File(File&& other)
44 File::~File() {
49 File& File::operator=(File&& other) {
56 void File::Initialize(const FilePath& path, uint32_t flags) {
71 std::string File::ErrorToString(Error error) {