Home
last modified time | relevance | path

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

/third_party/openssl/test/
H A Dcmp_msg_test.c23 int err_code; member
98 fixture->err_code, in execute_errormsg_create_test()
151 fixture->err_code = -1; in test_cmp_create_ir_protection_set()
169 fixture->err_code = -1; in test_cmp_create_ir_protection_fails()
186 fixture->err_code = -1; in test_cmp_create_cr_without_key()
196 fixture->err_code = -1; in test_cmp_create_cr()
210 fixture->err_code = -1; in test_cmp_create_certreq_with_invalid_bodytype()
228 fixture->err_code = CMP_R_ERROR_CREATING_CERTREQ; in test_cmp_create_p10cr()
245 fixture->err_code = CMP_R_ERROR_CREATING_CERTREQ; in test_cmp_create_p10cr_null()
259 fixture->err_code in test_cmp_create_kur()
[all...]
/third_party/libunwind/libunwind/src/mi/
H A Dstrerror.c28 /* Returns the text corresponding to the given err_code or the
29 text "invalid error code" if the err_code is invalid. */
31 unw_strerror (int err_code) in unw_strerror() argument
34 unw_error_t error = (unw_error_t)-err_code; in unw_strerror()
/third_party/lwip/src/netif/ppp/
H A Dppp.c338 pcb->err_code = PPPERR_USER; in ppp_close()
348 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in ppp_close()
442 *(int *)arg = (int)(pcb->err_code); in ppp_ioctl()
758 pcb->err_code = PPPERR_OPEN; in ppp_link_failed()
759 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in ppp_link_failed()
766 if (pcb->err_code == PPPERR_NONE) { in ppp_link_end()
767 pcb->err_code = PPPERR_CONNECT; in ppp_link_end()
769 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in ppp_link_end()
1164 pcb->err_code = PPPERR_NONE; in sifup()
1167 PPPDEBUG(LOG_DEBUG, ("sifup[%d]: err_code in sifup()
[all...]
H A Dauth.c798 pcb->err_code = PPPERR_AUTHFAIL; in link_established()
1039 pcb->err_code = PPPERR_AUTHFAIL; in auth_peer_fail()
1129 pcb->err_code = PPPERR_AUTHFAIL; in auth_withpeer_fail()
1342 pcb->err_code = PPPERR_IDLETIMEOUT; in check_idle()
1360 pcb->err_code = PPPERR_CONNECTTIME; in connect_time_expired()
H A Dlcp.c1564 pcb->err_code = PPPERR_LOOPBACK; in lcp_nakci()
2644 pcb->err_code = PPPERR_PEERDEAD; in LcpLinkFailure()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c89 int err_code; in regex_helper() local
92 err_code = regcomp(&regex, regex_str, REG_EXTENDED); in regex_helper()
93 if (err_code) { in regex_helper()
94 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE); in regex_helper()
99 err_code = regexec(&regex, search_str, num_matches, matches, 0); in regex_helper()
106 if (err_code) { in regex_helper()
107 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE); in regex_helper()
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-interpreter.cc174 int err_code = FindNextMatch(); in FindMatches() local
175 if (err_code != RegExp::kInternalRegExpSuccess) return err_code; in FindMatches()
353 int err_code = HandleInterrupts(); in FindNextMatch() local
354 if (err_code != RegExp::kInternalRegExpSuccess) return err_code; in FindNextMatch()
/third_party/lwip/src/include/netif/ppp/
H A Dppp.h196 typedef void (*ppp_link_status_cb_fn)(ppp_pcb *pcb, int err_code, void *ctx);
320 void (*link_status_cb)(ppp_pcb *pcb, int err_code, void *ctx); /* Status change callback */
327 u8_t err_code; /* Code indicating why interface is down. */ member
/third_party/lame/frontend/
H A Drtp.c181 last_error_message(int err_code) in last_error_message() argument
187 (DWORD) err_code, in last_error_message()
/third_party/node/deps/openssl/openssl/crypto/cmp/
H A Dcmp_msg.c681 int body_type, int err_code) in gen_new()
700 ERR_raise(ERR_LIB_CMP, err_code); in gen_new()
679 gen_new(OSSL_CMP_CTX *ctx, const STACK_OF(OSSL_CMP_ITAV) *itavs, int body_type, int err_code) gen_new() argument
/third_party/openssl/crypto/cmp/
H A Dcmp_msg.c681 int body_type, int err_code) in gen_new()
700 ERR_raise(ERR_LIB_CMP, err_code); in gen_new()
679 gen_new(OSSL_CMP_CTX *ctx, const STACK_OF(OSSL_CMP_ITAV) *itavs, int body_type, int err_code) gen_new() argument
/third_party/ffmpeg/libavdevice/
H A Dopengl_enc.c153 GLenum err_code; \
154 if ((err_code = glGetError()) != GL_NO_ERROR) { \
155 av_log(ctx, AV_LOG_ERROR, "OpenGL error occurred in '%s', line %d: %d\n", __FUNCTION__, __LINE__, err_code); \
/third_party/python/Lib/test/test_sqlite3/
H A Dtest_dbapi.py311 err_code = sqlite.SQLITE_CANTOPEN_ISDIR
313 err_code = sqlite.SQLITE_CANTOPEN
319 self.assertEqual(e.sqlite_errorcode, err_code)
/third_party/ffmpeg/libavfilter/
H A Dvf_zscale.c364 int err_code = zimg_get_last_error(err_msg, sizeof(err_msg)); in print_zimg_error() local
366 av_log(ctx, AV_LOG_ERROR, "code %d: %s\n", err_code, err_msg); in print_zimg_error()
/third_party/python/Modules/
H A Dposixmodule.c6289 int err_code; in py_posix_spawn() local
6360 err_code = posix_spawnp(&pid, path->narrow, in py_posix_spawn()
6366 err_code = posix_spawn(&pid, path->narrow, in py_posix_spawn()
6371 if (err_code) { in py_posix_spawn()
6372 errno = err_code; in py_posix_spawn()
/third_party/astc-encoder/Source/
H A Dtinyexr.h10892 int err_code = TINYEXR_SUCCESS; in DecodeChunk() local
10926 err_code = TINYEXR_ERROR_INVALID_DATA; in DecodeChunk()
10948 err_code = TINYEXR_ERROR_UNSUPPORTED_FEATURE; in DecodeChunk()
10952 err_code = TINYEXR_ERROR_UNSUPPORTED_FEATURE; in DecodeChunk()
10966 err_code = TINYEXR_ERROR_INVALID_DATA; in DecodeChunk()
10992 err_code = TINYEXR_ERROR_INVALID_DATA; in DecodeChunk()
11013 if (err_code != TINYEXR_SUCCESS) { in DecodeChunk()
11014 return err_code; in DecodeChunk()
/third_party/python/Lib/test/
H A Dtest_subprocess.py1852 err_code = '{:x}'.format(errno.EISDIR).encode()
1853 os.write(errpipe_write, b"OSError:" + err_code + b":")
/third_party/sqlite/src/
H A Dsqlite3.c33706 sqlite3ErrorFinish(sqlite3 *db, int err_code) sqlite3ErrorFinish() argument
33716 sqlite3Error(sqlite3 *db, int err_code) sqlite3Error() argument
33761 sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...) sqlite3ErrorWithMsg() argument
[all...]

Completed in 184 milliseconds