Home
last modified time | relevance | path

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

/ohos5.0/base/security/security_guard/services/risk_classify/model_manager/src/
H A Ddb_operate.cpp62 int DbOperate::QueryEventByOwner(std::string owner, std::vector<SecEvent> &events) in QueryEventByOwner() function in OHOS::Security::SecurityGuard::DbOperate
64 return DatabaseManager::GetInstance().QueryEventByOwner(table_, owner, events); in QueryEventByOwner()
/ohos5.0/base/security/security_guard/test/unittest/mock/data_collect/
H A Drisk_event_rdb_helper.h40 virtual int QueryEventByOwner(std::string owner, std::vector<SecEvent> &events) = 0;
67 MOCK_METHOD2(QueryEventByOwner, int(std::string owner, std::vector<SecEvent> &events));
/ohos5.0/base/security/security_guard/test/unittest/data_collect/database_manager/
H A Dsecurity_guard_database_manager_test.cpp235 EXPECT_CALL(RiskEventRdbHelper::GetInstance(), QueryEventByOwner).WillOnce(Return(SUCCESS));
238 int ret = DatabaseManager::GetInstance().QueryEventByOwner("audit_event", owner, events);
240 ret = DatabaseManager::GetInstance().QueryEventByOwner("risk_event", owner, events);
242 ret = DatabaseManager::GetInstance().QueryEventByOwner("", owner, events);
H A Ddatabase_manager.h42 int QueryEventByOwner(std::string table, std::string owner, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/test/unittest/mock/database_manager/
H A Ddatabase_manager.h45 …virtual int QueryEventByOwner(std::string table, std::string owner, std::vector<SecEvent> &events)…
76 …MOCK_METHOD3(QueryEventByOwner, int(std::string table, std::string owner, std::vector<SecEvent> &e…
/ohos5.0/base/security/security_guard/services/risk_classify/model_manager/include/
H A Di_db_operate.h35 virtual int QueryEventByOwner(std::string owner, std::vector<SecEvent> &events) = 0;
H A Ddb_operate.h35 int QueryEventByOwner(std::string owner, std::vector<SecEvent> &events) override;
/ohos5.0/base/security/security_guard/test/unittest/risk_classify/include/
H A Di_db_operate.h35 virtual int QueryEventByOwner(std::string owner, std::vector<SecEvent> &events) = 0;
/ohos5.0/base/security/security_guard/services/data_collect/store/src/
H A Ddatabase_manager.cpp143 int DatabaseManager::QueryEventByOwner(std::string table, std::string owner, std::vector<SecEvent> … in QueryEventByOwner() function in OHOS::Security::SecurityGuard::DatabaseManager
146 return RiskEventRdbHelper::GetInstance().QueryEventByOwner(owner, events); in QueryEventByOwner()
H A Ddatabase_helper.cpp170 int DatabaseHelper::QueryEventByOwner(std::string owner, std::vector<SecEvent> &events) in QueryEventByOwner() function in OHOS::Security::SecurityGuard::DatabaseHelper
/ohos5.0/base/security/security_guard/services/data_collect/store/include/
H A Ddatabase_helper.h39 virtual int QueryEventByOwner(std::string owner, std::vector<SecEvent> &events);
H A Ddatabase_manager.h41 int QueryEventByOwner(std::string table, std::string owner, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/test/unittest/data_collect/include/
H A Ddatabase_helper.h39 virtual int QueryEventByOwner(std::string owner, std::vector<SecEvent> &events);
H A Ddatabase_manager.h43 int QueryEventByOwner(std::string table, std::string owner, std::vector<SecEvent> &events);
/ohos5.0/base/security/security_guard/services/data_collect/
H A Dsg_collect_service.map39 OHOS::Security::SecurityGuard::DatabaseManager::QueryEventByOwner*;