OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StreamAdapterInterface
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
stream.cc
152
//
StreamAdapterInterface
155
StreamAdapterInterface
::
StreamAdapterInterface
(StreamInterface* stream,
159
stream_->SignalEvent.connect(this, &
StreamAdapterInterface
::OnEvent);
162
StreamState
StreamAdapterInterface
::GetState() const {
165
StreamResult
StreamAdapterInterface
::Read(void* buffer,
171
StreamResult
StreamAdapterInterface
::Write(const void* data,
177
void
StreamAdapterInterface
::Close() {
181
bool
StreamAdapterInterface
::SetPosition(size_t position) {
185
bool
StreamAdapterInterface
::GetPosition(size_t* position) const
[
all
...]
stream.h
235
//
StreamAdapterInterface
is a convenient base-class for adapting a stream.
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
{
326
//
StreamAdapterInterface
Interface
564
class LoggingAdapter : public
StreamAdapterInterface
{
637
class StreamReference : public
StreamAdapterInterface
{
Completed in 51 milliseconds