/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluDefs.hpp | 56 Error (int error, const char* message, const char* expr, const char* file, int line); 57 Error (int error, const std::string& message);
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | jsunit_driver.py | 30 from ohos.error import ErrorMessage 83 LOG.error(err_msg) 89 LOG.error(err_msg) 223 except UnicodeError as error: 224 LOG.warning("While read log file: %s" % error) 241 except (UnicodeError, EOFError) as error: 242 LOG.warning("While read log file: %s" % error) 272 LOG.error("Hjsunit run timeout {}s reached".format(timeout))
|
/third_party/ffmpeg/tools/ |
H A D | target_dec_fuzzer.c | 67 static void error(const char *err) in error() function 80 error("Failed to find decoder"); in AVCodecInitialize() 309 error("Failed memory allocation"); in LLVMFuzzerTestOneInput() 392 error("Failed memory allocation"); in LLVMFuzzerTestOneInput() 443 error("Failed memory allocation"); in LLVMFuzzerTestOneInput() 458 error("Failed memory allocation"); in LLVMFuzzerTestOneInput() 475 error("Failed memory allocation"); in LLVMFuzzerTestOneInput() 478 error("Failed memory allocation"); in LLVMFuzzerTestOneInput()
|
/third_party/cmsis/CMSIS/Core/Include/ |
H A D | core_cm0plus.h | 76 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 81 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 86 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 91 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 96 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 101 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 106 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" 111 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | TestFmwk.java | 468 * @return the length of 'array', or -1 on error 473 errln("Internal error"); in checkArray() 570 float actual, double error) { in assertEquals() 573 : !(Math.abs(expected - actual) > error); // handles NaN in assertEquals() 575 + (error == 0 ? "" : " (within " + error + ")"), String in assertEquals() 580 double actual, double error) { in assertEquals() 583 : !(Math.abs(expected - actual) > error); // handles NaN in assertEquals() 585 + (error == 0 ? "" : " (within " + error in assertEquals() 569 assertEquals(String message, float expected, float actual, double error) assertEquals() argument 579 assertEquals(String message, double expected, double actual, double error) assertEquals() argument [all...] |
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
H A D | TestFmwk.java | 443 * @return the length of 'array', or -1 on error 448 errln("Internal error"); in checkArray() 545 float actual, double error) { in assertEquals() 548 : !(Math.abs(expected - actual) > error); // handles NaN in assertEquals() 550 + (error == 0 ? "" : " (within " + error + ")"), String in assertEquals() 555 double actual, double error) { in assertEquals() 558 : !(Math.abs(expected - actual) > error); // handles NaN in assertEquals() 560 + (error == 0 ? "" : " (within " + error in assertEquals() 544 assertEquals(String message, float expected, float actual, double error) assertEquals() argument 554 assertEquals(String message, double expected, double actual, double error) assertEquals() argument [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcRobustnessTests.cpp | 200 * This test verifies if read uniform variables to the buffer with bufSize less than expected result with GL_INVALID_OPERATION error; 219 bool verifyError(glw::GLint error, glw::GLint expectedError, const char* method); 292 /* veryfing gfetnUniform error messages */ in iterate() 373 bool GetnUniformTest::verifyError(GLint error, GLint expectedError, const char* method) in verifyError() argument 375 if (error != expectedError) in verifyError() 377 m_testCtx.getLog() << tcu::TestLog::Message << "Test failed! " << method << " throws unexpected error [" in verifyError() 378 << error << "]." << tcu::TestLog::EndMessage; in verifyError() 388 * This test verifies if read pixels to the buffer with bufSize less than expected result with GL_INVALID_OPERATION error; 406 bool verifyError(glw::GLint error, glw::GLint expectedError, const char* method); 418 "with GL_INVALID_OPERATION error") in ReadnPixelsTest() 618 verifyError(GLint error, GLint expectedError, const char* method) verifyError() argument [all...] |
/third_party/skia/third_party/externals/oboe/src/aaudio/ |
H A D | AudioStreamAAudio.cpp | 61 // It calls app error callbacks from a static function in case the stream gets deleted. 63 Result error) { in oboe_aaudio_error_thread_proc() 67 oboeStream->getCallback()->onErrorBeforeClose(oboeStream, error); in oboe_aaudio_error_thread_proc() 72 oboeStream->getCallback()->onErrorAfterClose(oboeStream, error); in oboe_aaudio_error_thread_proc() 81 Result error) { in oboe_aaudio_error_thread_proc_shared() 83 oboe_aaudio_error_thread_proc(oboeStream, error); in oboe_aaudio_error_thread_proc_shared() 104 // Static 'C' wrapper for the error callback method. 105 // Launch a thread to handle the error. 110 aaudio_result_t error) { in internalErrorCallback() 118 if (oboeStream->wasErrorCallbackCalled()) { // block extra error callback in internalErrorCallback() 62 oboe_aaudio_error_thread_proc(AudioStreamAAudio *oboeStream, Result error) oboe_aaudio_error_thread_proc() argument 80 oboe_aaudio_error_thread_proc_shared(std::shared_ptr<AudioStream> sharedStream, Result error) oboe_aaudio_error_thread_proc_shared() argument 107 internalErrorCallback( AAudioStream *stream, void *userData, aaudio_result_t error) internalErrorCallback() argument [all...] |
/third_party/skia/gm/ |
H A D | runtimeintrinsics.cpp | 128 auto [effect, error] = SkRuntimeEffect::MakeForShader( in plot() 132 SkDebugf("Error: %s\n", error.c_str()); in plot() 456 auto [effect, error] = SkRuntimeEffect::MakeForShader(make_matrix_comp_mult_sksl(N)); in plot_matrix_comp_mult() 458 SkDebugf("Error: %s\n", error.c_str()); in plot_matrix_comp_mult() 493 auto [effect, error] = SkRuntimeEffect::MakeForShader(make_matrix_inverse_sksl(N)); in plot_matrix_inverse() 495 SkDebugf("Error: %s\n", error.c_str()); in plot_matrix_inverse() 582 auto [effect, error] = SkRuntimeEffect::MakeForShader(make_bvec_sksl(type, fn)); in plot_bvec() 584 SkDebugf("Error: %s\n", error.c_str()); in plot_bvec()
|
/third_party/rust/crates/nix/test/sys/ |
H A D | test_aio.rs | 32 // Helper that polls an AioCb for completion or error 36 let err = $aiocb.as_mut().error(); 68 /// `libc::aio_fsync` returns an error 73 fn error() { in error() functions 158 /// `libc::aio_read` returns an error 163 fn error() { in error() functions 339 let err = aiow.as_mut().error(); in cancel() 412 /// `libc::aio_write` returns an error. 417 fn error() { in error() functions 561 let err = aiocb.as_mut().error(); in test_aio_cancel_all() [all...] |
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsRandomShaderCase.cpp | 261 GLenum error; in checkShaderLimits() local 264 error = m_renderCtx.getFunctions().getError(); in checkShaderLimits() 266 if (error != GL_NO_ERROR) in checkShaderLimits() 267 throw tcu::TestError("Limit query failed: " + de::toString(glu::getErrorStr(error))); in checkShaderLimits() 281 GLenum error; in checkProgramLimits() local 284 error = m_renderCtx.getFunctions().getError(); in checkProgramLimits() 286 if (error != GL_NO_ERROR) in checkProgramLimits() 287 throw tcu::TestError("Limit query failed: " + de::toString(glu::getErrorStr(error))); in checkProgramLimits()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/ |
H A D | dbus_dict_helpers.c | 577 * @error on failure a descriptive error 583 DBusError *error) in wpa_dbus_dict_open_read() 589 dbus_set_error_const(error, DBUS_ERROR_FAILED, in wpa_dbus_dict_open_read() 602 dbus_set_error_const(error, DBUS_ERROR_INVALID_ARGS, in wpa_dbus_dict_open_read() 940 * entry in the dict, or the type will be DBUS_TYPE_INVALID if an error 960 goto error; in wpa_dbus_dict_get_entry() 970 goto error; in wpa_dbus_dict_get_entry() 977 goto error; in wpa_dbus_dict_get_entry() 989 goto error; in wpa_dbus_dict_get_entry() 581 wpa_dbus_dict_open_read(DBusMessageIter *iter, DBusMessageIter *iter_dict, DBusError *error) wpa_dbus_dict_open_read() argument [all...] |
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglImageTests.cpp | 98 EGLint error; in checkCallError() local 102 error = eglTestCtx.getLibrary().getError(); in checkCallError() 104 if (error != expectError) in checkCallError() 106 log << TestLog::Message << " Fail: Error code mismatch! Expected " << eglu::getErrorStr(expectError) << ", got " << eglu::getErrorStr(error) << TestLog::EndMessage; in checkCallError() 110 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid error code"); in checkCallError() 121 EGLint error; in checkCallReturn() local 125 error = eglTestCtx.getLibrary().getError(); in checkCallReturn() 135 if (error != expectError) in checkCallReturn() 137 log << TestLog::Message << " Fail: Error code mismatch! Expected " << eglu::getErrorStr(expectError) << ", got " << eglu::getErrorStr(error) << TestLog::EndMessage; in checkCallReturn() 140 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid error cod in checkCallReturn() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/ |
H A D | dbus_dict_helpers.c | 577 * @error on failure a descriptive error 583 DBusError *error) in wpa_dbus_dict_open_read() 589 dbus_set_error_const(error, DBUS_ERROR_FAILED, in wpa_dbus_dict_open_read() 602 dbus_set_error_const(error, DBUS_ERROR_INVALID_ARGS, in wpa_dbus_dict_open_read() 940 * entry in the dict, or the type will be DBUS_TYPE_INVALID if an error 960 goto error; in wpa_dbus_dict_get_entry() 970 goto error; in wpa_dbus_dict_get_entry() 977 goto error; in wpa_dbus_dict_get_entry() 989 goto error; in wpa_dbus_dict_get_entry() 581 wpa_dbus_dict_open_read(DBusMessageIter *iter, DBusMessageIter *iter_dict, DBusError *error) wpa_dbus_dict_open_read() argument [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cBufferStorageTests.cpp | 1091 /* Log link error */ in Link() 1097 /* Get error log length */ in Link() 1103 /* Get error log */ in Link() 1198 /* Log compilation error */ in Compile() 1211 /* Get error log */ in Compile() 1911 /** Verifies that expected error was generated 1913 * @param expected_error Expected error 1914 * @param error_message Message that will be logged in case of wrong error 1915 * @param out_test_result Set to false if worng error was generated, not modified otherwise 1921 const GLenum error in verifyError() local 2216 GLenum error = gl.getError(); iterate() local 2374 GLenum error = gl.getError(); iterate() local 2704 GLenum error = GL_NO_ERROR; verifyTestedOperation() local 2905 GLenum error = gl.getError(); iterate() local [all...] |
/third_party/python/Modules/ |
H A D | posixmodule.c | 189 # error "HAVE_FUTIMESAT unexpectedly defined" 1043 * of the function in error messages. 1047 * of the parameter in error messages. 1185 /* Inline PyOS_FSPath() for better error messages. */ in path_converter() 1509 Return 1 on success, return 0 and raise an exception on error. */ 1539 goto error; in _Py_Sigset_Converter() 1545 goto error; in _Py_Sigset_Converter() 1553 goto error; in _Py_Sigset_Converter() 1562 error: in _Py_Sigset_Converter() 1674 /* Set a POSIX-specific error fro 1899 DWORD fileType, error; win32_xstat_impl() local 4078 int error = GetLastError(); _listdir_windows_no_opendir() local 4597 int error = 0; os_mkdir_impl() local 13150 int error; os_listxattr_impl() local [all...] |
H A D | timemodule.c | 576 * an exception and return 0 on error. 1029 /* bpo-19748: On AIX, mktime() does not report overflow error 1056 /* Return value of -1 does not necessarily mean an error, but tm_wday 1059 /* Return value of -1 does not necessarily mean an error, but 1648 goto error; 1651 goto error; 1658 goto error; 1661 goto error; 1668 goto error; 1671 goto error; [all...] |
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | parser.js | 105 error: this._errorGenerator(), 132 return _this.rule.error(message, errorOptions); 311 return this.error("Expected an attribute followed by an operator preceding the string.", { 330 return this.error('Unexpected "=" found; an operator was already defined.', { 356 return this.error("Unexpected \"" + content + "\" found.", { 595 _proto.error = function error(message, opts) { function 596 throw this.root.error(message, opts); 599 return this.error('Expected a backslash preceding the semicolon.', { 610 return this.error("Unexpecte [all...] |
/third_party/node/deps/uv/src/win/ |
H A D | util.c | 121 goto error; in uv_exepath() 138 goto error; in uv_exepath() 148 error: in uv_exepath() 579 goto error; in uv_cpu_info() 586 goto error; in uv_cpu_info() 595 goto error; in uv_cpu_info() 622 goto error; in uv_cpu_info() 633 goto error; in uv_cpu_info() 644 goto error; in uv_cpu_info() 667 error in uv_cpu_info() [all...] |
/third_party/pulseaudio/src/daemon/ |
H A D | ohos_pa_main.c | 78 #include <pulsecore/core-error.h> 206 pa_log_warn("Failed to set DACL for runtime dir: failed to apply DACL: error %lu.", GetLastError()); in change_user() 210 pa_log_warn("Failed to set DACL for runtime dir: failed to get security descriptor DACL: error %lu.", GetLastError()); in change_user() 213 pa_log_warn("Failed to set DACL for runtime dir: failed to parse security descriptor: error %lu.", GetLastError()); in change_user() 230 pa_log_warn("Failed to set DACL for lib dir: failed to apply DACL: error %lu.", GetLastError()); in change_user() 234 pa_log_warn("Failed to set DACL for lib dir: failed to get security descriptor DACL: error %lu.", GetLastError()); in change_user() 237 pa_log_warn("Failed to set DACL for lib dir: failed to parse security descriptor: error %lu.", GetLastError()); in change_user() 314 #error "No API to drop privileges" in change_user() 330 #error "No API to drop privileges" in change_user() 445 DBusError error; in register_dbus_name() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regcomp.c | 67 int error; /* has an error been seen? */ member 116 static char nuls[10]; /* place to point scanner in event of error */ 206 p->error = 0; in llvm_regcomp() 256 if (p->error != 0) /* lose */ in llvm_regcomp() 258 return(p->error); in llvm_regcomp() 461 if (!EAT('}')) { /* error heuristics */ in p_ere_exp() 570 /* the MORE here is an error heuristic */ in p_simp_re() 632 if (!EATTWO('\\', '}')) { /* error heuristics */ in p_simp_re() 687 /* allocset did set error statu in p_bracket() [all...] |
/base/powermgr/battery_statistics/frameworks/napi/src/ |
H A D | battery_stats_module.cpp | 39 NapiError error; in GetBatteryStats() local 42 return error.ThrowError(env, StatsError::ERR_PARAM_INVALID); in GetBatteryStats() 48 return error.ThrowError(env, StatsError::ERR_PARAM_INVALID); in GetBatteryStats()
|
/base/telephony/core_service/services/satellite_service_interaction/src/ |
H A D | satellite_core_callback_stub.cpp | 76 int32_t error = data.ReadInt32();
in OnSetRadioStateResponse() local 84 info->error = static_cast<ErrType>(error);
in OnSetRadioStateResponse()
|
/base/update/packaging_tools/ |
H A D | build_hmp.py | 51 "Package name error: %s" % arg, UPDATE_LOGGER.ERROR_LOG) 142 self.__logger_obj.error(msg) 144 self.__logger_obj.error("Unknown log type! %s", log_type) 154 self.__logger_obj.error(msg, exc_info=exc_info)
|
/base/useriam/user_auth_framework/services/core/src/ |
H A D | authentication_impl.cpp | 36 void AuthenticationImpl::SetLatestError(int32_t error) in SetLatestError() argument 38 if (error != ResultCode::SUCCESS) { in SetLatestError() 39 latestError_ = error; in SetLatestError()
|