Lines Matching refs:mo
30 GOutputStream *mo;
37 mo = g_memory_output_stream_new (NULL, 0, g_realloc, g_free);
38 o = g_data_output_stream_new (mo);
44 g_seekable_truncate (G_SEEKABLE (mo), 0, NULL, &error);
53 g_object_unref (mo);
59 GOutputStream *mo;
65 mo = g_memory_output_stream_new (NULL, 0, g_realloc, g_free);
66 o = g_data_output_stream_new (mo);
68 pos = g_memory_output_stream_get_data_size (G_MEMORY_OUTPUT_STREAM (mo));
71 g_seekable_seek (G_SEEKABLE (mo), 0, G_SEEK_CUR, NULL, NULL);
72 pos = g_seekable_tell (G_SEEKABLE (mo));
77 g_seekable_seek (G_SEEKABLE (mo), 0, G_SEEK_SET, NULL, NULL);
78 pos = g_seekable_tell (G_SEEKABLE (mo));
81 pos = g_memory_output_stream_get_data_size (G_MEMORY_OUTPUT_STREAM (mo));
85 g_object_unref (mo);