Home
last modified time | relevance | path

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

/developtools/profiler/device/services/ipc/test/unittest/
Dclient_connection_test.cpp41 std::string serviceName="test_service_name"; variable
45 (const int8_t *)serviceName.c_str(), sizeof(struct RawPointToService)), 1);
47 (const int8_t *)serviceName.c_str(), sizeof(struct RawPointToService)), -1);
/developtools/profiler/hidebug/frameworks/native/
Dhidebug_base.c228 const char *serviceName = FilterServiceName(inputName); in InitEnvironmentParam() local
229 if (*serviceName == '\0') { in InitEnvironmentParam()
234 InitHicheckerParamWrapper(serviceName); in InitEnvironmentParam()
239 err = strcat_s(onceName, sizeof(onceName), serviceName); in InitEnvironmentParam()
244 err = strcat_s(persistName, sizeof(persistName), serviceName); in InitEnvironmentParam()
253 SetupMallocHookAtStartup(serviceName); in InitEnvironmentParam()
/developtools/profiler/hidebug/interfaces/native/innerkits/include/
Dhidebug_base.h34 bool InitEnvironmentParam(const char *serviceName);
/developtools/profiler/device/services/ipc/include/
Dipc_generator_impl.h55 bool AddService(std::string serviceName);
56 bool AddServiceMethod(std::string serviceName,
/developtools/profiler/device/services/ipc/src/
Dipc_generator_impl.cpp174 bool IpcGeneratorImpl::AddService(std::string serviceName) in AddService() argument
177 if (serviceList_[i].serviceName_ == serviceName) { in AddService()
181 serviceList_[serviceCount_].serviceName_ = serviceName; in AddService()
186 bool IpcGeneratorImpl::AddServiceMethod(std::string serviceName, in AddServiceMethod() argument
192 if (serviceList_[i].serviceName_ == serviceName) { in AddServiceMethod()