Lines Matching refs:string

34 const std::string ARG_DUMP_HELP = "-h";
35 const std::string ARG_DUMP_ALL = "-a";
36 const std::string ARG_DUMP_SCREEN = "-s";
37 const std::string ARG_DUMP_DISPLAY = "-d";
81 std::vector<std::string> params;
86 std::string dumpInfo;
106 void DisplayDumper::ShowHelpInfo(std::string& dumpInfo) const
121 void DisplayDumper::ShowIllegalArgsInfo(std::string& dumpInfo, DMError errCode) const
136 DMError DisplayDumper::DumpInfo(const std::vector<std::string>& args, std::string& dumpInfo) const
157 DMError DisplayDumper::DumpAllScreenInfo(std::string& dumpInfo) const
194 DMError DisplayDumper::DumpScreenInfo(const sptr<AbstractScreenGroup>& screenGroup, std::string& dumpInfo) const
216 DMError DisplayDumper::DumpSpecifiedScreenInfo(ScreenId screenId, std::string& dumpInfo) const
224 const std::string& name = screen->GetScreenName();
225 const std::string& screenName = name.size() <= SCREEN_NAME_MAX_LENGTH ?
227 std::string isGroup = screen->isScreenGroup_ ? "true" : "false";
228 std::string screenType = TransferTypeToString(screen->type_);
229 std::string isMirrored = screen->rSDisplayNodeConfig_.isMirrored ? "true" : "false";
250 DMError DisplayDumper::DumpAllDisplayInfo(std::string& dumpInfo) const
272 DMError DisplayDumper::DumpSpecifiedDisplayInfo(DisplayId displayId, std::string& dumpInfo) const
295 bool DisplayDumper::IsValidDigitString(const std::string& idStr) const
310 std::string DisplayDumper::TransferTypeToString(ScreenType type) const
312 std::string screenType;
334 const std::string& name = screen->GetScreenName();
335 const std::string& screenName = name.size() <= SCREEN_NAME_MAX_LENGTH ?
337 std::string isGroup = screen->isScreenGroup_ ? "true" : "false";
338 std::string screenType = TransferTypeToString(screen->type_);
339 std::string isMirrored = screen->rSDisplayNodeConfig_.isMirrored ? "true" : "false";