Lines Matching refs:result

33 …void nnResultFailureHandlerImpl(nn::Result result, const char* filename, int lineno, const char* f…  in nnResultFailureHandlerImpl()  argument
37 nn::dbg::detail::Printf("RESULT FAILURE [%x]: ", result.GetPrintableBits()); in nnResultFailureHandlerImpl()
40 PrintResult(result); in nnResultFailureHandlerImpl()
44 …void nnResultTFailureHandlerImpl(nn::Result result, const char* filename, int lineno, const char* … in nnResultTFailureHandlerImpl() argument
48 nn::dbg::detail::TPrintf("RESULT FAILURE [%x]: ", result.GetPrintableBits()); in nnResultTFailureHandlerImpl()
51 TPrintResult(result); in nnResultTFailureHandlerImpl()
66 …void nnResultPanicHandlerImpl(nn::Result result, const char* filename, int lineno, const char* fmt… in nnResultPanicHandlerImpl() argument
75 NN_LOG("RESULT [%x]:", result.GetPrintableBits()); in nnResultPanicHandlerImpl()
80 PrintResult(result); in nnResultPanicHandlerImpl()
84 …void nnResultTPanicHandlerImpl(nn::Result result, const char* filename, int lineno, const char* fm… in nnResultTPanicHandlerImpl() argument
93 NN_TLOG_("RESULT [%x]:", result.GetPrintableBits()); in nnResultTPanicHandlerImpl()
98 TPrintResult(result); in nnResultTPanicHandlerImpl()
107 NN_WEAK_SYMBOL int nnResultFailureHandler(nnResult result, const char* filename, int lineno, const … in nnResultFailureHandler() argument
111 nnResultFailureHandlerImpl(result, filename, lineno, fmt, vlist); in nnResultFailureHandler()
116 NN_WEAK_SYMBOL int nnResultTFailureHandler(nnResult result, const char* filename, int lineno, const… in nnResultTFailureHandler() argument
120 nnResultTFailureHandlerImpl(result, filename, lineno, fmt, vlist); in nnResultTFailureHandler()
126 NN_WEAK_SYMBOL int nnResultPanicHandler(nnResult result, const char* filename, int lineno, const ch… in nnResultPanicHandler() argument
130 nnResultPanicHandlerImpl(result, filename, lineno, fmt, vlist); in nnResultPanicHandler()
135 NN_WEAK_SYMBOL int nnResultTPanicHandler(nnResult result, const char* filename, int lineno, const c… in nnResultTPanicHandler() argument
139 nnResultTPanicHandlerImpl(result, filename, lineno, fmt, vlist); in nnResultTPanicHandler()
146 nn::Result result = nn::MakePermanentResult( in nnMakeInvalidResult() local
150 return static_cast<nnResult>(result); in nnMakeInvalidResult()