HomeSort by relevance Sort by last modified time
    Searched refs:streams (Results 26 - 50 of 76) sorted by null

12 3 4

  /external/openssl/crypto/rand/
rand_egd.c 119 # include <streams/un.h>
  /external/webkit/Source/WebCore/plugins/
PluginStream.cpp 51 static StreamMap& streams() function in namespace:WebCore
81 streams().add(&m_stream, m_instance);
91 streams().remove(&m_stream);
212 return streams().get(stream);
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
OGGLoader.java 256 Collection<LogicalOggStream> streams = oggStream.getLogicalStreams(); local
257 loStream = streams.iterator().next();
298 // audio streams must remain open
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.mm 81 static StreamMap& streams()
89 return streams().get(stream);
172 streams().add(&m_stream, plugin);
191 streams().remove(&m_stream);
WebNetscapePluginView.h 100 HashSet<RefPtr<WebNetscapePluginStream> > streams; variable
  /external/chromium/net/tools/spdyshark/
packet-spdy.c 307 conv_data->streams = NULL;
339 if (conv_data->streams == NULL)
340 conv_data->streams = g_array_new(FALSE, TRUE, sizeof(spdy_stream_info_t *));
341 if (stream_id < conv_data->streams->len)
342 DISSECTOR_ASSERT(g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id) == NULL);
344 g_array_set_size(conv_data->streams, stream_id+1);
352 g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id) = si;
360 if (conv_data->streams == NULL || stream_id >= conv_data->streams->len)
363 return g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id)
    [all...]
  /bionic/libc/netbsd/isc/
eventlib_p.h 205 /* Streams. */
206 evStream *streams; member in struct:__anon609
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 50 protected Stack streams = new Stack(); field in class:GrammarSerializerFoo
130 //streams.push(out);
138 //out = (DataOutputStream)streams.pop(); // restore previous stream
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.h 297 // A ZeroCopyInputStream which reads from several other streams in sequence.
299 // and read errors in the underlying streams, so it assumes any errors mean
300 // end-of-stream. So, if the underlying streams fail for any other reason,
302 // not use ConcatenatingInputStream on streams that might produce read errors
306 // All streams passed in as well as the array itself must remain valid
308 ConcatenatingInputStream(ZeroCopyInputStream* const streams[], int count);
319 // As streams are retired, streams_ is incremented and count_ is
323 int64 bytes_retired_; // Bytes read from previous streams.
zero_copy_stream_impl.cc 351 ZeroCopyInputStream* const streams[], int count)
352 : streams_(streams), stream_count_(count), bytes_retired_(0) {
368 // No more streams.
zero_copy_stream_unittest.cc 663 // Now split it up into multiple streams of varying sizes.
676 ZeroCopyInputStream* streams[] = local
680 ConcatenatingInputStream input(streams, GOOGLE_ARRAYSIZE(streams));
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.cpp 395 Vector<RefPtr<NetscapePluginStream> > streams; local
396 copyValuesToVector(m_streams, streams);
398 for (size_t i = 0; i < streams.size(); ++i)
399 streams[i]->stop(NPRES_USER_BREAK);
491 // Stop all streams.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
rawmidi.h 93 append: 1, /* append flag (merge more streams) */
131 struct snd_rawmidi_str streams[2]; member in struct:snd_rawmidi
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 85 # The current Token when an error occurred. Since not all streams
116 from antlr3.streams import TokenStream, CharStream
180 from antlr3.streams import TokenStream
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 900 InputStream streams = null; local
    [all...]
  /external/bluetooth/bluez/audio/
avdtp.c 404 GSList *streams; /* Elements of type struct avdtp_stream * */ member in struct:avdtp
730 for (l = session->streams; l != NULL; l = g_slist_next(l)) {
1087 session->streams = g_slist_remove(session->streams, stream);
1155 g_slist_foreach(session->streams, (GFunc) release_stream, session);
1156 session->streams = NULL;
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
spdyview.js 98 tablePrinter.addHeaderCell('Active streams');
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediaengine.h 271 virtual bool GetActiveStreams(AudioInfo::StreamList* streams) { return true; }
  /external/libpng/
example.c 143 #ifdef streams /* PNG file I/O method 1 */
144 /* Set up the input control if you are using standard C streams */
610 #ifdef streams /* I/O initialization method 1 */
611 /* Set up the output control if you are using standard C streams */
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 781 Vector<RefPtr<Stream> > streams; local
782 copyValuesToVector(m_streams, streams);
784 for (size_t i = 0; i < streams.size(); ++i)
785 streams[i]->cancel();
787 // Cancelling a stream removes it from the m_streams map, so if we cancel all streams the map should be empty.
    [all...]
  /frameworks/base/core/java/android/content/
Intent.java 6681 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
seq.h 87 int snd_seq_open(snd_seq_t **handle, const char *name, int streams, int mode);
88 int snd_seq_open_lconf(snd_seq_t **handle, const char *name, int streams, int mode, snd_config_t *lconf);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
seq.h 87 int snd_seq_open(snd_seq_t **handle, const char *name, int streams, int mode);
88 int snd_seq_open_lconf(snd_seq_t **handle, const char *name, int streams, int mode, snd_config_t *lconf);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
seq.h 87 int snd_seq_open(snd_seq_t **handle, const char *name, int streams, int mode);
88 int snd_seq_open_lconf(snd_seq_t **handle, const char *name, int streams, int mode, snd_config_t *lconf);
  /external/sonivox/jet_tools/JetCreator/
eas.py 619 # close audio streams
625 # close output streams
799 # output to attached streams
    [all...]

Completed in 5910 milliseconds

12 3 4