Home
last modified time | relevance | path

Searched refs:eventList (Results 1 – 13 of 13) sorted by relevance

/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/
Dhisysevent_manager_c.cpp40 std::vector<std::string> eventList; in HiSysEventQuery() local
42 eventList.emplace_back(rules[i].eventList[j]); in HiSysEventQuery()
45 queryRules.emplace_back(rules[i].domain, eventList, WHOLE_WORD, 0, cond); in HiSysEventQuery()
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/include/
Dhisysevent_rules.h80 QueryRule(const std::string& domain, const std::vector<std::string>& eventList,
82 …: domain(domain), eventList(eventList), ruleType(ruleType), eventType(eventType), condition(cond) … in domain()
91 return eventList; in GetEventList()
108 std::vector<std::string> eventList; variable
Dhisysevent_manager_c.h41 char eventList[MAX_NUMBER_OF_EVENT_LIST][MAX_LENGTH_OF_EVENT_NAME]; member
/base/hiviewdfx/hisysevent/adapter/native/idl/src/
Dsys_event_query_rule.cpp34 if (!parcel.WriteStringVector(eventList)) { in Marshalling()
58 if (!parcel.ReadStringVector(&(ret->eventList))) { in Unmarshalling()
Dhisysevent_delegate.cpp127 auto eventList = rule.GetEventList(); in ConvertQueryRule() local
128 for_each(eventList.cbegin(), eventList.cend(), [&](const std::string &event) { in ConvertQueryRule()
/base/hiviewdfx/hisysevent/adapter/native/idl/include/
Dsys_event_query_rule.h34 … : domain(domain), eventList(events), ruleType(ruleType), eventType(eventType), condition(cond) {}; in domain()
41 std::vector<std::string> eventList; variable
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/include/
Dsys_event_query_rule.h31 … : domain(domain), eventList(events), ruleType(ruleType), eventType(eventType), condition(cond) {}; in domain()
38 std::vector<std::string> eventList; variable
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/
Dsys_event_query_rule.cpp34 if (!parcel.WriteStringVector(eventList)) { in Marshalling()
58 if (!parcel.ReadStringVector(&(ret->eventList))) { in Unmarshalling()
Drunning_status_log_util.cpp35 if (!rule.eventList.empty()) { in LogTooManyQueryRules()
37 for (auto& eventName : rule.eventList) { in LogTooManyQueryRules()
Dsys_event_service_ohos.cpp351 return any_of(rule.eventList.cbegin(), rule.eventList.cend(), in BuildEventQuery()
/base/hiviewdfx/hisysevent/test/moduletest/common/
Dhisysevent_manager_c_test.cpp58 (void)StringUtil::CopyCString(rule.eventList[0], TEST_NAME, MAX_LEN_OF_NAME); in InitQueryRule()
66 (void)StringUtil::CopyCString(rule.eventList[0], TEST_NAME, MAX_LEN_OF_NAME); in InitQueryRuleWithCondition()
505 (void)StringUtil::CopyCString(rule1.eventList[0], TEST_NAME, MAX_LEN_OF_NAME);
506 (void)StringUtil::CopyCString(rule1.eventList[1], "PLUGIN_UNLOAD", MAX_LEN_OF_NAME);
510 (void)StringUtil::CopyCString(rule2.eventList[0], "APP_USAGE", MAX_LEN_OF_NAME);
511 (void)StringUtil::CopyCString(rule2.eventList[1], "SYS_USAGE", MAX_LEN_OF_NAME);
576 (void)StringUtil::CopyCString(rule1.eventList[0], TEST_NAME, MAX_LEN_OF_NAME);
577 (void)StringUtil::CopyCString(rule1.eventList[1], "PLUGIN_UNLOAD", MAX_LEN_OF_NAME);
582 (void)StringUtil::CopyCString(rule2.eventList[0], "APP_USAGE", MAX_LEN_OF_NAME);
583 (void)StringUtil::CopyCString(rule2.eventList[1], "SYS_USAGE", MAX_LEN_OF_NAME);
[all …]
Dhisysevent_adapter_native_test.cpp361 queryRulePtr->eventList.size() == 2 && queryRulePtr->eventList[0] == "EVENT_NAME1");
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/test/unittest/common/
Dsys_event_service_ohos_test.cpp552 … eventQueryRulePtr->eventList.size() == 2 && eventQueryRulePtr->eventList[0] == "EVENT_NAME1");