OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stream_class
(Results
1 - 6
of
6
) sorted by null
/external/bluetooth/glib/gio/win32/
gwinhttpfileinputstream.c
86
GInputStreamClass *
stream_class
= G_INPUT_STREAM_CLASS (klass);
local
90
stream_class
->read_fn = g_winhttp_file_input_stream_read;
91
stream_class
->close_fn = g_winhttp_file_input_stream_close;
gwinhttpfileoutputstream.c
76
GOutputStreamClass *
stream_class
= G_OUTPUT_STREAM_CLASS (klass);
local
80
stream_class
->write_fn = g_winhttp_file_output_stream_write;
/external/bluetooth/glib/gio/
gunixinputstream.c
130
GInputStreamClass *
stream_class
= G_INPUT_STREAM_CLASS (klass);
local
138
stream_class
->read_fn = g_unix_input_stream_read;
139
stream_class
->close_fn = g_unix_input_stream_close;
140
stream_class
->read_async = g_unix_input_stream_read_async;
141
stream_class
->read_finish = g_unix_input_stream_read_finish;
145
stream_class
->skip_async = g_unix_input_stream_skip_async;
146
stream_class
->skip_finish = g_unix_input_stream_skip_finish;
148
stream_class
->close_async = g_unix_input_stream_close_async;
149
stream_class
->close_finish = g_unix_input_stream_close_finish;
glocalfileinputstream.c
92
GInputStreamClass *
stream_class
= G_INPUT_STREAM_CLASS (klass);
local
99
stream_class
->read_fn = g_local_file_input_stream_read;
100
stream_class
->skip = g_local_file_input_stream_skip;
101
stream_class
->close_fn = g_local_file_input_stream_close;
gunixoutputstream.c
122
GOutputStreamClass *
stream_class
= G_OUTPUT_STREAM_CLASS (klass);
local
130
stream_class
->write_fn = g_unix_output_stream_write;
131
stream_class
->close_fn = g_unix_output_stream_close;
132
stream_class
->write_async = g_unix_output_stream_write_async;
133
stream_class
->write_finish = g_unix_output_stream_write_finish;
134
stream_class
->close_async = g_unix_output_stream_close_async;
135
stream_class
->close_finish = g_unix_output_stream_close_finish;
glocalfileoutputstream.c
121
GOutputStreamClass *
stream_class
= G_OUTPUT_STREAM_CLASS (klass);
local
128
stream_class
->write_fn = g_local_file_output_stream_write;
129
stream_class
->close_fn = g_local_file_output_stream_close;
Completed in 468 milliseconds