Home
last modified time | relevance | path

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

/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_mem_parser.h69 …uint32_t ParseSmapsPathTypeBySuffix(bool hasX, const std::string& path, const bool hasAppName) con…
70 …uint32_t ParseSmapsPathTypeByPrefix(bool hasX, const std::string& path, const bool hasAppName) con…
Dhtrace_mem_parser.cpp200 uint32_t HtraceMemParser::ParseSmapsPathTypeByPrefix(bool hasX, const std::string& path, const bool… in ParseSmapsPathTypeByPrefix() argument
203 if (hasX) { in ParseSmapsPathTypeByPrefix()
219 uint32_t HtraceMemParser::ParseSmapsPathTypeBySuffix(bool hasX, const std::string& path, const bool… in ParseSmapsPathTypeBySuffix() argument
223 return hasX ? (hasAppName ? static_cast<uint32_t>(SmapsMemType::SMAPS_MEM_TYPE_CODE_APP) in ParseSmapsPathTypeBySuffix()
235 bool hasX = smapsInfo.permission().ToStdString().find("x") != std::string::npos; in ParseSmapsBlockDetail() local
236 auto type = ParseSmapsPathTypeByPrefix(hasX, path, hasAppName); in ParseSmapsBlockDetail()
240 type = ParseSmapsPathTypeBySuffix(hasX, path, hasAppName); in ParseSmapsBlockDetail()
244 if (hasX && path.find("/bin/") != std::string::npos) { in ParseSmapsBlockDetail()
247 …if ((!hasX) && (path.find("/bin/") != std::string::npos || path.find("[anon:.bss]") != std::string… in ParseSmapsBlockDetail()