Searched refs:open_options (Results 1 – 4 of 4) sorted by relevance
93 auto open_options = File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate; in RedirectToFile() local95 open_options |= File::eOpenOptionAppend; in RedirectToFile()97 open_options |= File::eOpenOptionTruncate; in RedirectToFile()100 FileSystem::Instance().Open(FileSpec(path), open_options); in RedirectToFile()
738 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in ConvertOpenOptionsForPOSIXOpen() argument741 open_options & (File::eOpenOptionReadOnly | File::eOpenOptionWriteOnly | in ConvertOpenOptionsForPOSIXOpen()750 if (open_options & eOpenOptionAppend) in ConvertOpenOptionsForPOSIXOpen()753 if (open_options & eOpenOptionTruncate) in ConvertOpenOptionsForPOSIXOpen()756 if (open_options & eOpenOptionNonBlocking) in ConvertOpenOptionsForPOSIXOpen()759 if (open_options & eOpenOptionCanCreateNewOnly) in ConvertOpenOptionsForPOSIXOpen()761 else if (open_options & eOpenOptionCanCreate) in ConvertOpenOptionsForPOSIXOpen()
68 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
770 File::OpenOptions open_options = in DoExecute() local773 open_options |= in DoExecute()776 auto outfile = FileSystem::Instance().Open(outfile_spec, open_options); in DoExecute()