Home
last modified time | relevance | path

Searched refs:errstr (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/python/Parser/
Dpegen_errors.c18 PyObject *errstr = NULL; in _PyPegen_raise_tokenizer_init_error() local
24 errstr = PyObject_Str(value); in _PyPegen_raise_tokenizer_init_error()
25 if (!errstr) { in _PyPegen_raise_tokenizer_init_error()
34 tuple = PyTuple_Pack(2, errstr, tmp); in _PyPegen_raise_tokenizer_init_error()
45 Py_XDECREF(errstr); in _PyPegen_raise_tokenizer_init_error()
129 PyObject *errstr; in _Pypegen_raise_decode_error() local
131 errstr = PyObject_Str(value); in _Pypegen_raise_decode_error()
132 if (errstr) { in _Pypegen_raise_decode_error()
133 RAISE_SYNTAX_ERROR("(%s) %U", errtype, errstr); in _Pypegen_raise_decode_error()
134 Py_DECREF(errstr); in _Pypegen_raise_decode_error()
[all …]
Dpegen.c268 PyObject *errstr; in raise_decode_error() local
270 errstr = PyObject_Str(value); in raise_decode_error()
271 if (errstr) { in raise_decode_error()
272 RAISE_SYNTAX_ERROR("(%s) %U", errtype, errstr); in raise_decode_error()
273 Py_DECREF(errstr); in raise_decode_error()
306 PyObject *errstr = NULL; in raise_tokenizer_init_error() local
312 errstr = PyObject_Str(value); in raise_tokenizer_init_error()
313 if (!errstr) { in raise_tokenizer_init_error()
322 tuple = PyTuple_Pack(2, errstr, tmp); in raise_tokenizer_init_error()
333 Py_XDECREF(errstr); in raise_tokenizer_init_error()
[all …]
/third_party/optimized-routines/math/test/rtest/
Ddotest.c1631 char *errstr = NULL; in docase() local
1800 errstr = ((testsemi1)(fn->func))(args, result); in docase()
1804 errstr = ((testsemi2)(fn->func))(args, args+2, result); in docase()
1809 errstr = ((testsemi2f)(fn->func))(args, args+2, result); in docase()
1812 errstr = ((testldexp)(fn->func))(args, args+2, result); in docase()
1815 errstr = ((testfrexp)(fn->func))(args, result, result+2); in docase()
1818 errstr = ((testfrexp)(fn->func))(args, result, result+2); in docase()
1821 errstr = ((testmodf)(fn->func))(args, result, result+2); in docase()
1824 errstr = ((testmodf)(fn->func))(args, result, result+2); in docase()
1827 errstr = ((testclassify)(fn->func))(args, &result[0]); in docase()
[all …]
/third_party/musl/src/stdio/
Dperror.c9 char *errstr = strerror(errno); in perror() local
23 fwrite(errstr, strlen(errstr), 1, f); in perror()
/third_party/musl/porting/uniproton/kernel/src/stdio/
Dperror.c9 char *errstr = strerror(errno); in perror() local
23 fwrite(errstr, strlen(errstr), 1, f); in perror()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
Dperror.c9 char *errstr = strerror(errno); in perror() local
23 fwrite(errstr, strlen(errstr), 1, f); in perror()
/third_party/musl/porting/liteos_a/kernel/src/stdio/
Dperror.c9 char *errstr = strerror(errno); in perror() local
23 fwrite(errstr, strlen(errstr), 1, f); in perror()
/third_party/curl/lib/vquic/
Dvquic.c332 char errstr[STRERROR_LEN]; in recvmmsg_packets() local
368 Curl_strerror(SOCKERRNO, errstr, sizeof(errstr)); in recvmmsg_packets()
370 mcount, SOCKERRNO, errstr); in recvmmsg_packets()
407 char errstr[STRERROR_LEN]; in recvmsg_packets() local
438 Curl_strerror(SOCKERRNO, errstr, sizeof(errstr)); in recvmsg_packets()
440 nread, SOCKERRNO, errstr); in recvmsg_packets()
473 char errstr[STRERROR_LEN]; in recvfrom_packets() local
498 Curl_strerror(SOCKERRNO, errstr, sizeof(errstr)); in recvfrom_packets()
500 nread, SOCKERRNO, errstr); in recvfrom_packets()
/third_party/libsnd/tests/
Derror_test.c41 { const char *noerror, *errstr ; in error_number_test() local
49 { errstr = sf_error_number (k) ; in error_number_test()
52 if (errstr == noerror) in error_number_test()
56 if (strstr (errstr, "This is a bug in libsndfile.")) in error_number_test()
57 { printf ("\n\nError : error number %d : %s\n\n\n", k, errstr) ; in error_number_test()
Dcompression_size_test.c78 { const char * errstr ; in vorbis_test() local
80 errstr = sf_strerror (NULL) ; in vorbis_test()
81 if (strstr (errstr, "Sample rate chosen is known to trigger a Vorbis") == NULL) in vorbis_test()
82 { printf ("Line %d: sf_open (SFM_WRITE) failed : %s\n", __LINE__, errstr) ; in vorbis_test()
Dlossy_comp_test.c1459 { const char * errstr ; in sdlcomp_test_short() local
1461 errstr = sf_strerror (NULL) ; in sdlcomp_test_short()
1462 if (strstr (errstr, "Sample rate chosen is known to trigger a Vorbis") != NULL) in sdlcomp_test_short()
1466 else if (strstr (errstr, "Opus only supports sample rates of") != NULL) in sdlcomp_test_short()
1471 { printf ("Line %d: sf_open_fd (SFM_WRITE) failed : %s\n", __LINE__, errstr) ; in sdlcomp_test_short()
1681 { const char * errstr ; in sdlcomp_test_int() local
1683 errstr = sf_strerror (NULL) ; in sdlcomp_test_int()
1684 if (strstr (errstr, "Sample rate chosen is known to trigger a Vorbis") != NULL) in sdlcomp_test_int()
1688 else if (strstr (errstr, "Opus only supports sample rates of") != NULL) in sdlcomp_test_int()
1693 { printf ("Line %d: sf_open_fd (SFM_WRITE) failed : %s\n", __LINE__, errstr) ; in sdlcomp_test_int()
[all …]
/third_party/python/Modules/_ctypes/darwin/
Ddlfcn_simple.c84 static char errstr[ERR_STR_LEN]; in error() local
91 strncpy(errstr, "dlcompat: ", ERR_STR_LEN); in error()
92 vsnprintf(errstr + 10, ERR_STR_LEN - 10, str, arg); in error()
102 retval = errstr; in error()
/third_party/openssl/doc/man1/
Dopenssl-errstr.pod.in6 openssl-errstr - lookup error codes
10 B<openssl errstr>
39 openssl errstr 2006D080
Dopenssl-cmds.pod.in23 errstr,
104 L<openssl-errstr(1)>,
/third_party/libbpf/src/
Dskel_internal.h66 const char *errstr; member
318 opts->errstr = "failed to create loader map"; in bpf_load_and_run()
325 opts->errstr = "failed to update loader map"; in bpf_load_and_run()
343 opts->errstr = "failed to load loader prog"; in bpf_load_and_run()
354 opts->errstr = "failed to execute loader prog"; in bpf_load_and_run()
/third_party/ffmpeg/doc/examples/
Dfilter_audio.c276 uint8_t errstr[1024]; in main() local
360 av_strerror(err, errstr, sizeof(errstr)); in main()
361 fprintf(stderr, "%s\n", errstr); in main()
/third_party/lwip/src/core/
Dmem.c107 char errstr[128]; in mem_overflow_check_raw() local
108 snprintf(errstr, sizeof(errstr), "detected mem overflow in %s%s", descr1, descr2); in mem_overflow_check_raw()
109 LWIP_ASSERT(errstr, 0); in mem_overflow_check_raw()
118 char errstr[128]; in mem_overflow_check_raw() local
119 snprintf(errstr, sizeof(errstr), "detected mem underflow in %s%s", descr1, descr2); in mem_overflow_check_raw()
120 LWIP_ASSERT(errstr, 0); in mem_overflow_check_raw()
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/
Dmemtoy.c80 char *errstr; in die() local
87 errstr = strerror(errno); in die()
94 fprintf(stderr, "Error = (%d) %s\n", saverrno, errstr); in die()
/third_party/mesa3d/include/CL/
Dcl_ext.h71 extern void CL_API_ENTRY clLogMessagesToSystemLogAPPLE( const char * errstr,
77 extern void CL_API_ENTRY clLogMessagesToStdoutAPPLE( const char * errstr,
83 extern void CL_API_ENTRY clLogMessagesToStderrAPPLE( const char * errstr,
/third_party/python/Modules/
D_ssl.c446 const char *errstr, int lineno, unsigned long errcode) in fill_and_set_sslerror() argument
477 if (errstr == NULL) in fill_and_set_sslerror()
478 errstr = ERR_reason_error_string(errcode); in fill_and_set_sslerror()
480 if (errstr == NULL) in fill_and_set_sslerror()
481 errstr = "unknown error"; in fill_and_set_sslerror()
524 lib_obj, reason_obj, errstr, verify_obj, in fill_and_set_sslerror()
528 lib_obj, reason_obj, errstr, lineno); in fill_and_set_sslerror()
531 lib_obj, errstr, lineno); in fill_and_set_sslerror()
533 msg = PyUnicode_FromFormat("%s (_ssl.c:%d)", errstr, lineno); in fill_and_set_sslerror()
588 char *errstr = NULL; in PySSL_SetError() local
[all …]
/third_party/libsnd/src/
Dalac.c977 { static char errstr [128] ; in alac_error_string() local
996 snprintf (errstr, sizeof (errstr), "Unknown error %d", error) ; in alac_error_string()
997 return errstr ; in alac_error_string()
/third_party/openssl/engines/
De_capi.c960 char errstr[10]; in capi_rsa_priv_dec() local
961 BIO_snprintf(errstr, 10, "%d", padding); in capi_rsa_priv_dec()
963 ERR_add_error_data(2, "padding=", errstr); in capi_rsa_priv_dec()
1114 char errstr[10]; in capi_adderror() local
1115 BIO_snprintf(errstr, 10, "%lX", err); in capi_adderror()
1116 ERR_add_error_data(2, "Error code= 0x", errstr); in capi_adderror()
/third_party/node/deps/openssl/openssl/engines/
De_capi.c960 char errstr[10]; in capi_rsa_priv_dec() local
961 BIO_snprintf(errstr, 10, "%d", padding); in capi_rsa_priv_dec()
963 ERR_add_error_data(2, "padding=", errstr); in capi_rsa_priv_dec()
1114 char errstr[10]; in capi_adderror() local
1115 BIO_snprintf(errstr, 10, "%lX", err); in capi_adderror()
1116 ERR_add_error_data(2, "Error code= 0x", errstr); in capi_adderror()
/third_party/cares/
Dbackport-003-CVE-2023-31130.patch105 - const char *errstr;
/third_party/skia/third_party/externals/angle2/include/CL/
Dcl_ext.h71 extern CL_API_ENTRY void CL_API_CALL clLogMessagesToSystemLogAPPLE( const char * errstr,
77 extern CL_API_ENTRY void CL_API_CALL clLogMessagesToStdoutAPPLE( const char * errstr,
83 extern CL_API_ENTRY void CL_API_CALL clLogMessagesToStderrAPPLE( const char * errstr,

1234