Lines Matching refs:handler
39 IoErrorHandler &handler) { in LookUpOrCreateAnonymous() argument
41 handler.Crash("ExternalFileUnit only supports output IO"); in LookUpOrCreateAnonymous()
43 return New<ExternalFileUnit>{handler}(unit).release(); in LookUpOrCreateAnonymous()
64 std::size_t, Convert, IoErrorHandler &handler) { in OpenUnit() argument
65 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in OpenUnit()
70 IoErrorHandler &handler) { in OpenAnonymousUnit() argument
71 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in OpenAnonymousUnit()
74 void ExternalFileUnit::CloseUnit(CloseStatus, IoErrorHandler &handler) { in CloseUnit() argument
75 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in CloseUnit()
94 int ExternalFileUnit::GetAsynchronousId(IoErrorHandler &handler) { in GetAsynchronousId() argument
95 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in GetAsynchronousId()
114 Position, IoErrorHandler &handler) { in Open() argument
115 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in Open()
118 void PseudoOpenFile::Close(CloseStatus, IoErrorHandler &handler) { in Close() argument
119 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in Close()
123 FileOffset, char *, std::size_t, std::size_t, IoErrorHandler &handler) { in Read() argument
124 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in Read()
128 std::size_t bytes, IoErrorHandler &handler) { in Write() argument
130 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in Write()
134 auto string{SizedNew<char>{handler}(bytes + 1)}; in Write()
141 void PseudoOpenFile::Truncate(FileOffset, IoErrorHandler &handler) { in Truncate() argument
142 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in Truncate()
146 FileOffset, char *, std::size_t, IoErrorHandler &handler) { in ReadAsynchronously() argument
147 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in ReadAsynchronously()
151 FileOffset, const char *, std::size_t, IoErrorHandler &handler) { in WriteAsynchronously() argument
152 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in WriteAsynchronously()
155 void PseudoOpenFile::Wait(int, IoErrorHandler &handler) { in Wait() argument
156 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in Wait()
159 void PseudoOpenFile::WaitAll(IoErrorHandler &handler) { in WaitAll() argument
160 handler.Crash("%s: unsupported", RT_PRETTY_FUNCTION); in WaitAll()