Home
last modified time | relevance | path

Searched refs:open_options (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBStream.cpp69 uint32_t open_options = File::eOpenOptionWrite | File::eOpenOptionCanCreate; in RedirectToFile() local
71 open_options |= File::eOpenOptionAppend; in RedirectToFile()
73 open_options |= File::eOpenOptionTruncate; in RedirectToFile()
76 open_options); in RedirectToFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp655 mode_t File::ConvertOpenOptionsForPOSIXOpen(uint32_t open_options) { in ConvertOpenOptionsForPOSIXOpen() argument
657 if (open_options & eOpenOptionRead && open_options & eOpenOptionWrite) in ConvertOpenOptionsForPOSIXOpen()
659 else if (open_options & eOpenOptionWrite) in ConvertOpenOptionsForPOSIXOpen()
662 if (open_options & eOpenOptionAppend) in ConvertOpenOptionsForPOSIXOpen()
665 if (open_options & eOpenOptionTruncate) in ConvertOpenOptionsForPOSIXOpen()
668 if (open_options & eOpenOptionNonBlocking) in ConvertOpenOptionsForPOSIXOpen()
671 if (open_options & eOpenOptionCanCreateNewOnly) in ConvertOpenOptionsForPOSIXOpen()
673 else if (open_options & eOpenOptionCanCreate) in ConvertOpenOptionsForPOSIXOpen()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectBugreport.cpp72 uint32_t open_options = in DoExecute() local
78 open_options |= File::eOpenOptionTruncate; in DoExecute()
83 FileSystem::Instance().Open(file, outfile_spec, open_options); in DoExecute()
H A DCommandObjectMemory.cpp763 uint32_t open_options = in DoExecute() local
767 open_options |= File::eOpenOptionAppend; in DoExecute()
770 outfile_spec, open_options); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFile.h53 static mode_t ConvertOpenOptionsForPOSIXOpen(uint32_t open_options);