/third_party/node/deps/brotli/c/dec/ |
H A D | decode.c | 113 /* Saves error code and converts it to BrotliDecoderResult. */ 1170 size_t error = 0; in DetectTrivialLiteralBlockTypes() local 1174 BROTLI_REPEAT(4, error |= s->context_map[offset + j++] ^ sample;) in DetectTrivialLiteralBlockTypes() 1176 if (error == 0) { in DetectTrivialLiteralBlockTypes() 2078 /* Do not try to process further in a case of unrecoverable error. */ in BrotliDecoderDecompressStream() 2543 /* After unrecoverable error remaining output is considered nonsensical. */ in BrotliDecoderHasMoreOutput()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_private.h | 251 * implementation-dependent, and if such a failure occurs then the error 1352 /** Specifies that the BO should be captured in error states */ 1543 * Current error status of the command buffer. Used to track inconsistent 1566 anv_batch_set_error(struct anv_batch *batch, VkResult error) in anv_batch_set_error() argument 1568 assert(error != VK_SUCCESS); in anv_batch_set_error() 1570 batch->status = error; in anv_batch_set_error()
|
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | statem_clnt.c | 86 * Return values are 1 for success (transition allowed) and 0 on error 172 # error Internal DTLS version error in ossl_statem_client13_read_transition() 203 * Return values are 1 for success (transition allowed) and 0 on error 1326 * or it's not allowed for the selected protocol. So we return an error. in set_client_ciphersuite() 2721 /* Note we validate the SCTs whether or not we abort on error */ in tls_process_initial_server_flight() 3365 /* ssl_generate_master_secret frees the pms even on error */ in tls_client_key_exchange_post_work() 3465 * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP; in tls_prepare_client_certificate() 3536 * This is a fatal error, which leaves enc_write_ctx in an inconsistent in tls_construct_client_certificate() 3700 # error Ma in ssl_cipher_list_to_bytes() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineBlendOperationAdvancedTests.cpp | 1599 std::ostringstream error; 1600 error << "Unsupported number of color attachments (" << blendProperties.advancedBlendMaxColorAttachments << " < " << m_param.colorAttachmentsCount; 1601 throw tcu::NotSupportedError(error.str().c_str());
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cVertexAttrib64BitTest.cpp | 162 m_log << tcu::TestLog::Section("Shader compilation error", ""); in CompileShader() 233 m_log << tcu::TestLog::Section("Program link error", ""); in LinkProgram() 381 /** Test if GL_INVALID_ENUM error is provoked as expected 421 /** Test if GL_INVALID_OPERATON error is provoked as expected 451 /** Test if GL_INVALID_VALUE error is provoked as expected 549 /** Verify that GetError returns expected error code. In case of failure logs error message. 551 * @param expected_error Expected error code 552 * @param function_name Name of function to log in case of error 558 GLenum error in verifyError() local [all...] |
/third_party/openssl/ssl/statem/ |
H A D | statem_clnt.c | 86 * Return values are 1 for success (transition allowed) and 0 on error 172 # error Internal DTLS version error in ossl_statem_client13_read_transition() 203 * Return values are 1 for success (transition allowed) and 0 on error 1318 * or it's not allowed for the selected protocol. So we return an error. in set_client_ciphersuite() 2713 /* Note we validate the SCTs whether or not we abort on error */ in tls_process_initial_server_flight() 3357 /* ssl_generate_master_secret frees the pms even on error */ in tls_client_key_exchange_post_work() 3457 * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP; in tls_prepare_client_certificate() 3528 * This is a fatal error, which leaves enc_write_ctx in an inconsistent in tls_construct_client_certificate() 3692 # error Ma in ssl_cipher_list_to_bytes() [all...] |
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_cross_c.cpp | 67 #define SPVC_END_SAFE_SCOPE(context, error) \ 71 return (error); \ 74 #define SPVC_END_SAFE_SCOPE(context, error)
|
/third_party/skia/third_party/externals/brotli/c/dec/ |
H A D | decode.c | 113 /* Saves error code and converts it to BrotliDecoderResult. */ 1170 size_t error = 0; in DetectTrivialLiteralBlockTypes() local 1174 BROTLI_REPEAT(4, error |= s->context_map[offset + j++] ^ sample;) in DetectTrivialLiteralBlockTypes() 1176 if (error == 0) { in DetectTrivialLiteralBlockTypes() 2078 /* Do not try to process further in a case of unrecoverable error. */ in BrotliDecoderDecompressStream() 2543 /* After unrecoverable error remaining output is considered nonsensical. */ in BrotliDecoderHasMoreOutput()
|
/third_party/unity/src/ |
H A D | unity_internals.h | 156 #error Invalid UNITY_INT_WIDTH specified! (16 or 32 are supported) 185 #error Invalid UNITY_LONG_WIDTH specified! (32 or 64 are supported) 206 #error Invalid UNITY_POINTER_WIDTH specified! (16, 32 or 64 are supported)
|
/third_party/python/Lib/test/ |
H A D | test_types.py | 991 # Raise error when isinstance(type, genericalias | type) 1987 error = Exception() 1988 gen.throw.side_effect = error 1992 self.assertIs(ex, error)
|
/third_party/python/Lib/ |
H A D | typing.py | 174 The msg argument is a human-readable error message, e.g.:: 278 This gives a nice error message in case of count mismatch. 552 never_call_me(arg) # type checker error 599 run_query(arbitrary_string) # type checker error 600 run_query( # type checker error 1847 error = Generic in cls.__orig_bases__ 1849 error = (Generic in cls.__bases__ and 1852 if error: 2059 # Same error message as for issubclass(1, int). 2161 - It's an error t [all...] |
/third_party/python/Lib/urllib/ |
H A D | request.py | 13 non-error returns. The HTTPRedirectHandler automatically deals with 71 # If an authentication error handler that tries to perform 72 # authentication for some reason but fails, how should the error be 73 # signalled? The client needs to know the HTTP error code. But if 102 from urllib.error import URLError, HTTPError, ContentTooShortError 453 if condition.startswith("error"): 544 def error(self, proto, *args): member in OpenerDirector 625 """Process HTTP error responses.""" 634 response = self.parent.error( 753 inf_msg = "The HTTP server returned a redirect error tha [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineBlendOperationAdvancedTests.cpp | 1591 std::ostringstream error; 1592 error << "Unsupported number of color attachments (" << blendProperties.advancedBlendMaxColorAttachments << " < " << m_param.colorAttachmentsCount; 1593 throw tcu::NotSupportedError(error.str().c_str());
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver_nl80211_capa.c | 67 unsigned int error:1; member 840 /* Cleanup allocated memory on error */ in wiphy_info_extended_capab() 1113 info->error = 1; in wpa_driver_nl80211_get_info() 1339 if (info.error) in wpa_driver_nl80211_capa()
|
/kernel/linux/linux-5.10/drivers/edac/ |
H A D | sb_edac.c | 254 * FIXME: Implement the error count reads directly 583 /* Memory controller, TAD tables, error injection - 2-8-0, 2-9-0 (2 of these) */ 1015 * On Ivy Bridge, Haswell and Broadwell the error may be in a 1950 * the error is not inside a memory, except for the legacy in get_memory_error_data() 1952 * memory controller would generate an error on that range. in get_memory_error_data() 2441 * returns 0 in case of success or error code 2532 goto error; in sbridge_mci_bind_devs() 2554 error: in sbridge_mci_bind_devs() 2616 goto error; in ibridge_mci_bind_devs() 2639 error in ibridge_mci_bind_devs() [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | amifb.c | 2397 int error; in amifb_set_par() local 2403 error = ami_decode_var(&info->var, par, info); in amifb_set_par() 2404 if (error) in amifb_set_par() 2405 return error; in amifb_set_par()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/core/ |
H A D | fbcon.c | 791 "detected unhandled fb_set_par error, " in con2fb_release_oldinfo() 792 "error code %d\n", ret); in con2fb_release_oldinfo() 812 "unhandled fb_set_par error, " in con2fb_init_display() 813 "error code %d\n", ret); in con2fb_init_display() 1143 "unhandled fb_set_par error, " in fbcon_init() 1144 "error code %d\n", ret); in fbcon_init() 2148 "unhandled fb_set_par error, " in fbcon_switch() 2149 "error code %d\n", ret); in fbcon_switch() 3309 int i, error = 0; in fbcon_init_device() local 3314 error in fbcon_init_device() [all...] |
/kernel/linux/linux-5.10/net/openvswitch/ |
H A D | flow_netlink.c | 1772 * @log: Boolean to allow kernel error logging. Normally true, but when 1774 * suppress unnecessary error logging. 1916 * @log: Boolean to allow kernel error logging. Normally true, but when 1918 * suppress unnecessary error logging. 3007 int error; in validate_userspace() local 3009 error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, in validate_userspace() 3011 if (error) in validate_userspace() 3012 return error; in validate_userspace()
|
/kernel/linux/linux-5.10/sound/core/oss/ |
H A D | pcm_oss.c | 1641 "OSS sync error - DMA timeout\n"); in snd_pcm_oss_sync1() 1861 goto error; in snd_pcm_oss_get_formats() 1871 error: in snd_pcm_oss_get_formats() 2731 /* it's for sure, some broken apps don't check for error codes */ in snd_pcm_oss_ioctl() 3032 buffer->error = -ENOMEM; in snd_pcm_oss_proc_write() 3046 buffer->error = -ENOMEM; in snd_pcm_oss_proc_write()
|
/kernel/linux/linux-5.10/kernel/ |
H A D | module.c | 320 * Otherwise an error is returned due to ongoing or failed 1816 int error = 0; in module_add_modinfo_attrs() local 1830 error = sysfs_create_file(&mod->mkobj.kobj, in module_add_modinfo_attrs() 1832 if (error) in module_add_modinfo_attrs() 1845 return error; in module_add_modinfo_attrs()
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | extent_io.c | 453 * clear the uptodate bits on error 463 int error = blk_status_to_errno(bio->bi_status); in end_bio_extent_writepage() local 486 btrfs_finish_ordered_extent(bbio->ordered, page, start, len, !error); in end_bio_extent_writepage() 487 if (error) in end_bio_extent_writepage() 488 mapping_set_error(page->mapping, error); in end_bio_extent_writepage() 576 * clear the uptodate bits on error 617 * for unaligned offsets, and an error if they don't add up to in end_bio_extent_readpage() 970 * return 0 on success, otherwise return error 1409 * Return <0 for error. 1526 * error an in set_btree_ioerr() [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | amifb.c | 2397 int error; in amifb_set_par() local 2403 error = ami_decode_var(&info->var, par, info); in amifb_set_par() 2404 if (error) in amifb_set_par() 2405 return error; in amifb_set_par()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/core/ |
H A D | fbcon.c | 770 "detected unhandled fb_set_par error, " in con2fb_release_oldinfo() 771 "error code %d\n", ret); in con2fb_release_oldinfo() 788 "unhandled fb_set_par error, " in con2fb_init_display() 789 "error code %d\n", ret); in con2fb_init_display() 1097 "unhandled fb_set_par error, " in fbcon_init() 1098 "error code %d\n", ret); in fbcon_init() 2118 "unhandled fb_set_par error, " in fbcon_switch() 2119 "error code %d\n", ret); in fbcon_switch() 3303 int i, error = 0; in fbcon_init_device() local 3308 error in fbcon_init_device() [all...] |
/kernel/linux/linux-6.6/drivers/tty/ |
H A D | n_gsm.c | 86 #define MAX_WINDOW_SIZE 7 /* Limit of K in error recovery mode. */ 237 int error; /* Error if any */ member 1329 pr_err("%s: gsm_data_alloc error", __func__); in gsm_dlci_modem_output() 1387 /* on error exit */ in gsm_dlci_data_sweep() 1793 * it wishes to send us an error state from the virtual link. Stuff 1818 /* No error ? */ in gsm_control_rls() 1888 /* Out of band error reception for a DLCI */ in gsm_control_message() 1945 ctrl->error = -EOPNOTSUPP; in gsm_control_response() 2036 ctrl->error = -ETIMEDOUT; in gsm_control_retransmit() 2099 * resources and returns 0 for success, or an error i [all...] |
/kernel/linux/linux-6.6/drivers/firmware/cirrus/ |
H A D | cs_dsp.c | 680 * Return: Zero for success, a negative number on error. 787 * Return: < 0 on error, 1 when the control value changed and 0 when it has not. 862 * Return: Zero for success, a negative number on error. 2256 * Return: Zero for success, a negative number on error. 2275 * Return: Zero for success, a negative number on error. 2526 * Return: Zero for success, a negative number on error. 2569 * Return: Zero for success, a negative number on error. 2685 * Return: Zero for success, a negative number on error. 2819 * Return: Zero for success, a negative number on error. 2857 * Return: Zero for success, a negative number on error [all...] |