Home
last modified time | relevance | path

Searched refs:input_stream (Results 1 – 3 of 3) sorted by relevance

/external/bluetooth/glib/gio/
Dgfileinputstream.c137 GInputStream *input_stream; in g_file_input_stream_query_info() local
142 input_stream = G_INPUT_STREAM (stream); in g_file_input_stream_query_info()
144 if (!g_input_stream_set_pending (input_stream, error)) in g_file_input_stream_query_info()
162 g_input_stream_clear_pending (input_stream); in g_file_input_stream_query_info()
212 GInputStream *input_stream; in g_file_input_stream_query_info_async() local
217 input_stream = G_INPUT_STREAM (stream); in g_file_input_stream_query_info_async()
219 if (!g_input_stream_set_pending (input_stream, &error)) in g_file_input_stream_query_info_async()
328 GInputStream *input_stream; in g_file_input_stream_seek() local
333 input_stream = G_INPUT_STREAM (stream); in g_file_input_stream_seek()
343 if (!g_input_stream_set_pending (input_stream, error)) in g_file_input_stream_seek()
[all …]
Dgbufferedinputstream.c407 GInputStream *input_stream; in g_buffered_input_stream_fill() local
412 input_stream = G_INPUT_STREAM (stream); in g_buffered_input_stream_fill()
421 if (!g_input_stream_set_pending (input_stream, error)) in g_buffered_input_stream_fill()
433 g_input_stream_clear_pending (input_stream); in g_buffered_input_stream_fill()
873 GInputStream *input_stream; in g_buffered_input_stream_read_byte() local
880 input_stream = G_INPUT_STREAM (stream); in g_buffered_input_stream_read_byte()
882 if (g_input_stream_is_closed (input_stream)) in g_buffered_input_stream_read_byte()
889 if (!g_input_stream_set_pending (input_stream, error)) in g_buffered_input_stream_read_byte()
896 g_input_stream_clear_pending (input_stream); in g_buffered_input_stream_read_byte()
914 g_input_stream_clear_pending (input_stream); in g_buffered_input_stream_read_byte()
/external/bluetooth/glib/gio/tests/
Dlive-g-file.c890 GFileInputStream *input_stream; in test_open() local
914 input_stream = g_file_read (child, NULL, &error); in test_open()
920 g_assert (input_stream == NULL); in test_open()
925 g_assert (input_stream == NULL); in test_open()
930 g_assert (input_stream != NULL); in test_open()
937 if (input_stream) in test_open()
941 g_input_stream_close (G_INPUT_STREAM (input_stream), NULL, in test_open()