HomeSort by relevance Sort by last modified time
    Searched refs:seekable (Results 1 - 25 of 29) sorted by null

1 2

  /external/bluetooth/glib/gio/
gseekable.c 82 * @seekable: a #GSeekable.
89 g_seekable_tell (GSeekable *seekable)
93 g_return_val_if_fail (G_IS_SEEKABLE (seekable), 0);
95 iface = G_SEEKABLE_GET_IFACE (seekable);
97 return (* iface->tell) (seekable);
102 * @seekable: a #GSeekable.
106 * Returns: %TRUE if @seekable can be seeked. %FALSE otherwise.
109 g_seekable_can_seek (GSeekable *seekable)
113 g_return_val_if_fail (G_IS_SEEKABLE (seekable), FALSE);
115 iface = G_SEEKABLE_GET_IFACE (seekable);
    [all...]
gseekable.h 55 * Provides an interface for implementing seekable functionality on I/O Streams.
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,
90 gboolean g_seekable_can_truncate (GSeekable *seekable);
    [all...]
gfileoutputstream.c 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)
335 return g_file_output_stream_tell (G_FILE_OUTPUT_STREAM (seekable));
360 g_file_output_stream_seekable_can_seek (GSeekable *seekable)
362 return g_file_output_stream_can_seek (G_FILE_OUTPUT_STREAM (seekable));
405 g_file_output_stream_seekable_seek (GSeekable *seekable,
    [all...]
gfileinputstream.c 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)
290 return g_file_input_stream_tell (G_FILE_INPUT_STREAM (seekable));
315 g_file_input_stream_seekable_can_seek (GSeekable *seekable)
317 return g_file_input_stream_can_seek (G_FILE_INPUT_STREAM (seekable));
360 g_file_input_stream_seekable_seek (GSeekable *seekable,
    [all...]
gmemoryoutputstream.c 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)
509 stream = G_MEMORY_OUTPUT_STREAM (seekable);
516 g_memory_output_stream_can_seek (GSeekable *seekable)
522 g_memory_output_stream_seek (GSeekable *seekable,
532 stream = G_MEMORY_OUTPUT_STREAM (seekable);
    [all...]
gmemoryinputstream.c 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)
443 memory_stream = G_MEMORY_INPUT_STREAM (seekable);
450 gboolean g_memory_input_stream_can_seek (GSeekable *seekable)
456 g_memory_input_stream_seek (GSeekable *seekable,
466 memory_stream = G_MEMORY_INPUT_STREAM (seekable);
    [all...]
  /frameworks/av/services/audioflinger/
LibsndfileSource.cpp 30 mLooping(loop && sfinfo.seekable),
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 44 bool seekable);
58 // will be seekable, otherwise the single stream will be seekable.
67 bool seekable)
70 mSeekable(seekable) {
136 bool seekable = true; local
145 seekable = false;
149 return new MPEG2TSSource(this, mSourceImpls.editItemAt(index), seekable);
  /external/tremolo/Tremolo/
vorbisfile.c 371 positions. Only called by the seekable initialization (local
591 int link=(vf->seekable?vf->current_link:0);
607 if(vf->seekable && link>0)
660 /* This is different in the seekable and non-seekable cases.
662 In the seekable case, we already have all the header
666 In the non-seekable (streaming) case, we'll only be at a
675 if(vf->seekable){
739 previously read data (as we may be reading from a non-seekable
748 if(offsettest!=-1)vf->seekable=1
    [all...]
ivorbisfile.h 68 int seekable; member in struct:OggVorbis_File
73 /* If the FILE handle isn't seekable (eg, a pipe), only the current
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.idl 66 readonly attribute TimeRanges seekable;
HTMLMediaElement.h 119 PassRefPtr<TimeRanges> seekable() const;
HTMLMediaElement.cpp 2102 PassRefPtr<TimeRanges> HTMLMediaElement::seekable() const function in class:WebCore::HTMLMediaElement
    [all...]
  /external/webkit/Examples/NetscapeCoreAnimationPlugin/
main.m 59 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
163 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype)
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
OGGLoader.java 241 private InputStream readToStream(boolean seekable,float streamDuration){
242 if(seekable){
  /frameworks/base/tests/BrowserTestPlugin/jni/
main.cpp 42 NPBool seekable, uint16_t* stype);
191 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype)
  /external/webkit/Examples/NetscapeCocoaPlugin/
main.m 62 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);
167 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype)
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
main.c 43 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);
183 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype)
  /development/samples/BrowserPlugin/jni/
main.cpp 49 NPBool seekable, uint16_t* stype);
303 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype)
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
main.m 78 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
193 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype)
  /external/webkit/Examples/NetscapeInputMethodPlugin/
main.m 65 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
180 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype)
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
WebKitWebSourceGStreamer.cpp 71 gboolean seekable; member in struct:_WebKitWebSrcPrivate
393 priv->seekable = FALSE;
677 if (!priv->seekable)
742 priv->seekable = length > 0 && g_ascii_strcasecmp("none", response.httpHeaderField("Accept-Ranges").utf8().data());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.h 107 NPError NPP_NewStream(NPMIMEType, NPStream*, NPBool seekable, uint16_t* stype);
NetscapePlugin.cpp 306 NPError NetscapePlugin::NPP_NewStream(NPMIMEType mimeType, NPStream* stream, NPBool seekable, uint16_t* streamType)
308 return m_pluginModule->pluginFuncs().newstream(&m_npp, mimeType, stream, seekable, streamType);
  /external/webkit/Source/WebCore/plugins/
npfunctions.h 105 typedef NPError (*NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);

Completed in 1164 milliseconds

1 2