Home
last modified time | relevance | path

Searched refs:source_streams (Results 1 – 3 of 3) sorted by relevance

/external/libbrillo/brillo/streams/
Dinput_stream_set.cc17 std::vector<Stream*> source_streams, in InputStreamSet() argument
20 : source_streams_{std::move(source_streams)}, in InputStreamSet()
24 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams, in Create() argument
29 if (source_streams.empty()) { in Create()
37 for (Stream* src_stream : source_streams) { in Create()
50 for (const Stream* stream : source_streams) in Create()
53 stream.reset(new InputStreamSet{std::move(source_streams), in Create()
59 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams, in Create() argument
61 return Create(std::move(source_streams), {}, error); in Create()
66 std::vector<Stream*> source_streams; in Create() local
[all …]
Dinput_stream_set.h43 static StreamPtr Create(std::vector<Stream*> source_streams,
50 static StreamPtr Create(std::vector<Stream*> source_streams, ErrorPtr* error);
112 InputStreamSet(std::vector<Stream*> source_streams,
/external/libbrillo/brillo/http/
Dhttp_form_data.cc226 std::vector<StreamPtr> source_streams; in ExtractDataStream() local
227 if (form_data_.ExtractDataStreams(&source_streams)) in ExtractDataStream()
228 return InputStreamSet::Create(std::move(source_streams), nullptr); in ExtractDataStream()