Home
last modified time | relevance | path

Searched refs:ERROR_NOT_APP (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/hiviewdfx/hiappevent/interfaces/native/inner_api/src/
H A Dapp_event_processor_mgr.cpp27 return ErrorCode::ERROR_NOT_APP; in AddProcessor()
42 return ErrorCode::ERROR_NOT_APP; in RemoveProcessor()
50 return ErrorCode::ERROR_NOT_APP; in RegisterProcessor()
58 return ErrorCode::ERROR_NOT_APP; in UnregisterProcessor()
69 return ErrorCode::ERROR_NOT_APP; in SetProcessorConfig()
77 return ErrorCode::ERROR_NOT_APP; in GetProcessorConfig()
85 return ErrorCode::ERROR_NOT_APP; in GetProcessorSeqs()
H A Dapp_event.cpp83 return ErrorCode::ERROR_NOT_APP; in Write()
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/ndk/src/
H A Dndk_app_event_processor_service.cpp66 return ErrorCode::ERROR_NOT_APP; in SetReportRoute()
83 return ErrorCode::ERROR_NOT_APP; in SetReportPolicy()
96 return ErrorCode::ERROR_NOT_APP; in SetReportEvent()
109 return ErrorCode::ERROR_NOT_APP; in SetCustomConfig()
125 return ErrorCode::ERROR_NOT_APP; in SetConfigId()
138 return ErrorCode::ERROR_NOT_APP; in SetReportUserId()
159 return ErrorCode::ERROR_NOT_APP; in SetReportUserProperty()
180 return ErrorCode::ERROR_NOT_APP; in AddProcessor()
214 return ErrorCode::ERROR_NOT_APP; in RemoveProcessor()
/ohos5.0/base/hiviewdfx/hiappevent/test/unittest/common/native/
H A Dhiappevent_native_test.cpp711 ASSERT_EQ(SetReportRoute(nullptr, nullptr, nullptr), ErrorCode::ERROR_NOT_APP);
712 ASSERT_EQ(SetReportPolicy(nullptr, 0, 0, false, false), ErrorCode::ERROR_NOT_APP);
713 ASSERT_EQ(SetReportEvent(nullptr, nullptr, nullptr, false), ErrorCode::ERROR_NOT_APP);
714 ASSERT_EQ(SetCustomConfig(nullptr, nullptr, nullptr), ErrorCode::ERROR_NOT_APP);
715 ASSERT_EQ(SetConfigId(nullptr, 0), ErrorCode::ERROR_NOT_APP);
716 ASSERT_EQ(SetReportUserId(nullptr, nullptr, 0), ErrorCode::ERROR_NOT_APP);
717 ASSERT_EQ(SetReportUserProperty(nullptr, nullptr, 0), ErrorCode::ERROR_NOT_APP);
718 ASSERT_EQ(AddProcessor(nullptr), ErrorCode::ERROR_NOT_APP);
720 ASSERT_EQ(RemoveProcessor(0), ErrorCode::ERROR_NOT_APP);
H A Dhiappevent_inner_api_test.cpp946 … ASSERT_EQ(AppEventProcessorMgr::RegisterProcessor(TEST_PROCESSOR_NAME, processor), ERROR_NOT_APP);
947 ASSERT_EQ(AppEventProcessorMgr::UnregisterProcessor(TEST_PROCESSOR_NAME), ERROR_NOT_APP);
950 …SERT_EQ(AppEventProcessorMgr::GetProcessorSeqs(TEST_PROCESSOR_NAME, processorSeqs), ERROR_NOT_APP);
956 ASSERT_EQ(AppEventProcessorMgr::SetProcessorConfig(processorSeq, config), ERROR_NOT_APP);
957 ASSERT_EQ(AppEventProcessorMgr::GetProcessorConfig(processorSeq, config), ERROR_NOT_APP);
959 ASSERT_EQ(AppEventProcessorMgr::AddProcessor(config), ERROR_NOT_APP);
960 ASSERT_EQ(AppEventProcessorMgr::RemoveProcessor(processorSeq), ERROR_NOT_APP);
H A Dhiappevent_app_event_test.cpp331 ASSERT_EQ(ret, ERROR_NOT_APP);
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
H A Dhiappevent_base.h52 const int ERROR_NOT_APP = -200; variable