Home
last modified time | relevance | path

Searched refs:m_streams (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.cpp154 ASSERT(!m_streams.contains(requestID)); in loadURL()
156 m_streams.set(requestID, pluginStream.release()); in loadURL()
172 … for (StreamsMap::const_iterator it = m_streams.begin(), end = m_streams.end(); it != end; ++it) { in destroyStream()
251 ASSERT(m_streams.get(pluginStream->streamID()) == pluginStream); in removePluginStream()
252 m_streams.remove(pluginStream->streamID()); in removePluginStream()
390 return m_streams.get(streamID).get(); in streamFromID()
396 copyValuesToVector(m_streams, streams); in stopAllStreams()
DNetscapePlugin.h195 StreamsMap m_streams; variable
/external/webkit/Source/WebKit2/WebProcess/Plugins/
DPluginView.cpp768 ASSERT(!m_streams.contains(stream->streamID())); in addStream()
769 m_streams.set(stream->streamID(), stream); in addStream()
774 ASSERT(m_streams.get(stream->streamID()) == stream); in removeStream()
776 m_streams.remove(stream->streamID()); in removeStream()
782 copyValuesToVector(m_streams, streams); in cancelAllStreams()
788 ASSERT(m_streams.isEmpty()); in cancelAllStreams()
888 RefPtr<Stream> stream = m_streams.get(streamID).get(); in cancelStreamLoad()
894 ASSERT(!m_streams.contains(streamID)); in cancelStreamLoad()
DPluginView.h168 HashMap<uint64_t, RefPtr<Stream> > m_streams; variable
/external/webkit/Source/WebCore/plugins/
DPluginView.cpp352 HashSet<RefPtr<PluginStream> > streams = m_streams; in stop()
359 ASSERT(m_streams.isEmpty()); in stop()
468 m_streams.add(stream); in performRequest()
513 m_streams.add(stream); in performRequest()
866 ASSERT(m_streams.contains(stream)); in disconnectStream()
868 m_streams.remove(stream); in disconnectStream()
DPluginView.h395 HashSet<RefPtr<PluginStream> > m_streams; variable
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DNetscapePluginInstanceProxy.mm283 copyValuesToVector(m_streams, streamsCopy);
363 stream = m_streams.get(streamID).get();
379 ASSERT(m_streams.get(stream->streamID()) == stream);
380 m_streams.remove(stream->streamID());
708 m_streams.add(stream->streamID(), stream);
789 ASSERT(!m_streams.contains(requestID));
790 m_streams.add(requestID, stream);
DNetscapePluginInstanceProxy.h299 HashMap<uint32_t, RefPtr<HostedNetscapePluginStream> > m_streams; variable
/external/webkit/Source/WebKit/mac/
DChangeLog5144 (WebKit::NetscapePluginInstanceProxy::evaluateJavaScript): Add the stream to m_streams, just
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-1639707 Add Stream forward declaration and the m_streams map.
39887 If the target is null, create a NetscapePluginStream and add it to the m_streams map.
39890 Remove the given NetscapePluginStream from the m_streams map.
/external/webkit/Source/WebCore/
DChangeLog-2007-10-1426027 Add the stream to the m_streams hash set.