Home
last modified time | relevance | path

Searched refs:errCode (Results 1 – 25 of 37) sorted by relevance

12

/third_party/mesa3d/src/egl/main/
Deglcurrent.c223 _eglInternalError(EGLint errCode, const char *msg) in _eglInternalError() argument
230 t->LastError = errCode; in _eglInternalError()
232 if (errCode != EGL_SUCCESS) { in _eglInternalError()
235 switch (errCode) { in _eglInternalError()
278 _eglLog(_EGL_DEBUG, "EGL user error 0x%x (%s) in %s\n", errCode, s, msg); in _eglInternalError()
285 _eglError(EGLint errCode, const char *msg) in _eglError() argument
287 if (errCode != EGL_SUCCESS) { in _eglError()
289 if (errCode == EGL_BAD_ALLOC) in _eglError()
294 _eglDebugReport(errCode, NULL, type, msg); in _eglError()
296 _eglInternalError(errCode, msg); in _eglError()
Deglcurrent.h100 _eglError(EGLint errCode, const char *msg);
/third_party/icu/icu4c/source/common/
Dumutex.h139 inline void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(UErrorCode &), UErrorCode &errCode)…
140 if (U_FAILURE(errCode)) {
145 (*fp)(errCode);
146 uio.fErrCode = errCode;
151 errCode = uio.fErrCode;
170 …_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
171 if (U_FAILURE(errCode)) {
176 (*fp)(context, errCode);
177 uio.fErrCode = errCode;
182 errCode = uio.fErrCode;
Ducnv_bld.cpp1103 static void U_CALLCONV initAvailableConvertersList(UErrorCode &errCode) { in initAvailableConvertersList() argument
1108 UEnumeration *allConvEnum = ucnv_openAllNames(&errCode); in initAvailableConvertersList()
1109 int32_t allConverterCount = uenum_count(allConvEnum, &errCode); in initAvailableConvertersList()
1110 if (U_FAILURE(errCode)) { in initAvailableConvertersList()
1117 errCode = U_MEMORY_ALLOCATION_ERROR; in initAvailableConvertersList()
/third_party/node/deps/icu-small/source/common/
Dumutex.h139 inline void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(UErrorCode &), UErrorCode &errCode)…
140 if (U_FAILURE(errCode)) {
145 (*fp)(errCode);
146 uio.fErrCode = errCode;
151 errCode = uio.fErrCode;
170 …_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
171 if (U_FAILURE(errCode)) {
176 (*fp)(context, errCode);
177 uio.fErrCode = errCode;
182 errCode = uio.fErrCode;
Ducnv_bld.cpp1103 static void U_CALLCONV initAvailableConvertersList(UErrorCode &errCode) { in initAvailableConvertersList() argument
1108 UEnumeration *allConvEnum = ucnv_openAllNames(&errCode); in initAvailableConvertersList()
1109 int32_t allConverterCount = uenum_count(allConvEnum, &errCode); in initAvailableConvertersList()
1110 if (U_FAILURE(errCode)) { in initAvailableConvertersList()
1117 errCode = U_MEMORY_ALLOCATION_ERROR; in initAvailableConvertersList()
/third_party/skia/third_party/externals/icu/source/common/
Dumutex.h139 inline void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(UErrorCode &), UErrorCode &errCode)…
140 if (U_FAILURE(errCode)) {
145 (*fp)(errCode);
146 uio.fErrCode = errCode;
151 errCode = uio.fErrCode;
170 …_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
171 if (U_FAILURE(errCode)) {
176 (*fp)(context, errCode);
177 uio.fErrCode = errCode;
182 errCode = uio.fErrCode;
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dumutex.h272 inline void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(UErrorCode &), UErrorCode &errCode)… in umtx_initOnce() argument
273 if (U_FAILURE(errCode)) { in umtx_initOnce()
278 (*fp)(errCode); in umtx_initOnce()
279 uio.fErrCode = errCode; in umtx_initOnce()
284 errCode = uio.fErrCode; in umtx_initOnce()
303 …_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(T, UErrorCode &), T context, UErrorCode &errCode) { in umtx_initOnce() argument
304 if (U_FAILURE(errCode)) { in umtx_initOnce()
309 (*fp)(context, errCode); in umtx_initOnce()
310 uio.fErrCode = errCode; in umtx_initOnce()
315 errCode = uio.fErrCode; in umtx_initOnce()
Ducnv_bld.cpp1103 static void U_CALLCONV initAvailableConvertersList(UErrorCode &errCode) { in initAvailableConvertersList() argument
1108 UEnumeration *allConvEnum = ucnv_openAllNames(&errCode); in initAvailableConvertersList()
1109 int32_t allConverterCount = uenum_count(allConvEnum, &errCode); in initAvailableConvertersList()
1110 if (U_FAILURE(errCode)) { in initAvailableConvertersList()
1117 errCode = U_MEMORY_ALLOCATION_ERROR; in initAvailableConvertersList()
/third_party/node/lib/internal/
Djs_stream_socket.js154 finishShutdown(handle, errCode) { argument
160 handle.finishShutdown(req, errCode);
188 let errCode = 0;
190 errCode = uv[`UV_${err.code}`] || uv.UV_EPIPE;
195 self.finishWrite(handle, errCode);
203 finishWrite(handle, errCode) { argument
210 handle.finishWrite(req, errCode);
/third_party/vk-gl-cts/framework/egl/
DegluDefs.cpp55 Error::Error (deUint32 errCode, const char* errStr) in Error() argument
56 …: tcu::TestError ((std::string("EGL returned ") + getErrorName(errCode)).c_str(), errStr ? errStr … in Error()
57 , m_error (errCode) in Error()
61 Error::Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line) in Error() argument
63 , m_error (errCode) in Error()
DegluDefs.hpp42 Error (deUint32 errCode, const char* errStr);
43 Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line);
/third_party/boost/boost/uuid/
Dentropy_error.hpp28 entropy_error(boost::intmax_t errCode, const std::string& message) in entropy_error() argument
30 , m_errcode(errCode) in entropy_error()
/third_party/mindspore/mindspore/core/mindrt/include/async/
Dtry.h36 Try(const F &errCode) { errorCode = errCode; } in Try() argument
Dfuture.h211 void SetFailed(int32_t errCode) const { in SetFailed() argument
212 MINDRT_ASSERT(errCode != MindrtStatus::KINIT && errCode != MindrtStatus::KOK); in SetFailed()
218 data->status.SetCode(errCode); in SetFailed()
/third_party/node/deps/npm/test/tap/
Dfund.js313 const [ errCode, errCmd ] = stderr.split('\n')
314 t.matchSnapshot(`${errCode}\n${errCmd}`, 'should write error msgs to stderr')
324 const [ errCode, errCmd ] = stderr.split('\n')
325 t.matchSnapshot(`${errCode}\n${errCmd}`, 'should write error msgs to stderr')
/third_party/typescript/scripts/
DerrorCheck.ts30 const errCode = +g[1]; constant
31 const msg = keys.filter(k => messages[k].code === errCode)[0];
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dplurrule.cpp667 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) { in getRuleFromResource() argument
670 if (U_FAILURE(errCode)) { in getRuleFromResource()
673 LocalUResourceBundlePointer rb(ures_openDirect(nullptr, "plurals", &errCode)); in getRuleFromResource()
674 if(U_FAILURE(errCode)) { in getRuleFromResource()
687 errCode = U_ILLEGAL_ARGUMENT_ERROR; in getRuleFromResource()
690 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, nullptr, &errCode)); in getRuleFromResource()
691 if(U_FAILURE(errCode)) { in getRuleFromResource()
696 const UChar* s = ures_getStringByKey(locRes.getAlias(), curLocaleName, &resLen, &errCode); in getRuleFromResource()
710 errCode = U_ZERO_ERROR; in getRuleFromResource()
724 LocalUResourceBundlePointer ruleRes(ures_getByKey(rb.getAlias(), "rules", nullptr, &errCode)); in getRuleFromResource()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dplurrule.cpp794 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) { in getRuleFromResource() argument
797 if (U_FAILURE(errCode)) { in getRuleFromResource()
800 LocalUResourceBundlePointer rb(ures_openDirect(nullptr, "plurals", &errCode)); in getRuleFromResource()
801 if(U_FAILURE(errCode)) { in getRuleFromResource()
814 errCode = U_ILLEGAL_ARGUMENT_ERROR; in getRuleFromResource()
817 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, nullptr, &errCode)); in getRuleFromResource()
818 if(U_FAILURE(errCode)) { in getRuleFromResource()
823 const UChar* s = ures_getStringByKey(locRes.getAlias(), curLocaleName, &resLen, &errCode); in getRuleFromResource()
837 errCode = U_ZERO_ERROR; in getRuleFromResource()
851 LocalUResourceBundlePointer ruleRes(ures_getByKey(rb.getAlias(), "rules", nullptr, &errCode)); in getRuleFromResource()
[all …]
/third_party/icu/icu4c/source/i18n/
Dplurrule.cpp786 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) { in getRuleFromResource() argument
789 if (U_FAILURE(errCode)) { in getRuleFromResource()
792 LocalUResourceBundlePointer rb(ures_openDirect(nullptr, "plurals", &errCode)); in getRuleFromResource()
793 if(U_FAILURE(errCode)) { in getRuleFromResource()
806 errCode = U_ILLEGAL_ARGUMENT_ERROR; in getRuleFromResource()
809 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, nullptr, &errCode)); in getRuleFromResource()
810 if(U_FAILURE(errCode)) { in getRuleFromResource()
815 const UChar* s = ures_getStringByKey(locRes.getAlias(), curLocaleName, &resLen, &errCode); in getRuleFromResource()
829 errCode = U_ZERO_ERROR; in getRuleFromResource()
843 LocalUResourceBundlePointer ruleRes(ures_getByKey(rb.getAlias(), "rules", nullptr, &errCode)); in getRuleFromResource()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dplurrule.cpp786 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) { in getRuleFromResource() argument
789 if (U_FAILURE(errCode)) { in getRuleFromResource()
792 LocalUResourceBundlePointer rb(ures_openDirect(nullptr, "plurals", &errCode)); in getRuleFromResource()
793 if(U_FAILURE(errCode)) { in getRuleFromResource()
806 errCode = U_ILLEGAL_ARGUMENT_ERROR; in getRuleFromResource()
809 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, nullptr, &errCode)); in getRuleFromResource()
810 if(U_FAILURE(errCode)) { in getRuleFromResource()
815 const UChar* s = ures_getStringByKey(locRes.getAlias(), curLocaleName, &resLen, &errCode); in getRuleFromResource()
829 errCode = U_ZERO_ERROR; in getRuleFromResource()
843 LocalUResourceBundlePointer ruleRes(ures_getByKey(rb.getAlias(), "rules", nullptr, &errCode)); in getRuleFromResource()
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/
Dcache_main.cc174 auto errCode = rc.StatusCode(); in main() local
177 return static_cast<int>(errCode); in main()
/third_party/mindspore/tests/ut/cpp/stub/tdt/
Dtdt_mock.cc32 std::string StatusFactory::GetErrCodeDesc(uint32_t errCode) { return "Error"; } in GetErrCodeDesc() argument
/third_party/node/deps/npm/node_modules/err-code/
Dindex.umd.js1 …fined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.errCode = f()}})(function…
/third_party/nghttp2/integration-tests/
Dnghttpx_http2_test.go545 if res.errCode != want {
546 t.Errorf("res.errCode = %v; want %v", res.errCode, want)
569 if res.errCode != want {
570 t.Errorf("res.errCode = %v; want %v", res.errCode, want)
646 if got, want := res.errCode, http2.ErrCodeProtocol; got != want {
668 if got, want := res.errCode, http2.ErrCodeProtocol; got != want {
729 if got, want := res.errCode, http2.ErrCodeProtocol; got != want {
749 if got, want := res.errCode, http2.ErrCodeProtocol; got != want {
817 if got, want := res.errCode, http2.ErrCodeProtocol; got != want {
818 t.Errorf("res.errCode = %v; want %v", res.errCode, want)
[all …]

12