HomeSort by relevance Sort by last modified time
    Searched defs:InputStreamSet (Results 1 - 2 of 2) sorted by null

  /external/libbrillo/brillo/streams/
input_stream_set.h 24 // InputStreamSet has an option of owning the underlying source streams
25 // or just referencing them. Owned streams are passed to InputStreamSet
27 // be closed/destroyed when InputStreamSet is closed/destroyed.
29 // be valid for the duration of InputStreamSet's life. Closing the
31 class BRILLO_EXPORT InputStreamSet : public Stream {
112 InputStreamSet(std::vector<Stream*> source_streams,
120 // closed when InputStreamSet::CloseBlocking() is called and will be
127 DISALLOW_COPY_AND_ASSIGN(InputStreamSet);
input_stream_set.cc 14 InputStreamSet::InputStreamSet(
22 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams,
51 stream.reset(new InputStreamSet{std::move(source_streams),
57 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams,
62 StreamPtr InputStreamSet::Create(std::vector<StreamPtr> owned_source_streams,
72 bool InputStreamSet::IsOpen() const {
76 bool InputStreamSet::CanGetSize() const {
87 uint64_t InputStreamSet::GetSize() const {
91 bool InputStreamSet::SetSizeBlocking(uint64_t /* size */, ErrorPtr* error)
    [all...]

Completed in 39 milliseconds