Searched refs:GetCollectorPath (Results 1 - 5 of 5) sorted by relevance
/base/security/security_guard/test/unittest/security_collector/data_collection/src/ |
H A D | data_collection_test.cpp | 45 MOCK_METHOD2(GetCollectorPath, ErrorCode(int64_t eventId, std::string& path)); 89 EXPECT_CALL(myOb, GetCollectorPath).WillOnce(Return(SUCCESS)); in HWTEST_F() 100 EXPECT_CALL(myOb, GetCollectorPath).WillOnce(Return(SUCCESS)); in HWTEST_F() 110 EXPECT_CALL(myOb, GetCollectorPath).WillOnce(Return(FAILED)); in HWTEST_F() 163 EXPECT_EQ(myOb.GetCollectorPath(1, path), FAILED); in HWTEST_F() 171 EXPECT_EQ(myOb.GetCollectorPath(0x01C000003, path), SUCCESS); in HWTEST_F() 194 MOCK_METHOD2(GetCollectorPath, ErrorCode(int64_t eventId, std::string& path)); 209 EXPECT_CALL(myOb, GetCollectorPath).WillOnce(Return(SUCCESS)); in HWTEST_F() 220 EXPECT_CALL(myOb, GetCollectorPath).WillOnce(Return(SUCCESS)); in HWTEST_F() 230 EXPECT_CALL(myOb, GetCollectorPath) in HWTEST_F() [all...] |
/base/security/security_guard/services/security_collector/src/ |
H A D | data_collection.cpp | 49 ErrorCode ret = GetCollectorPath(eventId, collectorPath); in StartCollectors() 51 LOGE("GetCollectorPath failed, eventId is 0x%{public}" PRIx64, eventId); in StartCollectors() 77 ErrorCode ret = GetCollectorPath(eventId, collectorPath); in SecurityGuardSubscribeCollector() 79 LOGE("GetCollectorPath failed, eventId is 0x%{public}" PRIx64, eventId); in SecurityGuardSubscribeCollector() 84 LOGE("GetCollectorPath failed, eventId is 0x%{public}" PRIx64, eventId); in SecurityGuardSubscribeCollector() 178 ErrorCode DataCollection::GetCollectorPath(int64_t eventId, std::string& path) in GetCollectorPath() function in OHOS::Security::SecurityCollector::DataCollection 180 LOGI("Start GetCollectorPath"); in GetCollectorPath() 330 ErrorCode ret = GetCollectorPath(ruler.GetEventId(), collectorPath); in QuerySecurityEvent() 332 LOGE("GetCollectorPath failed, eventId is 0x%{public}" PRIx64, ruler.GetEventId()); in QuerySecurityEvent()
|
/base/security/security_guard/services/security_collector/include/ |
H A D | data_collection.h | 48 ErrorCode GetCollectorPath(int64_t eventId, std::string& path);
|
/base/security/security_guard/test/unittest/security_collector/data_collection/include/ |
H A D | data_collection.h | 49 virtual ErrorCode GetCollectorPath(int64_t eventId, std::string& path);
|
/base/security/security_guard/test/fuzztest/security_collector/securitycollector_fuzzer/ |
H A D | security_collector_fuzzer.cpp | 76 DataCollection::GetInstance().GetCollectorPath(eventId, string); in DataCollectionFuzzTest()
|
Completed in 3 milliseconds