Home
last modified time | relevance | path

Searched refs:CloseStatus (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/flang/runtime/
Dfile.h22 enum class CloseStatus { Keep, Delete }; enum
45 void Close(CloseStatus, IoErrorHandler &);
Dfile.cpp166 void OpenFile::Close(CloseStatus status, IoErrorHandler &handler) { in Close()
171 case CloseStatus::Keep: in Close()
173 case CloseStatus::Delete: in Close()
Dio-stmt.h361 void set_status(CloseStatus status) { status_ = status; } in set_status()
365 CloseStatus status_{CloseStatus::Keep};
390 void set_status(CloseStatus) {} // discards in set_status() argument
Dunit-map.cpp59 p->unit.CloseUnit(CloseStatus::Keep, handler); in CloseAll()
Dunit.h58 void CloseUnit(CloseStatus, IoErrorHandler &);
Dunit.cpp113 Close(CloseStatus::Keep, handler); in OpenUnit()
160 void ExternalFileUnit::CloseUnit(CloseStatus status, IoErrorHandler &handler) { in CloseUnit()
Dio-api.cpp830 close->set_status(CloseStatus::Keep); in IONAME()
833 close->set_status(CloseStatus::Delete); in IONAME()
/external/llvm/lib/Support/
DHost.cpp65 int CloseStatus = close(FD); in readCpuInfo() local
66 if (CloseStatus) in readCpuInfo()