Home
last modified time | relevance | path

Searched refs:tagGroups (Results 1 – 4 of 4) sorted by relevance

/base/hiviewdfx/hitrace/test/unittest/hitrace_dump/
Dhitrace_dump_test.cpp123 const std::vector<std::string> tagGroups = {"scene_performance"}; variable
124 ASSERT_TRUE(OpenTrace(tagGroups) == TraceErrorCode::SUCCESS);
160 const std::vector<std::string> tagGroups = {"scene_performance"}; variable
161 ASSERT_TRUE(OpenTrace(tagGroups) == TraceErrorCode::SUCCESS);
236 const std::vector<std::string> tagGroups = {"scene_performance"}; variable
237 ASSERT_TRUE(OpenTrace(tagGroups) == TraceErrorCode::TRACE_IS_OCCUPIED);
264 const std::vector<std::string> tagGroups = {"scene_performance"}; variable
265 ASSERT_TRUE(OpenTrace(tagGroups) == TraceErrorCode::SUCCESS);
300 const std::vector<std::string> tagGroups = {"scene_performance"}; variable
301 ASSERT_TRUE(OpenTrace(tagGroups) == TraceErrorCode::SUCCESS);
[all …]
/base/hiviewdfx/hiview/service/unified_collection/
Dxcollect_service.cpp45 const std::vector<std::string> tagGroups = {"scene_performance"}; in TraceService() local
46 if (OpenTrace(tagGroups) != TraceErrorCode::SUCCESS) { in TraceService()
242 const std::vector<std::string> tagGroups = {"scene_performance"}; in CollectHiTrace() local
246 if (OpenTrace(tagGroups) != TraceErrorCode::SUCCESS) { in CollectHiTrace()
/base/hiviewdfx/hitrace/interfaces/native/innerkits/src/
Dhitrace_dump.cpp59 std::vector<std::string> tagGroups; member
263 cJSON* tagGroups = cJSON_GetObjectItem(root, "tag_groups"); in ParseTagInfo() local
264 if (tagGroups == nullptr) { in ParseTagInfo()
269 if (!ParseTagGroups(tagGroups, tagGroupTable)) { in ParseTagInfo()
289 bool CheckTagGroup(const std::vector<std::string> &tagGroups, in CheckTagGroup() argument
292 for (auto groupName : tagGroups) { in CheckTagGroup()
377 if (traceParams.tagGroups.size() > 0) { in SetAllTags()
388 for (std::string groupName : traceParams.tagGroups) { in SetAllTags()
995 TraceErrorCode HandleServiceTraceOpen(const std::vector<std::string> &tagGroups, in HandleServiceTraceOpen() argument
1000 serviceTraceParams.tagGroups = tagGroups; in HandleServiceTraceOpen()
[all …]
/base/hiviewdfx/hitrace/interfaces/native/innerkits/include/
Dhitrace_dump.h61 TraceErrorCode OpenTrace(const std::vector<std::string> &tagGroups);