Home
last modified time | relevance | path

Searched refs:QueryEventByLevel (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/base/security/security_guard/services/risk_classify/model_manager/src/
H A Ddb_operate.cpp57 int DbOperate::QueryEventByLevel(int32_t level, std::vector<SecEvent> &events) in QueryEventByLevel() function in OHOS::Security::SecurityGuard::DbOperate
59 return DatabaseManager::GetInstance().QueryEventByLevel(table_, level, events); in QueryEventByLevel()
/ohos5.0/base/security/security_guard/test/unittest/mock/data_collect/
H A Drisk_event_rdb_helper.h39 virtual int QueryEventByLevel(int32_t level, std::vector<SecEvent> &events) = 0;
66 MOCK_METHOD2(QueryEventByLevel, int(int32_t level, std::vector<SecEvent> &events));
/ohos5.0/base/security/security_guard/test/unittest/data_collect/database_manager/
H A Dsecurity_guard_database_manager_test.cpp222 EXPECT_CALL(RiskEventRdbHelper::GetInstance(), QueryEventByLevel).WillOnce(Return(SUCCESS));
225 int ret = DatabaseManager::GetInstance().QueryEventByLevel("audit_event", level, events);
227 ret = DatabaseManager::GetInstance().QueryEventByLevel("risk_event", level, events);
229 ret = DatabaseManager::GetInstance().QueryEventByLevel("", level, events);
H A Ddatabase_manager.h41 int QueryEventByLevel(std::string table, int32_t level, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/test/unittest/mock/database_manager/
H A Ddatabase_manager.h44 …virtual int QueryEventByLevel(std::string table, int32_t level, std::vector<SecEvent> &events) = 0;
75 …MOCK_METHOD3(QueryEventByLevel, int(std::string table, int32_t level, std::vector<SecEvent> &event…
/ohos5.0/base/security/security_guard/services/risk_classify/model_manager/include/
H A Di_db_operate.h34 virtual int QueryEventByLevel(int32_t level, std::vector<SecEvent> &events) = 0;
H A Ddb_operate.h34 int QueryEventByLevel(int32_t level, std::vector<SecEvent> &events) override;
/ohos5.0/base/security/security_guard/test/unittest/risk_classify/include/
H A Di_db_operate.h34 virtual int QueryEventByLevel(int32_t level, std::vector<SecEvent> &events) = 0;
/ohos5.0/base/security/security_guard/services/data_collect/store/src/
H A Ddatabase_manager.cpp135 int DatabaseManager::QueryEventByLevel(std::string table, int32_t level, std::vector<SecEvent> &eve… in QueryEventByLevel() function in OHOS::Security::SecurityGuard::DatabaseManager
138 return RiskEventRdbHelper::GetInstance().QueryEventByLevel(level, events); in QueryEventByLevel()
H A Ddatabase_helper.cpp163 int DatabaseHelper::QueryEventByLevel(int32_t level, std::vector<SecEvent> &events) in QueryEventByLevel() function in OHOS::Security::SecurityGuard::DatabaseHelper
/ohos5.0/base/security/security_guard/services/data_collect/store/include/
H A Ddatabase_helper.h38 virtual int QueryEventByLevel(int32_t level, std::vector<SecEvent> &events);
H A Ddatabase_manager.h40 int QueryEventByLevel(std::string table, int32_t level, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/test/unittest/data_collect/include/
H A Ddatabase_helper.h38 virtual int QueryEventByLevel(int32_t level, std::vector<SecEvent> &events);
H A Ddatabase_manager.h42 int QueryEventByLevel(std::string table, int32_t level, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/services/data_collect/
H A Dsg_collect_service.map38 OHOS::Security::SecurityGuard::DatabaseManager::QueryEventByLevel*;