Home
last modified time | relevance | path

Searched refs:BuildParameter (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/common/libs/utils/
Dsubprocess.h119 bool BuildParameter(std::stringstream* stream, T t) { in BuildParameter() function
124 bool BuildParameter(std::stringstream* stream, SharedFD shared_fd);
126 bool BuildParameter(std::stringstream* stream, T t, Args... args) { in BuildParameter() function
127 return BuildParameter(stream, t) && BuildParameter(stream, args...); in BuildParameter()
139 cmd_->BuildParameter(&stream_, t);
180 if (BuildParameter(&ss, args...)) { in AddParameter()
Dsubprocess.cpp184 bool Command::BuildParameter(std::stringstream* stream, SharedFD shared_fd) { in BuildParameter() function in cuttlefish::Command