Home
last modified time | relevance | path

Searched refs:result (Results 1 – 25 of 30) sorted by relevance

12

/CafeSDK-2.12.13-1/system/include/nn/util/
Dutil_Result.h28 #define NN_UTIL_RETURN_IF_FAILED_BASE(result, s1, s2, s3, s4, s5) \ argument
31 ::nn::Result nn_util_return_if_failure_result = (result); \
41 #define NN_UTIL_RETURN_IF_FAILED_BASE(result, s1, s2, s3, s4, s5) \ argument
44 ::nn::Result nn_util_return_if_failure_result = (result); \
53 #define NN_UTIL_RETURN_IF_FAILED(result) NN_UTIL_RETURN_IF_FAILED_BASE(result,,,,,) argument
55 #define NN_UTIL_RETURN_IF_FAILED_0(result) NN_UTIL_RETURN_IF_FAILED_BASE(result,,,,,) argument
56 #define NN_UTIL_RETURN_IF_FAILED_1(result, c1) NN_UTIL_RETURN_IF_FAILED_BASE(result,c1,,,,) argument
57 #define NN_UTIL_RETURN_IF_FAILED_2(result, c1, c2) NN_UTIL_RETURN_IF_FAILED_BASE(result,c1,c2,,,) argument
58 #define NN_UTIL_RETURN_IF_FAILED_3(result, c1, c2, c3) NN_UTIL_RETURN_IF_FAILED_BASE(result,c1,c2,c… argument
59 #define NN_UTIL_RETURN_IF_FAILED_4(result, c1, c2, c3, c4) NN_UTIL_RETURN_IF_FAILED_BASE(result,c1,… argument
[all …]
/CafeSDK-2.12.13-1/system/src/lib/demo/
DdemoFS.c62 FSStatus result = FSAddClient(&_DEMOFSClient, FS_RET_ALL_ERROR); in _DemoInitFS() local
63 if (result != FS_STATUS_OK) in _DemoInitFS()
65 DEMOPrintf("DEMOFS Error: FSAddClient() returned: %d!\n", result); in _DemoInitFS()
95 FSStatus result = FS_STATUS_OK; in DEMOFSOpenFileMode() local
104 result = _DemoInitFS(); in DEMOFSOpenFileMode()
105 if (DEMO_FS_RESULT_OK != result) in DEMOFSOpenFileMode()
126 result = FSOpenFile(&_DEMOFSClient, pCmd, openPath, mode, info, FS_RET_ALL_ERROR); in DEMOFSOpenFileMode()
130 if (FS_STATUS_OK != result) in DEMOFSOpenFileMode()
132 DEMOPrintf("DEMOFS Error: FSOpenFile(%s) returned %d!\n", path, result); in DEMOFSOpenFileMode()
144 FSStatus result; in DEMOFSGetLength() local
[all …]
DdemoTest.c39 int result; member
129 DEMOTestData.result = 0; in DEMOTestInit()
319 DEMOTestData.result |= (int) !testPassed; in DEMOTestCompare()
346 return DEMOTestData.result; in DEMOTestResult()
404 DEMOTestData.result = 1; in DEMOTestCheckPerfEnd()
414 DEMOTestData.result = 1; in DEMOTestCheckPerfEnd()
DdemoFWB.c58 s32 result = DEMOFWBFlush(fwbFileInfo); in DEMOFWBCloseFile() local
66 if(result != DEMO_FS_RESULT_OK) in DEMOFWBCloseFile()
68 return result; in DEMOFWBCloseFile()
/CafeSDK-2.12.13-1/system/src/lib/libsys/
Dind_gmtm.c48 struct tm *gmtime_r(const time_t *timer, struct tm *result) { in gmtime_r() argument
63 result->tm_isdst = 0; in gmtime_r()
74 result->tm_hour = s / SECS_IN_HOUR; in gmtime_r()
76 result->tm_min = s / SECS_IN_MIN; in gmtime_r()
77 result->tm_sec = s % SECS_IN_MIN; in gmtime_r()
84 result->tm_wday = s; in gmtime_r()
154 result->tm_year = y; in gmtime_r()
155 result->tm_yday = t; in gmtime_r()
169 result->tm_mon = i; in gmtime_r()
170 result->tm_mday = t; /* we incremented the mday above */ in gmtime_r()
[all …]
Dind_tmzn.c47 extern struct tm *gmtime_r(const time_t *timer, struct tm *result);
49 struct tm *localtime_r(const time_t *timer, struct tm *result) in localtime_r() argument
84 if ((temp = gmtime_r(&time_v, result))==NULL) in localtime_r()
Dind_exit.c99 extern void __PPCExit(int result);
Dind_call.ppc79 result (as we hit the beq after executing a blr in ind_dots.ppc)
/CafeSDK-2.12.13-1/system/include/nn/
DResult.h294 Result(nnResult result) : m_Code(result.value) {} in Result() argument
477 static bool Includes(Result result)
479 …return result.GetModule() == TModule && (TDescriptionStart <= result.GetDescription() && result.Ge…
501 …static bool Includes(Result result) { return Result1::Includes(result) || Result2::Includes(result
522 #define NN_RESULT_THROW_IF_FAILED(result) \
525 ::nn::Result _nn_result_throw_if_failed_tmp_ = (result); \
545 #define NN_RESULT_THROW(result) return (result)
547 #define NN_RESULT_THROW_UNLESS(cond, result) \
548 if (cond) {} else NN_RESULT_THROW(result)
550 #define NN_RESULT_TRY(result) { ::nn::Result _nn_result_try_tmp_ = (result); if (0) {}
DResult.legacy.h24 static bool Includes(Result result) { return result.GetValue() == Value; } in Includes()
41 bool Includes(Result result) { return result == *this; } in Includes()
57 bool Includes(Result result) { return result == *this; } in Includes()
72 bool Includes(Result result) { return result == *this; } in Includes()
/CafeSDK-2.12.13-1/system/include/nn/ac/
Dac_Api.h369 NN_EXTERN_C BOOL ACIsSuccess(ACResult result);
375 NN_EXTERN_C BOOL ACIsFailure(ACResult result);
381 NN_EXTERN_C BOOL ACIsRetryRequired(ACResult result);
/CafeSDK-2.12.13-1/system/include/nn/boss/
Dboss_Lib.h102 u32 GetErrorCode( nn::Result result );
Dboss_Types.h501 …u16 result; //!< Result value. The value type is defined in <tt>@ref TaskResultDefinition</tt>. member
/CafeSDK-2.12.13-1/system/include/nn/ec/
Dec_Api.h436 s32 GetErrorCode(const nn::Result& result);
Dec_Types.h190 typedef void (*DownloadCallback)(DownloadType downloadType, nn::Result result, const void* pObject,…
/CafeSDK-2.12.13-1/system/include/cafe/pads/wpad/
Dwpad.h533 typedef void ( *WPADExtensionCallback )( s32 chan, s32 result );
536 typedef void ( *WPADCallback )( s32 chan, s32 result );
539 typedef void ( *WPADSyncDeviceCallback )( s32 result, s32 num );
540 typedef void ( *WPADClearDeviceCallback )( s32 result );
541 typedef void ( *WPADFlushCallback )( u32 result );
/CafeSDK-2.12.13-1/system/include/nn/act/
Dact_Api.h697 u32 GetErrorCode( const Result& result );
/CafeSDK-2.12.13-1/system/include/nn/nfp/
Dnfp_Api.h457 u32 GetErrorCode( const nn::Result& result );
Dnfp_Types.h257 …s32 result; //!< The result of the process. An <tt>@ref AmiiboSettings… member
/CafeSDK-2.12.13-1/system/include/cafe/gx2/
Dgx2Perf_deprecated.h455 GX2PerfMetric metric, u64* result);
469 GX2PerfMetric metric, f32* result);
/CafeSDK-2.12.13-1/system/include/cafe/base/
DPPCArch.h134 void __PPCExit ( int result );
/CafeSDK-2.12.13-1/system/include/nn/fp/
Dfp_Types.h232 typedef void (*AsyncCallback)(nn::Result result, void* pContext);
Dfp_Api.h762 u32 ResultToErrorCode(nn::Result result);
/CafeSDK-2.12.13-1/system/include/cafe/curl/
Dmulti.h90 CURLcode result; /* return code for transfer */ member
/CafeSDK-2.12.13-1/system/include/nn/olv/
Dolv_Api.h722 u32 GetErrorCode(const nn::Result& result);

12