Home
last modified time | relevance | path

Searched refs:GetCollectorType (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/security/security_guard/test/unittest/mock/data_collection/
H A Ddata_collection.h34 virtual ErrorCode GetCollectorType(int64_t eventId, int32_t& collectorType) = 0;
50 MOCK_METHOD2(GetCollectorType, ErrorCode(int64_t eventId, int32_t& collectorType));
/ohos5.0/base/security/security_guard/services/security_collector/include/
H A Ddata_collection.h39 ErrorCode GetCollectorType(int64_t eventId, int32_t& collectorType);
/ohos5.0/base/security/security_guard/test/unittest/security_collector/src/
H A Dsecurity_collector_test.cpp227 …EXPECT_CALL(DataCollection::GetInstance(), GetCollectorType).WillOnce(Return(SecurityCollector::Er…
238 …EXPECT_CALL(DataCollection::GetInstance(), GetCollectorType).WillOnce([] (int64_t eventId, int32_t… in __anond0c616bb0302()
252 …EXPECT_CALL(DataCollection::GetInstance(), GetCollectorType).WillOnce([] (int64_t eventId, int32_t… in __anond0c616bb0402()
270 …EXPECT_CALL(DataCollection::GetInstance(), GetCollectorType).WillOnce([] (int64_t eventId, int32_t… in __anond0c616bb0502()
292 …EXPECT_CALL(DataCollection::GetInstance(), GetCollectorType).WillOnce([] (int64_t eventId, int32_t… in __anond0c616bb0702()
/ohos5.0/base/security/security_guard/services/security_collector/src/
H A Ddata_collection.cpp216 ErrorCode DataCollection::GetCollectorType(int64_t eventId, int32_t& collectorType) in GetCollectorType() function in OHOS::Security::SecurityCollector::DataCollection
H A Dsecurity_collector_manager_service.cpp161 if (DataCollection::GetInstance().GetCollectorType(event.eventId, collectorType) != SUCCESS) { in CollectorStart()