MCPcopy Create free account
hub / github.com/apache/arrow / garrow_input_stream_close

Function garrow_input_stream_close

c_glib/arrow-glib/input-stream.cpp:192–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192static gboolean
193garrow_input_stream_close(GInputStream *stream, GCancellable *cancellable, GError **error)
194{
195 if (g_cancellable_set_error_if_cancelled(cancellable, error)) {
196 return FALSE;
197 }
198 auto arrow_input_stream = garrow_input_stream_get_raw(GARROW_INPUT_STREAM(stream));
199 auto status = arrow_input_stream->Close();
200 return garrow_error_check(error, status, "[input-stream][close]");
201}
202
203static void
204garrow_input_stream_init(GArrowInputStream *object)

Callers

nothing calls this directly

Calls 3

garrow_error_checkFunction · 0.85
CloseMethod · 0.45

Tested by

no test coverage detected