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()
70 pluginConfig_.name().c_str(), retval ? "OK" : "FAIL"); in Create()
72 CHECK_TRUE(retval, false, "call PluginService::CreatePluginSession failed!"); in Create()
75 return retval; in Create()
93 bool retval = pluginService->DestroyPluginSession(pluginConfig_.name()); in Destroy() local
95 pluginConfig_.name().c_str(), retval ? "OK" : "FAIL"); in Destroy()
96 CHECK_TRUE(retval, false, "call PluginService::DestroyPluginSession failed!"); in Destroy()
129 bool retval = pluginService->StartPluginSession(pluginConfig_); in Start() local
130 …O(LOG_CORE, "StartPluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK" : "FAIL"); in Start()
131 CHECK_TRUE(retval, false, "call PluginService::StartPluginSession failed!"); in Start()
134 return retval; in Start()
146 bool retval = pluginService->RefreshPluginSession(pluginConfig_.name()); in Refresh() local
148 pluginConfig_.name().c_str(), retval ? "OK" : "FAIL"); in Refresh()
149 CHECK_TRUE(retval, false, "call PluginService::RefreshPluginSession failed!"); in Refresh()
151 return retval; in Refresh()
168 bool retval = pluginService->StopPluginSession(pluginConfig_.name()); in StopLocked() local
169 …FO(LOG_CORE, "StopPluginSession for %s %s!", pluginConfig_.name().c_str(), retval ? "OK" : "FAIL"); in StopLocked()
170 CHECK_TRUE(retval, false, "call PluginService::StopPluginSession failed!"); in StopLocked()
173 return retval; in StopLocked()