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

/external/libbrillo/brillo/streams/
H A Dinput_stream_set.cc15 std::vector<Stream*> source_streams,
18 : source_streams_{std::move(source_streams)},
22 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams, argument
27 if (source_streams.empty()) {
35 for (Stream* src_stream : source_streams) {
48 for (const Stream* stream : source_streams)
51 stream.reset(new InputStreamSet{std::move(source_streams),
57 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams, argument
59 return Create(std::move(source_streams), {}, error);
64 std::vector<Stream*> source_streams; local
14 InputStreamSet( std::vector<Stream*> source_streams, std::vector<StreamPtr> owned_source_streams, uint64_t initial_stream_size) argument
[all...]
H A Dinput_stream_set.h36 // streams. |source_streams| is the list of all source stream references
40 // referenced in |source_streams| if you need their data to be read from.
42 // streams are not owned), or contain fewer items than in |source_streams|.
43 static StreamPtr Create(std::vector<Stream*> source_streams,
49 // Effectively calls Create(source_streams, {}, error);
50 static StreamPtr Create(std::vector<Stream*> source_streams, ErrorPtr* error);
54 // Effectively calls Create(source_streams, owned_source_streams, error)
55 // with |source_streams| containing pointers to the streams from
112 InputStreamSet(std::vector<Stream*> source_streams,
/external/libbrillo/brillo/http/
H A Dhttp_form_data.cc214 std::vector<StreamPtr> source_streams; local
215 if (form_data_.ExtractDataStreams(&source_streams))
216 return InputStreamSet::Create(std::move(source_streams), nullptr);

Completed in 258 milliseconds