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

  /external/libbrillo/brillo/streams/
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...]
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_unittest.cc 28 stream_.reset(new InputStreamSet({itf1_.get(), itf2_.get()}, {}, 100));
39 std::unique_ptr<InputStreamSet> stream_;
  /external/libbrillo/brillo/http/
http_form_data.cc 216 return InputStreamSet::Create(std::move(source_streams), nullptr);
http_form_data_unittest.cc 22 StreamPtr stream = InputStreamSet::Create(std::move(streams), nullptr);

Completed in 105 milliseconds