Home
last modified time | relevance | path

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

/ohos5.0/base/security/security_guard/services/risk_classify/model_manager/src/
H A Ddb_operate.cpp52 int DbOperate::QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events) in QueryEventByEventType() function in OHOS::Security::SecurityGuard::DbOperate
54 return DatabaseManager::GetInstance().QueryEventByEventType(table_, eventType, events); in QueryEventByEventType()
/ohos5.0/base/security/security_guard/test/unittest/mock/data_collect/
H A Drisk_event_rdb_helper.h38 virtual int QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events) = 0;
65 MOCK_METHOD2(QueryEventByEventType, int(int32_t eventType, std::vector<SecEvent> &events));
/ohos5.0/base/security/security_guard/test/unittest/data_collect/database_manager/
H A Dsecurity_guard_database_manager_test.cpp209 EXPECT_CALL(RiskEventRdbHelper::GetInstance(), QueryEventByEventType).WillOnce(Return(SUCCESS));
212 … int ret = DatabaseManager::GetInstance().QueryEventByEventType("audit_event", eventType, events);
214 ret = DatabaseManager::GetInstance().QueryEventByEventType("risk_event", eventType, events);
216 ret = DatabaseManager::GetInstance().QueryEventByEventType("", eventType, events);
H A Ddatabase_manager.h40 int QueryEventByEventType(std::string table, int32_t eventType, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/test/unittest/mock/database_manager/
H A Ddatabase_manager.h43 …virtual int QueryEventByEventType(std::string table, int32_t eventType, std::vector<SecEvent> &eve…
74 …MOCK_METHOD3(QueryEventByEventType, int(std::string table, int32_t eventType, std::vector<SecEvent…
/ohos5.0/base/security/security_guard/services/risk_classify/model_manager/include/
H A Di_db_operate.h33 virtual int QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events) = 0;
H A Ddb_operate.h33 int QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events) override;
/ohos5.0/base/security/security_guard/test/unittest/risk_classify/include/
H A Di_db_operate.h33 virtual int QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events) = 0;
/ohos5.0/base/security/security_guard/services/data_collect/store/src/
H A Ddatabase_manager.cpp127 int DatabaseManager::QueryEventByEventType(std::string table, int32_t eventType, std::vector<SecEve… in QueryEventByEventType() function in OHOS::Security::SecurityGuard::DatabaseManager
130 return RiskEventRdbHelper::GetInstance().QueryEventByEventType(eventType, events); in QueryEventByEventType()
H A Ddatabase_helper.cpp156 int DatabaseHelper::QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events) in QueryEventByEventType() function in OHOS::Security::SecurityGuard::DatabaseHelper
/ohos5.0/base/security/security_guard/services/data_collect/store/include/
H A Ddatabase_helper.h37 virtual int QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events);
H A Ddatabase_manager.h39 int QueryEventByEventType(std::string table, int32_t eventType, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/test/unittest/data_collect/include/
H A Ddatabase_helper.h37 virtual int QueryEventByEventType(int32_t eventType, std::vector<SecEvent> &events);
H A Ddatabase_manager.h41 int QueryEventByEventType(std::string table, int32_t eventType, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/services/data_collect/
H A Dsg_collect_service.map37 OHOS::Security::SecurityGuard::DatabaseManager::QueryEventByEventType*;