enum OpenFlags
Declared at: llvm/include/llvm/Support/FileSystem.h:761
Enumerators
Name | Value | Comment |
---|---|---|
OF_None | 0 | |
F_None | 0 | |
OF_Text | 1 | The file should be opened in text mode on platforms that make this distinction. |
F_Text | 1 | The file should be opened in text mode on platforms that make this distinction. |
OF_Append | 2 | The file should be opened in append mode. |
F_Append | 2 | The file should be opened in append mode. |
OF_Delete | 4 | Delete the file on close. Only makes a difference on windows. |
OF_ChildInherit | 8 | When a child process is launched, this file should remain open in the child process. |
OF_UpdateAtime | 16 | Force files Atime to be updated on access. Only makes a difference on windows. |