• Home
  • Raw
  • Download

Lines Matching refs:retval

62     bool retval = false;  in Create()  local
64 retval = pluginService->CreatePluginSession(pluginConfig_, bufferConfig_, dataRepeater_); in Create()
66 retval ? "OK" : "FAIL"); in Create()
68 retval = pluginService->CreatePluginSession(pluginConfig_, dataRepeater_); in Create()
69 …HILOG_INFO(LOG_CORE, "CreatePluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK"… in Create()
71 CHECK_TRUE(retval, false, "call PluginService::CreatePluginSession failed!"); in Create()
74 return retval; in Create()
92 bool retval = pluginService->DestroyPluginSession(pluginConfig_.name()); in Destroy() local
93 …HILOG_INFO(LOG_CORE, "DestroyPluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK… in Destroy()
94 CHECK_TRUE(retval, false, "call PluginService::DestroyPluginSession failed!"); in Destroy()
127 bool retval = pluginService->StartPluginSession(pluginConfig_); in Start() local
128 …HILOG_INFO(LOG_CORE, "StartPluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK" … in Start()
129 CHECK_TRUE(retval, false, "call PluginService::StartPluginSession failed!"); in Start()
132 return retval; in Start()
144 bool retval = pluginService->RefreshPluginSession(pluginConfig_.name()); in Refresh() local
145 …HILOG_INFO(LOG_CORE, "RefreshPluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK… in Refresh()
146 CHECK_TRUE(retval, false, "call PluginService::RefreshPluginSession failed!"); in Refresh()
148 return retval; in Refresh()
165 bool retval = pluginService->StopPluginSession(pluginConfig_.name()); in StopLocked() local
166 …HILOG_INFO(LOG_CORE, "StopPluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK" :… in StopLocked()
167 CHECK_TRUE(retval, false, "call PluginService::StopPluginSession failed!"); in StopLocked()
170 return retval; in StopLocked()