Lines Matching refs:result
87 Result result = m_ppDispatchers[index]->Launch(); in WaitAny() local
88 if (result.IsFailure()) in WaitAny()
91 nn::dbg::PrintResult(result); in WaitAny()
138 Result result; variable
140 result = port.TryAccept(&m_session, false);
141 NN_UTIL_RETURN_IF_FAILED(result);
143 … result = m_thread.TryStart<Worker*, Worker*, StackT>(SessionThread, this, m_stack, priority);
144 if (result.IsFailure())
147 return result;
191 Result result = pSessionLoopFunction(&resultIndex, pImpl, handles, 1, 0); in SessionThreadImpl() local
192 … if (result.IsFailure() && result.GetDescription() != nn::os::DESCRIPTION_SESSION_CLOSED) in SessionThreadImpl()
194 NN_UTIL_PANIC_IF_FAILED(result); in SessionThreadImpl()
227 Result result; in m_cs() local
233 result = nn::srv::RegisterService(&hPort, pServiceName); in m_cs()
234 NN_UTIL_PANIC_IF_FAILED(result); in m_cs()
249 Result result; in Finalize() local
253 result = nn::srv::UnregisterService(m_pServiceName); in Finalize()
254 NN_UTIL_PANIC_IF_FAILED(result); in Finalize()
271 Result result = pWorker->TryInitialize(*this, m_priority); in Launch() local
272 if (result.IsFailure()) in Launch()
275 return result; in Launch()