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

1 2 3 4 5

  /external/chromium/third_party/libjingle/source/talk/base/
socketpool.h 43 class StreamInterface;
53 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
55 virtual void ReturnConnectedStream(StreamInterface* stream) = 0;
69 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
71 virtual void ReturnConnectedStream(StreamInterface* stream);
74 typedef std::pair<SocketAddress, StreamInterface*> ConnectedStream;
77 void OnStreamEvent(StreamInterface* stream, int events, int err);
98 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
100 virtual void ReturnConnectedStream(StreamInterface* stream);
118 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote
    [all...]
sslstreamadapter.h 55 static SSLStreamAdapter* Create(StreamInterface* stream);
57 explicit SSLStreamAdapter(StreamInterface* stream)
stream.h 41 // StreamInterface is a generic asynchronous stream interface, supporting read,
47 // The following enumerations are declared outside of the StreamInterface
68 class StreamInterface : public MessageHandler {
70 virtual ~StreamInterface();
103 sigslot::signal3<StreamInterface*, int, int> SignalEvent;
226 StreamInterface();
232 DISALLOW_EVIL_CONSTRUCTORS(StreamInterface);
243 class StreamAdapterInterface : public StreamInterface,
246 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
310 void Attach(StreamInterface* stream, bool owned = true)
    [all...]
httpbase.h 39 class StreamInterface;
103 // Attach HttpBase to a StreamInterface which represents a bidirectional HTTP
120 bool attach(StreamInterface* stream);
121 StreamInterface* stream() { return http_stream_; }
122 StreamInterface* detach();
137 StreamInterface* GetDocumentStream();
164 void OnHttpStreamEvent(StreamInterface* stream, int events, int error);
165 void OnDocumentEvent(StreamInterface* stream, int events, int error);
188 StreamInterface* http_stream_;
sslstreamadapter.cc 57 SSLStreamAdapter* SSLStreamAdapter::Create(StreamInterface* stream) {
linux.h 63 virtual void Attach(StreamInterface* stream);
69 scoped_ptr<StreamInterface> instream_;
socketpool.cc 58 StreamInterface* StreamCache::RequestConnectedStream(
74 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) {
83 void StreamCache::ReturnConnectedStream(StreamInterface* stream) {
105 void StreamCache::OnStreamEvent(StreamInterface* stream, int events, int err) {
136 StreamInterface*
157 NewSocketPool::ReturnConnectedStream(StreamInterface* stream) {
174 StreamInterface*
211 ReuseSocketPool::ReturnConnectedStream(StreamInterface* stream) {
220 ReuseSocketPool::OnStreamEvent(StreamInterface* stream, int events, int err) {
261 StreamInterface* LoggingPoolAdapter::RequestConnectedStream
    [all...]
socketstream.h 39 class SocketStream : public StreamInterface, public sigslot::has_slots<> {
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketpool.h 43 class StreamInterface;
53 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
55 virtual void ReturnConnectedStream(StreamInterface* stream) = 0;
69 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
71 virtual void ReturnConnectedStream(StreamInterface* stream);
74 typedef std::pair<SocketAddress, StreamInterface*> ConnectedStream;
77 void OnStreamEvent(StreamInterface* stream, int events, int err);
98 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
100 virtual void ReturnConnectedStream(StreamInterface* stream);
118 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote
    [all...]
stream.h 43 // StreamInterface is a generic asynchronous stream interface, supporting read,
49 // The following enumerations are declared outside of the StreamInterface
75 class StreamInterface : public MessageHandler {
81 virtual ~StreamInterface();
114 sigslot::signal3<StreamInterface*, int, int> SignalEvent;
240 StreamInterface();
246 DISALLOW_EVIL_CONSTRUCTORS(StreamInterface);
257 class StreamAdapterInterface : public StreamInterface,
260 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
327 void Attach(StreamInterface* stream, bool owned = true)
    [all...]
httpbase.h 39 class StreamInterface;
103 // Attach HttpBase to a StreamInterface which represents a bidirectional HTTP
120 bool attach(StreamInterface* stream);
121 StreamInterface* stream() { return http_stream_; }
122 StreamInterface* detach();
137 StreamInterface* GetDocumentStream();
164 void OnHttpStreamEvent(StreamInterface* stream, int events, int error);
165 void OnDocumentEvent(StreamInterface* stream, int events, int error);
188 StreamInterface* http_stream_;
multipart.h 42 class MultipartStream : public StreamInterface, public sigslot::has_slots<> {
51 bool AddPart(StreamInterface* data_stream,
65 // StreamInterface
78 typedef std::vector<StreamInterface*> PartList;
80 // StreamInterface Slots
81 void OnEvent(StreamInterface* stream, int events, int error);
httpserver.h 60 int HandleConnection(StreamInterface* stream);
62 sigslot::signal3<HttpServer*, int, StreamInterface*> SignalConnectionClosed;
102 void BeginProcess(StreamInterface* stream);
103 StreamInterface* EndProcess();
145 StreamInterface* stream);
linux.h 65 virtual void Attach(StreamInterface* stream);
71 scoped_ptr<StreamInterface> instream_;
socketpool.cc 58 StreamInterface* StreamCache::RequestConnectedStream(
74 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) {
83 void StreamCache::ReturnConnectedStream(StreamInterface* stream) {
105 void StreamCache::OnStreamEvent(StreamInterface* stream, int events, int err) {
136 StreamInterface*
157 NewSocketPool::ReturnConnectedStream(StreamInterface* stream) {
174 StreamInterface*
216 ReuseSocketPool::ReturnConnectedStream(StreamInterface* stream) {
225 ReuseSocketPool::OnStreamEvent(StreamInterface* stream, int events, int err) {
266 StreamInterface* LoggingPoolAdapter::RequestConnectedStream
    [all...]
socketstream.h 39 class SocketStream : public StreamInterface, public sigslot::has_slots<> {
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediarecorder.h 57 explicit RtpDumpSink(talk_base::StreamInterface* stream);
72 talk_base::scoped_ptr<talk_base::StreamInterface> stream_;
85 talk_base::StreamInterface* send_stream,
86 talk_base::StreamInterface* recv_stream,
89 talk_base::StreamInterface* send_stream,
90 talk_base::StreamInterface* recv_stream,
107 talk_base::StreamInterface* send_stream,
108 talk_base::StreamInterface* recv_stream,
  /external/chromium_org/jingle/glue/
jingle_glue_mock_objects.h 13 class MockStream : public talk_base::StreamInterface {
  /external/chromium/third_party/libjingle/source/talk/examples/login/
xmppsocket.h 41 class StreamInterface;
69 void OnEvent(talk_base::StreamInterface* stream, int events, int err);
74 talk_base::StreamInterface *stream_;
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
securetunnelsessionclient.h 132 virtual talk_base::StreamInterface* GetStream();
141 talk_base::StreamInterface* MakeSecureStream(
142 talk_base::StreamInterface* stream);
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
securetunnelsessionclient.h 132 virtual talk_base::StreamInterface* GetStream();
141 talk_base::StreamInterface* MakeSecureStream(
142 talk_base::StreamInterface* stream);
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.h 84 template <typename StreamInterface>
85 StreamInterface *OpenDevice(
89 StreamInterface *(AlsaSoundSystem::*start_fn)(
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppsocket.h 42 class StreamInterface;
74 void OnEvent(talk_base::StreamInterface* stream, int events, int err);
79 talk_base::StreamInterface *stream_;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.h 89 explicit RtpDumpReader(talk_base::StreamInterface* stream)
109 talk_base::StreamInterface* stream_;
123 explicit RtpDumpLoopReader(talk_base::StreamInterface* stream);
166 explicit RtpDumpWriter(talk_base::StreamInterface* stream);
195 talk_base::StreamInterface* stream_;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
filemediaengine.cc 126 talk_base::StreamInterface* input_file_stream,
127 talk_base::StreamInterface* output_file_stream);
147 talk_base::scoped_ptr<talk_base::StreamInterface> input_stream_;
148 talk_base::scoped_ptr<talk_base::StreamInterface> output_stream_;
166 talk_base::StreamInterface* input_file_stream,
167 talk_base::StreamInterface* output_file_stream)
259 talk_base::StreamInterface* input_file_stream,
260 talk_base::StreamInterface* output_file_stream)
302 talk_base::StreamInterface* input_file_stream,
303 talk_base::StreamInterface* output_file_stream
    [all...]

Completed in 385 milliseconds

1 2 3 4 5