OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StreamTap
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/base/
stream.cc
240
//
StreamTap
243
StreamTap
::
StreamTap
(StreamInterface* stream, StreamInterface* tap)
249
StreamTap
::~
StreamTap
() = default;
251
void
StreamTap
::AttachTap(StreamInterface* tap) {
255
StreamInterface*
StreamTap
::DetachTap() {
259
StreamResult
StreamTap
::GetTapResult(int* error) {
266
StreamResult
StreamTap
::Read(void* buffer, size_t buffer_len,
280
StreamResult
StreamTap
::Write(const void* data, size_t data_len
[
all
...]
stream.h
312
//
StreamTap
is a non-modifying, pass-through adapter, which copies all data
317
class
StreamTap
: public StreamAdapterInterface {
319
explicit
StreamTap
(StreamInterface* stream, StreamInterface* tap);
320
~
StreamTap
() override;
340
RTC_DISALLOW_COPY_AND_ASSIGN(
StreamTap
);
httpclient.cc
477
// er,
StreamTap
, so that we can mirror the data to our cache.
482
StreamTap
* tap = new
StreamTap
(output, stream.release());
504
StreamTap
* tap = static_cast<
StreamTap
*>(response().document.release());
Completed in 442 milliseconds