Home | History | Annotate | Download | only in files

Lines Matching defs:File

3 // found in the LICENSE file.
5 #include "base/files/file.h"
14 File::Info::Info()
20 File::Info::~Info() {
23 File::File()
30 File::File(const FilePath& path, uint32_t flags)
36 File::File(PlatformFile platform_file)
46 File::File(Error error_details)
52 File::File(File&& other)
59 File::~File() {
65 File File::CreateForAsyncHandle(PlatformFile platform_file) {
66 File file(platform_file);
69 file.async_ = true;
70 return file;
73 File& File::operator=(File&& other) {
85 void File::Initialize(const FilePath& path, uint32_t flags) {
97 std::string File::ErrorToString(Error error) {