Lines Matching refs:result
64 Result result = m_sessionPool.Allocate(pSessionItem); in Allocate() local
65 NN_UTIL_RETURN_IF_FAILED(result); in Allocate()
67 return result; in Allocate()
73 Result result = m_sessionPool.TryAllocate(pSessionItem); in TryAllocate() local
74 NN_UTIL_RETURN_IF_FAILED(result); in TryAllocate()
76 return result; in TryAllocate()
105 Result result; variable
133 result = AddNewSession();
134 if (result.IsFailure())
140 return result;
203 Result result; in Allocate() local
206 result = TryAllocate(pSessionItem); in Allocate()
207 if (result.IsSuccess() || result.GetDescription() != DESCRIPTION_REQUEST_SESSION_FULL) in Allocate()
213 return result; in Allocate()
229 Result result = AddNewSession(); in TryAllocate() local
230 if (result.IsFailure()) in TryAllocate()
233 return result; in TryAllocate()
298 Result result = srv::GetServiceHandle(pSessionItem, m_name, m_nameLength); in AddNewSession() local
299 if (result.IsFailure()) in AddNewSession()
301 return result; in AddNewSession()
304 result = InitializingSession(*pSessionItem); in AddNewSession()
305 if (result.IsFailure()) in AddNewSession()
308 return result; in AddNewSession()
372 Result result; variable
373 result = SessionPool::TryInitialize(pName, nameLen, m_pSessionItemArray, count, initial);
374 if (result.IsFailure())
379 return result;