HomeSort by relevance Sort by last modified time
    Searched refs:GSeekable (Results 1 - 7 of 7) sorted by null

  /external/bluetooth/glib/gio/
gseekable.h 35 #define G_SEEKABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_SEEKABLE, GSeekable))
40 * GSeekable:
63 goffset (* tell) (GSeekable *seekable);
65 gboolean (* can_seek) (GSeekable *seekable);
66 gboolean (* seek) (GSeekable *seekable,
72 gboolean (* can_truncate) (GSeekable *seekable);
73 gboolean (* truncate_fn) (GSeekable *seekable,
83 goffset g_seekable_tell (GSeekable *seekable);
84 gboolean g_seekable_can_seek (GSeekable *seekable);
85 gboolean g_seekable_seek (GSeekable *seekable
    [all...]
gseekable.c 24 #include "gseekable.h"
30 * SECTION:gseekable
35 * #GSeekable is implemented by streams (implementations of
64 g_type_register_static (G_TYPE_INTERFACE, I_("GSeekable"),
82 * @seekable: a #GSeekable.
89 g_seekable_tell (GSeekable *seekable)
102 * @seekable: a #GSeekable.
109 g_seekable_can_seek (GSeekable *seekable)
122 * @seekable: a #GSeekable.
140 g_seekable_seek (GSeekable *seekable
    [all...]
gfileinputstream.c 27 #include <gseekable.h>
40 * @see_also: #GInputStream, #GDataInputStream, #GSeekable
45 * GFileInputStream implements #GSeekable, which allows the input
56 static goffset g_file_input_stream_seekable_tell (GSeekable *seekable);
57 static gboolean g_file_input_stream_seekable_can_seek (GSeekable *seekable);
58 static gboolean g_file_input_stream_seekable_seek (GSeekable *seekable,
63 static gboolean g_file_input_stream_seekable_can_truncate (GSeekable *seekable);
64 static gboolean g_file_input_stream_seekable_truncate (GSeekable *seekable,
288 g_file_input_stream_seekable_tell (GSeekable *seekable)
315 g_file_input_stream_seekable_can_seek (GSeekable *seekable
    [all...]
gfileoutputstream.c 27 #include <gseekable.h>
40 * @see_also: #GOutputStream, #GDataOutputStream, #GSeekable
45 * GFileOutputStream implements #GSeekable, which allows the output
60 static goffset g_file_output_stream_seekable_tell (GSeekable *seekable);
61 static gboolean g_file_output_stream_seekable_can_seek (GSeekable *seekable);
62 static gboolean g_file_output_stream_seekable_seek (GSeekable *seekable,
67 static gboolean g_file_output_stream_seekable_can_truncate (GSeekable *seekable);
68 static gboolean g_file_output_stream_seekable_truncate (GSeekable *seekable,
333 g_file_output_stream_seekable_tell (GSeekable *seekable)
360 g_file_output_stream_seekable_can_seek (GSeekable *seekable
    [all...]
gmemoryinputstream.c 26 #include "gseekable.h"
100 static goffset g_memory_input_stream_tell (GSeekable *seekable);
101 static gboolean g_memory_input_stream_can_seek (GSeekable *seekable);
102 static gboolean g_memory_input_stream_seek (GSeekable *seekable,
107 static gboolean g_memory_input_stream_can_truncate (GSeekable *seekable);
108 static gboolean g_memory_input_stream_truncate (GSeekable *seekable,
438 g_memory_input_stream_tell (GSeekable *seekable)
450 gboolean g_memory_input_stream_can_seek (GSeekable *seekable)
456 g_memory_input_stream_seek (GSeekable *seekable,
507 g_memory_input_stream_can_truncate (GSeekable *seekable
    [all...]
gmemoryoutputstream.c 26 #include "gseekable.h"
91 static goffset g_memory_output_stream_tell (GSeekable *seekable);
92 static gboolean g_memory_output_stream_can_seek (GSeekable *seekable);
93 static gboolean g_memory_output_stream_seek (GSeekable *seekable,
98 static gboolean g_memory_output_stream_can_truncate (GSeekable *seekable);
99 static gboolean g_memory_output_stream_truncate (GSeekable *seekable,
504 g_memory_output_stream_tell (GSeekable *seekable)
516 g_memory_output_stream_can_seek (GSeekable *seekable)
522 g_memory_output_stream_seek (GSeekable *seekable,
576 g_memory_output_stream_can_truncate (GSeekable *seekable
    [all...]
giotypes.h 101 typedef struct _GSeekable GSeekable;

Completed in 57 milliseconds