Searched refs:err (Results 1 – 10 of 10) sorted by relevance
| /CTR-SDK-4.2.5/include/nn/err/CTR/ |
| D | err_Api.h | 24 namespace err { 65 ::nn::err::CTR::detail::CallIf \ 66 < ::nn::err::CTR::detail::test, \ 67 ::nn::err::CTR::f >(result, __current_pc()) 70 ::nn::err::CTR::detail::CallIf \ 71 < ::nn::err::CTR::detail::test, \ 72 ::nn::err::CTR::f >(result, NN_FILE_NAME, __LINE__, __current_pc())
|
| D | err_Exception.h | 22 namespace err {
|
| /CTR-SDK-4.2.5/include/nn/ |
| D | err.h | 35 namespace err { 36 using namespace nn::err::CTR;
|
| /CTR-SDK-4.2.5/sources/libraries/rdt/CTR/ |
| D | rdt_Transceiver.cpp | 44 int err = WSAGetLastError(); in SendRawData() local 45 VERBOSE("::send() returned an error. (%d)\n", err); in SendRawData() 46 if(err==WSAEWOULDBLOCK) in SendRawData() 52 else if(err==WSAECONNRESET) in SendRawData() 58 else if(err==WSAECONNABORTED) in SendRawData() 66 PANIC("Stop. err = %d\n", err); in SendRawData() 87 int err = WSAGetLastError(); in RecvRawData() local 88 switch(err) in RecvRawData() 100 LOG("::recv function returned an unknown error. (%d)\n", err); in RecvRawData()
|
| /CTR-SDK-4.2.5/sources/libraries/cx/ |
| D | cx_Uncompression.cpp | 1086 int err; in UncompressDeflateCommon() local 1097 err = inflateInit2(&s, wbits); in UncompressDeflateCommon() 1098 if (err != Z_OK) in UncompressDeflateCommon() 1100 return detail::ConvertZlibReturnCode(err); in UncompressDeflateCommon() 1103 err = nncxZlib_inflate(&s, Z_FINISH); in UncompressDeflateCommon() 1104 if (err != Z_STREAM_END) in UncompressDeflateCommon() 1107 return detail::ConvertZlibReturnCode(err); in UncompressDeflateCommon() 1112 err = nncxZlib_inflateEnd(&s); in UncompressDeflateCommon() 1113 if (err != Z_OK) in UncompressDeflateCommon() 1115 return detail::ConvertZlibReturnCode(err); in UncompressDeflateCommon()
|
| D | cx_Compression.cpp | 1320 int err; in CompressDeflateCommon() local 1331 err = deflateInit2(&s, in CompressDeflateCommon() 1337 if (err != Z_OK) in CompressDeflateCommon() 1339 return detail::ConvertZlibReturnCode(err); in CompressDeflateCommon() 1342 err = nncxZlib_deflate(&s, Z_FINISH); in CompressDeflateCommon() 1343 if (err != Z_STREAM_END) in CompressDeflateCommon() 1346 return detail::ConvertZlibReturnCode(err); in CompressDeflateCommon() 1351 err = nncxZlib_deflateEnd(&s); in CompressDeflateCommon() 1352 if (err != Z_OK) in CompressDeflateCommon() 1354 return detail::ConvertZlibReturnCode(err); in CompressDeflateCommon()
|
| D | cx_StreamingUncompression.cpp | 1541 int err NN_IS_UNUSED_VAR; in InitUncompressContextDeflateCommon() 1552 err = inflateInit2(&s, wbits); in InitUncompressContextDeflateCommon() 1553 NN_TASSERT_( err == Z_OK ); in InitUncompressContextDeflateCommon() 1562 int err; in ReadUncompressDeflateCommon() local 1568 err = nncxZlib_inflate(&s, Z_NO_FLUSH); in ReadUncompressDeflateCommon() 1570 if (err != Z_OK) in ReadUncompressDeflateCommon() 1572 if( err == Z_STREAM_END ) in ReadUncompressDeflateCommon() 1574 err = nncxZlib_inflate(&s, Z_FINISH); in ReadUncompressDeflateCommon() 1579 s32 cxErr = detail::ConvertZlibReturnCode(err); in ReadUncompressDeflateCommon()
|
| /CTR-SDK-4.2.5/include/nn/socket/ |
| D | socket_Privileged.h | 65 nn::Result GetConfigError( s32* err );
|
| D | socket_Common.h | 218 Result GetConfigError(s32* err);
|
| D | socket_Admin.autogen.h | 158 typedef void (* ConfigErrorCallback )(InstancePtr insP, s32 err);
|