Searched refs:StreamAdapterInterface (Results 1 – 8 of 8) sorted by relevance
/external/webrtc/webrtc/base/ |
D | stream.cc | 155 StreamAdapterInterface::StreamAdapterInterface(StreamInterface* stream, in StreamAdapterInterface() function in rtc::StreamAdapterInterface 159 stream_->SignalEvent.connect(this, &StreamAdapterInterface::OnEvent); in StreamAdapterInterface() 162 StreamState StreamAdapterInterface::GetState() const { in GetState() 165 StreamResult StreamAdapterInterface::Read(void* buffer, in Read() 171 StreamResult StreamAdapterInterface::Write(const void* data, in Write() 177 void StreamAdapterInterface::Close() { in Close() 181 bool StreamAdapterInterface::SetPosition(size_t position) { in SetPosition() 185 bool StreamAdapterInterface::GetPosition(size_t* position) const { in GetPosition() 189 bool StreamAdapterInterface::GetSize(size_t* size) const { in GetSize() 193 bool StreamAdapterInterface::GetAvailable(size_t* size) const { in GetAvailable() [all …]
|
D | transformadapter.cc | 24 : StreamAdapterInterface(stream), transform_(transform), in TransformAdapter() 46 StreamResult result = StreamAdapterInterface::Read( in Read() 138 StreamResult result = StreamAdapterInterface::Write(buffer_ + pos, in Write() 182 StreamAdapterInterface::Close(); in Close()
|
D | sslstreamadapterhelper.cc | 116 StreamAdapterInterface::OnEvent(stream(), SE_CLOSE, err); in Error() 122 StreamAdapterInterface::Close(); in Close() 128 if (StreamAdapterInterface::GetState() != SS_OPEN) { in StartSSL()
|
D | stream.h | 242 class StreamAdapterInterface : public StreamInterface, 245 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true); 298 ~StreamAdapterInterface() override; 308 RTC_DISALLOW_COPY_AND_ASSIGN(StreamAdapterInterface); 317 class StreamTap : public StreamAdapterInterface { 564 class LoggingAdapter : public StreamAdapterInterface { 637 class StreamReference : public StreamAdapterInterface {
|
D | sslstreamadapter.h | 74 class SSLStreamAdapter : public StreamAdapterInterface { 82 : StreamAdapterInterface(stream), ignore_bad_cert_(false), in SSLStreamAdapter()
|
D | opensslstreamadapter.cc | 504 return StreamAdapterInterface::Write(data, data_len, written, error); in Write() 563 return StreamAdapterInterface::Read(data, data_len, read, error); in Read() 659 StreamAdapterInterface::Close(); in Close() 726 StreamAdapterInterface::OnEvent(stream, events_to_signal, signal_error); in OnEvent() 732 if (StreamAdapterInterface::GetState() != SS_OPEN) { in StartSSL() 822 StreamAdapterInterface::OnEvent(stream(), SE_OPEN|SE_READ|SE_WRITE, 0); in ContinueSSL() 856 StreamAdapterInterface::OnEvent(stream(), SE_CLOSE, err); in Error()
|
D | transformadapter.h | 41 class TransformAdapter : public StreamAdapterInterface {
|
D | diskcache.cc | 41 class DiskCacheAdapter : public StreamAdapterInterface { 45 : StreamAdapterInterface(stream), cache_(cache), id_(id), index_(index) in DiskCacheAdapter()
|