Searched refs:err_code (Results 1 - 19 of 19) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_itt.cpp103 kmp_msg_t err_code = KMP_SYSERRCODE(sys_err); local
104 __kmp_msg(kmp_ms_warning, KMP_MSG(IttLoadLibFailed, library), err_code,
107 __kmp_str_free(&err_code.str);
111 kmp_msg_t err_code = KMP_SYSERRMESG(sys_err); local
112 __kmp_msg(kmp_ms_warning, KMP_MSG(IttLoadLibFailed, library), err_code,
115 __kmp_str_free(&err_code.str);
139 kmp_msg_t err_code = KMP_ERR(sys_err); local
140 __kmp_msg(kmp_ms_warning, KMP_MSG(CantGetEnvVar, var), err_code,
143 __kmp_str_free(&err_code.str);
149 kmp_msg_t err_code local
[all...]
H A Dz_Linux_util.cpp153 kmp_msg_t err_code = KMP_ERR(error); local
155 err_code, __kmp_msg_null);
157 __kmp_str_free(&err_code.str);
181 kmp_msg_t err_code = KMP_ERR(error); local
183 err_code, __kmp_msg_null);
185 __kmp_str_free(&err_code.str);
226 kmp_msg_t err_code = KMP_ERR(error); local
228 err_code, __kmp_msg_null);
230 __kmp_str_free(&err_code.str);
257 kmp_msg_t err_code local
658 kmp_msg_t err_code = KMP_ERR(error); local
889 kmp_msg_t err_code = KMP_ERR(status); local
978 kmp_msg_t err_code = KMP_ERR(status); local
1028 kmp_msg_t err_code = KMP_ERR(status); local
[all...]
H A Dkmp_i18n.cpp137 kmp_msg_t err_code = KMP_ERR(error); local
138 __kmp_msg(kmp_ms_warning, KMP_MSG(CantOpenMessageCatalog, name), err_code,
142 __kmp_str_free(&err_code.str);
365 kmp_msg_t err_code = KMP_SYSERRCODE(error); local
367 err_code, (error == ERROR_BAD_EXE_FORMAT
372 __kmp_str_free(&err_code.str);
H A Dz_Windows_NT_util.cpp565 kmp_msg_t err_code = KMP_ERR(error); local
566 __kmp_msg(kmp_ms_warning, KMP_MSG(CantSetThreadAffMask), err_code,
569 __kmp_str_free(&err_code.str);
/freebsd-13-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm.h87 void stop(const char *errstring, int err_code);
H A Daicasm.c689 stop(const char *string, int err_code) argument
702 if (err_code != 0) {
711 if (err_code != 0) {
720 if (err_code != 0) {
730 exit(err_code);
/freebsd-13-stable/contrib/tcpdump/
H A Dprint-pptp.c109 uint8_t err_code; member in struct:pptp_msg_sccrp
126 uint8_t err_code; member in struct:pptp_msg_stopccrp
137 uint8_t err_code; member in struct:pptp_msg_echorp
160 uint8_t err_code; member in struct:pptp_msg_ocrp
184 uint8_t err_code; member in struct:pptp_msg_icrp
207 uint8_t err_code; member in struct:pptp_msg_cdn
242 6 uint8_t err_code;
337 const uint8_t *err_code)
339 ND_PRINT((ndo, " ERR_CODE(%u", *err_code));
341 ND_PRINT((ndo, ":%s", tok2str(pptp_errcode_str, "?", *err_code)));
336 pptp_err_code_print(netdissect_options *ndo, const uint8_t *err_code) argument
[all...]
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-wqe.h74 * HW decode / err_code in work queue entry
102 failure indicated in err_code below, decode:
119 (only applies if !rcv_error && !not_IP) failure indicated in err_code below, decode:
132 /* lower err_code = first-level descriptor of the work */
135 uint64_t err_code : 8; /**< type is cvmx_pip_err_t */ member in struct:__anon10392::__anon10393
160 failure indicated in err_code below, decode:
177 (only applies if !rcv_error && !not_IP) failure indicated in err_code below, decode:
190 /* lower err_code = first-level descriptor of the work */
193 uint64_t err_code : 8; /**< type is cvmx_pip_err_t */ member in struct:__anon10392::__anon10394
219 failure indicated in err_code belo
252 uint64_t err_code : 8; /**< type is cvmx_pip_err_t */ member in struct:__anon10392::__anon10395
317 uint64_t err_code : 8; /* type is cvmx_pip_err_t (union, so can't use directly */ member in struct:__anon10392::__anon10397
372 uint64_t err_code : 8; /* type is cvmx_pip_err_t (union, so can't use directly */ member in struct:__anon10392::__anon10398
427 uint64_t err_code : 8; /* type is cvmx_pip_err_t (union, so can't use directly */ member in struct:__anon10392::__anon10399
[all...]
/freebsd-13-stable/sys/mips/cavium/octe/
H A Dethernet-rx.c93 if ((work->word2.snoip.err_code == 10) && (work->word1.s.len <= 64)) {
98 if (USE_10MBPS_PREAMBLE_WORKAROUND && ((work->word2.snoip.err_code == 5) || (work->word2.snoip.err_code == 7))) {
146 DEBUGPRINT("Port %d receive error code %d, packet dropped\n", work->word1.cn38xx.ipprt, work->word2.snoip.err_code);
/freebsd-13-stable/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h123 size_t const err_code = (err); \
124 if (ERR_isError(err_code)) { \
126 __FILE__, __LINE__, ZSTD_QUOTE(err), ERR_getErrorName(err_code)); \
130 return err_code; \
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp199 const auto err_code = local
201 if (err_code)
204 err_code.message().c_str());
/freebsd-13-stable/contrib/flex/src/
H A Dscanopt.c599 * Error stored in err_code or zero if no error. */
601 len, int *err_code, int *opt_offset)
605 *err_code = 0;
646 *err_code = SCANOPT_ERR_OPT_UNRECOGNIZED;
650 *err_code = SCANOPT_ERR_OPT_AMBIGUOUS;
654 return *err_code ? 0 : 1;
597 find_opt(struct _scanopt_t *s, int lookup_long, char *optstart, int len, int *err_code, int *opt_offset) argument
/freebsd-13-stable/sys/dev/sfxge/common/
H A Defx_mcdi.c396 int err_code = MC_CMD_ERR_EPROTO; local
403 err_code = EFX_DWORD_FIELD(err[0], EFX_DWORD_0);
408 emrp->emr_err_code = err_code;
412 if ((err_code == MC_CMD_ERR_PROXY_PENDING) &&
437 int, err_code, int, err_arg);
440 rc = efx_mcdi_request_errcode(err_code);
/freebsd-13-stable/contrib/libucl/src/
H A Ducl_internal.h256 int err_code; member in struct:ucl_parser
H A Ducl_parser.c91 parser->err_code = code;
1962 parser->err_code = UCL_EUNPAIRED;
2666 parser->err_code = UCL_EUNPAIRED;
H A Ducl_util.c683 return parser->err_code;
712 parser->err_code = 0;
/freebsd-13-stable/sys/dev/qlxgb/
H A Dqla_hw.h625 uint16_t err_code; member in struct:_qla_cntrl_msg_hdr
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c6420 size_t const err_code = (err); \
6421 if (ERR_isError(err_code)) { \
6423 __FILE__, __LINE__, ZSTD_QUOTE(err), ERR_getErrorName(err_code)); \
6427 return err_code; \
[all...]
/freebsd-13-stable/contrib/sqlite3/
H A Dsqlite3.c31586 sqlite3ErrorFinish(sqlite3 *db, int err_code) argument
31596 sqlite3Error(sqlite3 *db, int err_code) argument
31645 sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...) argument
[all...]

Completed in 643 milliseconds