Home
last modified time | relevance | path

Searched refs:err_code (Results 1 – 21 of 21) sorted by relevance

/third_party/openssl/test/
Dcmp_msg_test.c23 int err_code; member
98 fixture->err_code, in execute_errormsg_create_test()
150 fixture->err_code = -1; in test_cmp_create_ir_protection_set()
168 fixture->err_code = -1; in test_cmp_create_ir_protection_fails()
185 fixture->err_code = -1; in test_cmp_create_cr_without_key()
195 fixture->err_code = -1; in test_cmp_create_cr()
209 fixture->err_code = -1; in test_cmp_create_certreq_with_invalid_bodytype()
227 fixture->err_code = CMP_R_ERROR_CREATING_CERTREQ; in test_cmp_create_p10cr()
244 fixture->err_code = CMP_R_ERROR_CREATING_CERTREQ; in test_cmp_create_p10cr_null()
258 fixture->err_code = -1; in test_cmp_create_kur()
[all …]
/third_party/lwip/src/netif/ppp/
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=%d\n", pcb->netif->num, pcb->err_code)); in sifup()
[all …]
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()
Dlcp.c1564 pcb->err_code = PPPERR_LOOPBACK; in lcp_nakci()
2644 pcb->err_code = PPPERR_PEERDEAD; in LcpLinkFailure()
/third_party/flutter/engine/flutter/fml/
Dicu_util.cc75 UErrorCode err_code = U_ZERO_ERROR; in SetupICU() local
76 udata_setCommonData(GetMapping(), &err_code); in SetupICU()
77 return (err_code == U_ZERO_ERROR); in SetupICU()
/third_party/libunwind/src/mi/
Dstrerror.c31 unw_strerror (int err_code) in unw_strerror() argument
34 unw_error_t error = (unw_error_t)-err_code; in unw_strerror()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/
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/lwip/src/include/netif/ppp/
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/curl/
Dinstall.py136 err_code = messages[len(messages) - 1].rstrip()
137 if err_code == "0":
/third_party/lwip/doc/
Dppp.txt75 static void status_cb(ppp_pcb *pcb, int err_code, void *ctx) {
79 switch(err_code) {
150 printf("status_cb: Unknown error code %d\n", err_code);
160 if (err_code == PPPERR_NONE) {
165 if (err_code == PPPERR_USER) {
/third_party/ffmpeg/libavdevice/
Dopengl_enc.c153 GLenum err_code; \
154 if ((err_code = glGetError()) != GL_NO_ERROR) { \
155 … AV_LOG_ERROR, "OpenGL error occurred in '%s', line %d: %d\n", __FUNCTION__, __LINE__, err_code); \
/third_party/openssl/crypto/cmp/
Dcmp_msg.c693 int body_type, int err_code) in gen_new() argument
713 ERR_raise(ERR_LIB_CMP, err_code); in gen_new()
/third_party/ffmpeg/libavfilter/
Dvf_zscale.c324 int err_code = zimg_get_last_error(err_msg, sizeof(err_msg)); in print_zimg_error() local
326 av_log(ctx, AV_LOG_ERROR, "code %d: %s\n", err_code, err_msg); in print_zimg_error()
/third_party/gstreamer/gstplugins_bad/ext/openjpeg/
Dgstopenjpegdec.c1382 #define DECODE_ERROR(self, message, err_code, mutex_unlock) { \ argument
1383 GST_WARNING_OBJECT(self, "An error occurred err_code=%d", err_code);\
1384 message->last_error = err_code; \
Dgstopenjpegenc.c1125 #define ENCODE_ERROR(encode_params, err_code) { \ argument
1126 encode_params->last_error = err_code; \
/third_party/python/Modules/
Dposixmodule.c6149 int err_code; in py_posix_spawn() local
6220 err_code = posix_spawnp(&pid, path->narrow, in py_posix_spawn()
6226 err_code = posix_spawn(&pid, path->narrow, in py_posix_spawn()
6231 if (err_code) { in py_posix_spawn()
6232 errno = err_code; in py_posix_spawn()
/third_party/python/Lib/test/
Dtest_subprocess.py1799 err_code = '{:x}'.format(errno.EISDIR).encode()
1800 os.write(errpipe_write, b"OSError:" + err_code + b":")
/third_party/gstreamer/gstplugins_good/gst/rtsp/
Dgstrtspsrc.c382 #define RTSP_SRC_RESPONSE_ERROR(src, response_msg, err_cat, err_code, error_message) \ argument
384 GST_ELEMENT_ERROR_WITH_DETAILS((src), err_cat, err_code, ("%s", error_message), \
/third_party/chromium/patch/
D0003-ohos-1115.patch100324 @@ -32128,7 +33383,11 @@ static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){
100325 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
100327 db->errCode = err_code;
100328 - if( err_code || db->pErr ) sqlite3ErrorFinish(db, err_code);
100329 + if( err_code || db->pErr ){
100330 + sqlite3ErrorFinish(db, err_code);
100337 @@ -32138,6 +33397,7 @@ SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
100346 ** handle "db". The error code is set to "err_code".
100364 ** should be called with err_code set to SQLITE_OK and zFormat set
100365 @@ -32192,13 +33443,6 @@ SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const c…
[all …]
/third_party/sqlite/src/
Dsqlite3.c33702 static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){
33704 sqlite3SystemError(db, err_code);
33712 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
33714 db->errCode = err_code;
33715 if( err_code || db->pErr ){
33716 sqlite3ErrorFinish(db, err_code);
33757 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
33759 db->errCode = err_code;
33760 sqlite3SystemError(db, err_code);
33762 sqlite3Error(db, err_code);
/third_party/openssl/
DCHANGES.md19116 either modify crypto/Makefile.ssl to pass the -regen flag to err_code.pl