HomeSort by relevance Sort by last modified time
    Searched full:source_streams (Results 1 - 3 of 3) sorted by null

  /external/libbrillo/brillo/streams/
input_stream_set.cc 15 std::vector<Stream*> source_streams,
18 : source_streams_{std::move(source_streams)},
22 StreamPtr InputStreamSet::Create(std::vector<Stream*> source_streams,
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,
59 return Create(std::move(source_streams), {}, error);
64 std::vector<Stream*> source_streams; local
    [all...]
input_stream_set.h 36 // 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/
http_form_data.cc 214 std::vector<StreamPtr> source_streams; local
215 if (form_data_.ExtractDataStreams(&source_streams))
216 return InputStreamSet::Create(std::move(source_streams), nullptr);

Completed in 76 milliseconds