OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StreamReference
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
stream.h
625
//
StreamReference
- A reference counting stream adapter
633
// more references. We can then have multiple
StreamReference
637
class
StreamReference
: public StreamAdapterInterface {
643
explicit
StreamReference
(StreamInterface* stream);
646
~
StreamReference
() override;
677
explicit
StreamReference
(StreamRefCount* stream_ref_count,
681
RTC_DISALLOW_COPY_AND_ASSIGN(
StreamReference
);
stream.cc
1040
//
StreamReference
1043
StreamReference
::
StreamReference
(StreamInterface* stream)
1049
StreamInterface*
StreamReference
::NewReference() {
1051
return new
StreamReference
(stream_ref_count_, stream());
1054
StreamReference
::~
StreamReference
() {
1058
StreamReference
::
StreamReference
(StreamRefCount* stream_ref_count,
Completed in 140 milliseconds