Searched defs:terminal_type (Results 1 - 3 of 3) sorted by relevance

/system/core/adb/
H A Dservices.cpp227 std::string terminal_type = "dumb"; local
237 terminal_type = arg.substr(5);
244 return StartSubprocess(command.c_str(), terminal_type.c_str(), type, protocol);
H A Dshell_service.cpp152 Subprocess(const std::string& command, const char* terminal_type,
203 Subprocess::Subprocess(const std::string& command, const char* terminal_type, argument
206 terminal_type_(terminal_type ? terminal_type : ""),
745 int StartSubprocess(const char* name, const char* terminal_type, argument
750 terminal_type, name);
752 auto subprocess = std::make_unique<Subprocess>(name, terminal_type, type, protocol);
H A Dcommandline.cpp617 const char* terminal_type = getenv("TERM"); local
618 if (terminal_type != nullptr) {
619 args.push_back(std::string("TERM=") + terminal_type);

Completed in 102 milliseconds