Searched refs:open_options (Results 1 – 4 of 4) sorted by relevance
94 auto open_options = File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate; in RedirectToFile() local 96 open_options |= File::eOpenOptionAppend; in RedirectToFile() 98 open_options |= File::eOpenOptionTruncate; in RedirectToFile() 101 FileSystem::Instance().Open(FileSpec(path), open_options); in RedirectToFile()
778 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in OptionsFromURL() 781 open_options & (File::eOpenOptionReadOnly | File::eOpenOptionWriteOnly | in OptionsFromURL() 790 if (open_options & eOpenOptionAppend) in OptionsFromURL() 793 if (open_options & eOpenOptionTruncate) in OptionsFromURL() 796 if (open_options & eOpenOptionNonBlocking) in OptionsFromURL() 799 if (open_options & eOpenOptionCanCreateNewOnly) in OptionsFromURL() 801 else if (open_options & eOpenOptionCanCreate) in OptionsFromURL() 740 ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) ConvertOpenOptionsForPOSIXOpen() argument
69 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
759 File::OpenOptions open_options = in DoExecute() local762 open_options |= in DoExecute()765 auto outfile = FileSystem::Instance().Open(outfile_spec, open_options); in DoExecute()