Home
last modified time | relevance | path

Searched refs:err (Results 1 – 10 of 10) sorted by relevance

/CTR-SDK-4.2.5/include/nn/err/CTR/
Derr_Api.h24 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())
Derr_Exception.h22 namespace err {
/CTR-SDK-4.2.5/include/nn/
Derr.h35 namespace err {
36 using namespace nn::err::CTR;
/CTR-SDK-4.2.5/sources/libraries/rdt/CTR/
Drdt_Transceiver.cpp44 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/
Dcx_Uncompression.cpp1086 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()
Dcx_Compression.cpp1320 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()
Dcx_StreamingUncompression.cpp1541 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/
Dsocket_Privileged.h65 nn::Result GetConfigError( s32* err );
Dsocket_Common.h218 Result GetConfigError(s32* err);
Dsocket_Admin.autogen.h158 typedef void (* ConfigErrorCallback )(InstancePtr insP, s32 err);