/kernel/linux/linux-5.10/drivers/media/usb/uvc/ |
H A D | uvc_driver.c | 523 "interface %d FORMAT error\n", in uvc_parse_format() 587 "interface %d FORMAT error\n", in uvc_parse_format() 603 "interface %d FORMAT error\n", in uvc_parse_format() 676 "interface %d FRAME error\n", dev->udev->devnum, in uvc_parse_format() 759 "interface %d COLORFORMAT error\n", in uvc_parse_format() 842 goto error; in uvc_parse_streaming() 861 goto error; in uvc_parse_streaming() 871 goto error; in uvc_parse_streaming() 891 goto error; in uvc_parse_streaming() 948 goto error; in uvc_parse_streaming() [all...] |
/kernel/linux/linux-6.6/drivers/mmc/host/ |
H A D | mmci.c | 723 /* Stop any ongoing busy detection if an error occurs */ in ux500_busy_complete() 949 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n"); in mmci_dmae_error() 980 * contiguous buffers. On TX, we'll get a FIFO underrun error. in mmci_dmae_finalize() 984 if (!data->error) in mmci_dmae_finalize() 985 data->error = -EIO; in mmci_dmae_finalize() 1378 host->stop_abort.error = 0; in mmci_stop_command() 1422 data->error = -EILSEQ; in mmci_data_irq() 1424 data->error = -ETIMEDOUT; in mmci_data_irq() 1426 data->error = -ECOMM; in mmci_data_irq() 1428 data->error in mmci_data_irq() [all...] |
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | sg.c | 314 * during error recovery. Tread carefully. */ in sg_open() 318 /* we are in error recovery for this device */ in sg_open() 367 sdp->exclude = false; /* undo if error */ in sg_open() 970 * return an error value. So returning '0' to keep compability in sg_ioctl_common() 1437 int error; in sg_alloc() local 1450 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT); in sg_alloc() 1451 if (error < 0) { in sg_alloc() 1452 if (error == -ENOSPC) { in sg_alloc() 1456 error = -ENODEV; in sg_alloc() 1460 __func__, error); in sg_alloc() 1497 int error; sg_add_device() local [all...] |
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm.c | 880 * io->status is updated with error if requeue disallowed. 1041 static void dm_io_set_error(struct dm_io *io, blk_status_t error) in dm_io_set_error() argument 1049 io->status = error; in dm_io_set_error() 1054 static void dm_io_dec_pending(struct dm_io *io, blk_status_t error) in dm_io_dec_pending() argument 1056 if (unlikely(error)) in dm_io_dec_pending() 1057 dm_io_set_error(io, error); in dm_io_dec_pending() 1094 blk_status_t error = bio->bi_status; in clone_endio() local 1101 if (unlikely(error == BLK_STS_TARGET)) { in clone_endio() 1115 int r = endio(ti, bio, &error); in clone_endio() 1126 error in clone_endio() 1759 blk_status_t error = BLK_STS_OK; dm_split_and_process_bio() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_configparser.py | 549 error = configparser.ParsingError 552 error = configparser.MissingSectionHeaderError 556 e = self.parse_error(cf, error, f) 1598 error = configparser.DuplicateOptionError('section', 'option') 1599 self.assertEqual(error.section, 'section') 1600 self.assertEqual(error.option, 'option') 1601 self.assertEqual(error.source, None) 1602 self.assertEqual(error.lineno, None) 1603 self.assertEqual(error.args, ('section', 'option', None, None)) 1604 self.assertEqual(str(error), "Optio [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | VirtualFileSystem.cpp | 1155 void error(yaml::Node *N, const Twine &Msg) { Stream.printError(N, Msg); } in error() function in llvm::vfs::RedirectingFileSystemParser 1157 // false on error 1163 error(N, "expected string"); in parseScalarString() 1170 // false on error 1187 error(N, "expected boolean value"); in parseScalarBool() 1200 // false on error 1204 error(KeyNode, "unknown key"); in checkDuplicateOrUnknownKey() 1209 error(KeyNode, Twine("duplicate key '") + Key + "'"); in checkDuplicateOrUnknownKey() 1216 // false on error 1220 error(Ob in checkMissingKeys() [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fTextureMultisampleTests.cpp | 951 bool error = false; 972 error = true; 978 error = true; 983 if (error) 1579 bool error = false; 1593 error = true; 1596 if (error) 1770 glw::GLenum error; 1774 error = gl.glGetError(); 1776 if (error ! [all...] |
/base/customization/enterprise_device_management/interfaces/kits/bundle_manager/src/ |
H A D | bundle_manager_addon.cpp | 143 ASSERT_AND_THROW_PARAM_ERROR(env, argc >= ARGS_SIZE_TWO, "Parameter count error"); in Install() 187 napi_value error = nullptr; in NativeUninstallCallbackComplete() local 191 napi_get_null(env, &error); in NativeUninstallCallbackComplete() 192 napi_resolve_deferred(env, asyncCallbackInfo->deferred, error); in NativeUninstallCallbackComplete() 203 napi_get_null(env, &error); in NativeUninstallCallbackComplete() 206 error = CreateError(env, asyncCallbackInfo->ret, asyncCallbackInfo->errMessage); in NativeUninstallCallbackComplete() 208 error = CreateError(env, asyncCallbackInfo->ret); in NativeUninstallCallbackComplete() 214 napi_call_function(env, nullptr, callback, ARGS_SIZE_ONE, &error, &result); in NativeUninstallCallbackComplete() 224 ASSERT_AND_THROW_PARAM_ERROR(env, argc >= ARGS_SIZE_TWO, "Parameter count error"); in CheckAndParseUninstallParamType() 226 "Parameter want error"); in CheckAndParseUninstallParamType() [all...] |
/base/request/request/services/src/task/ |
H A D | request_task.rs | 31 use crate::error::ErrorCode; 288 error!("url percent encoding error is {:?}", e); 426 error!("convert string to i64 error: {:?}", e); 430 error!("cannot get content-length of the task"); 443 error!("Task {} {:?}", self.task_id(), err); 472 error!("bad status_message {:?}", status_code); 639 error!("File path invalid - path: {}, idx: {}", path, idx); in check_file_specs()
|
/foundation/ability/form_fwk/frameworks/js/napi/formUtil/ |
H A D | napi_form_util.cpp | 92 { ERR_COMMON, "internal error" }, 120 napi_value error = CreateJsError(env, errCode, errMessage); in Throw() local 121 napi_throw(env, error); in Throw() 160 std::string errorMessage = "Parameter error. Got " + gotNum + ", expected " + expectedNum; in ThrowParamNumError() 166 std::string errorMessage = "Parameter error. " + extraMessage; in ThrowParamError() 172 std::string errorMessage = "Parameter error."; in CreateParamTypeErrorMessage() 174 // Parameter error. in CreateParamTypeErrorMessage() 180 // Parameter error. The type of "paramName" is invalid. in CreateParamTypeErrorMessage() 184 // Parameter error. The type of "${paramName}" must be ${type}. in CreateParamTypeErrorMessage() 189 * @brief query the error messag 308 napi_value error = nullptr; InnerCreateCallbackRetMsg() local [all...] |
/kernel/linux/linux-5.10/drivers/block/rnbd/ |
H A D | rnbd-srv.c | 87 void rnbd_endio(void *priv, int error) in rnbd_endio() argument 94 rtrs_srv_resp_rdma(rnbd_priv->id, error); in rnbd_endio() 406 int error; in rnbd_sess_dev_alloc() local 412 error = xa_alloc(&srv_sess->index_idr, &sess_dev->device_id, sess_dev, in rnbd_sess_dev_alloc() 414 if (error < 0) { in rnbd_sess_dev_alloc() 415 pr_warn("Allocating idr failed, err: %d\n", error); in rnbd_sess_dev_alloc() 417 return ERR_PTR(error); in rnbd_sess_dev_alloc()
|
/kernel/linux/linux-5.10/drivers/base/ |
H A D | node.c | 631 int error; in register_node() local 637 error = device_register(&node->dev); in register_node() 639 if (error) in register_node() 646 return error; in register_node() 956 int error; in __register_one_node() local 963 error = register_node(node_devices[nid], nid); in __register_one_node() 976 return error; in __register_one_node()
|
/kernel/linux/linux-5.10/arch/mips/txx9/generic/ |
H A D | setup.c | 529 int error; in txx9_clk_init() local 533 error = PTR_ERR(hw); in txx9_clk_init() 538 error = clk_hw_register_clkdev(hw, "imbus_clk", NULL); in txx9_clk_init() 539 if (error) in txx9_clk_init() 545 error = clk_hw_register_clkdev(hw, "spi-baseclk", NULL); in txx9_clk_init() 546 if (error) in txx9_clk_init() 554 pr_err("Failed to register clocks: %d\n", error); in txx9_clk_init()
|
/kernel/linux/linux-5.10/drivers/clk/ |
H A D | clk-cdce925.c | 432 * and pick the better one if the error is equal */ in cdce925_clk_best_parent_rate() 710 goto error; in cdce925_probe() 719 goto error; in cdce925_probe() 755 goto error; in cdce925_probe() 765 goto error; in cdce925_probe() 777 goto error; in cdce925_probe() 809 goto error; in cdce925_probe() 821 error: in cdce925_probe()
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
H A D | tda10048.c | 223 printk("%s: writereg error (ret == %i)\n", __func__, ret); in tda10048_writereg() 245 printk(KERN_ERR "%s: readreg error (ret == %i)\n", in tda10048_readreg() 264 goto error; in tda10048_writeregbulk() 280 printk(KERN_ERR "%s(): writereg error err %i\n", in tda10048_writeregbulk() 285 error: in tda10048_writeregbulk() 1093 goto error; in tda10048_attach() 1103 goto error; in tda10048_attach() 1126 goto error; in tda10048_attach() 1130 goto error; in tda10048_attach() 1137 error in tda10048_attach() [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/omap3isp/ |
H A D | ispccp2.c | 330 /* Enable error IRQs for logical channel #0 */ in ccp2_lcx_config() 346 * Return 0 on success or a negative error code 585 pipe->error = true; in omap3isp_ccp2_isr() 591 pipe->error = true; in omap3isp_ccp2_isr() 618 * return format structure or NULL on error 952 * return -EINVAL on error or zero on success 1025 * return negative error code or zero on success 1037 goto error; in omap3isp_ccp2_register_entities() 1041 goto error; in omap3isp_ccp2_register_entities() 1045 error in omap3isp_ccp2_register_entities() [all...] |
/kernel/linux/linux-5.10/drivers/mmc/host/ |
H A D | pxamci.c | 299 cmd->error = -ETIMEDOUT; in pxamci_cmd_done() 304 * A bogus CRC error can appear if the msb of a 136 bit in pxamci_cmd_done() 311 cmd->error = -EILSEQ; in pxamci_cmd_done() 315 if (host->data && !cmd->error) { in pxamci_cmd_done() 346 data->error = -ETIMEDOUT; in pxamci_data_done() 348 data->error = -EILSEQ; in pxamci_data_done() 353 * This means that if there was an error on any block, we mark all in pxamci_data_done() 354 * data blocks as being in error. in pxamci_data_done() 356 if (!data->error) in pxamci_data_done() 492 * power should be rare so we print an error an in pxamci_set_ios() [all...] |
H A D | mxs-mmc.c | 150 * If there was an error on any block, we mark all in mxs_mmc_request_done() 151 * data blocks as being in error. in mxs_mmc_request_done() 153 if (!data->error) in mxs_mmc_request_done() 159 if (data->stop && (data->error || !mrq->sbc)) { in mxs_mmc_request_done() 196 cmd->error = -ETIMEDOUT; in mxs_mmc_irq_handler() 198 cmd->error = -EIO; in mxs_mmc_irq_handler() 203 data->error = -ETIMEDOUT; in mxs_mmc_irq_handler() 205 data->error = -EILSEQ; in mxs_mmc_irq_handler() 208 data->error = -EIO; in mxs_mmc_irq_handler()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb/ |
H A D | subr.c | 1063 goto error; in t1_init_sw_modules() 1069 goto error; in t1_init_sw_modules() 1076 goto error; in t1_init_sw_modules() 1096 goto error; in t1_init_sw_modules() 1103 goto error; in t1_init_sw_modules() 1115 goto error; in t1_init_sw_modules() 1125 error: in t1_init_sw_modules()
|
/kernel/linux/linux-5.10/sound/usb/line6/ |
H A D | driver.c | 179 goto error; in line6_send_raw_message_async_part() 183 goto error; in line6_send_raw_message_async_part() 187 error: in line6_send_raw_message_async_part() 353 dev_err(line6->ifcdev, "read request failed (error %d)\n", ret); in line6_read_data() 367 "receive length failed (error %d)\n", ret); in line6_read_data() 394 dev_err(line6->ifcdev, "read failed (error %d)\n", ret); in line6_read_data() 425 "write request failed (error %d)\n", ret); in line6_write_data() 438 "receiving status failed (error %d)\n", ret); in line6_write_data() 451 dev_err(line6->ifcdev, "write failed (error %d)\n", ret); in line6_write_data() 791 goto error; in line6_probe() [all...] |
/kernel/linux/linux-5.10/fs/jffs2/ |
H A D | debug.c | 325 goto error; in __jffs2_dbg_acct_paranoia_check_nolock() 339 goto error; in __jffs2_dbg_acct_paranoia_check_nolock() 347 goto error; in __jffs2_dbg_acct_paranoia_check_nolock() 353 goto error; in __jffs2_dbg_acct_paranoia_check_nolock() 361 goto error; in __jffs2_dbg_acct_paranoia_check_nolock() 369 goto error; in __jffs2_dbg_acct_paranoia_check_nolock() 378 error: in __jffs2_dbg_acct_paranoia_check_nolock()
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | dev-replace.c | 269 goto error; in btrfs_init_dev_replace_tgtdev() 279 goto error; in btrfs_init_dev_replace_tgtdev() 286 goto error; in btrfs_init_dev_replace_tgtdev() 293 goto error; in btrfs_init_dev_replace_tgtdev() 325 error: in btrfs_init_dev_replace_tgtdev() 365 "error %d while searching for dev_replace item!", in btrfs_run_dev_replace() 760 goto error; in btrfs_dev_replace_finishing() 771 error: in btrfs_dev_replace_finishing()
|
H A D | space-info.c | 69 * wait on ticket->wait for ->bytes to be reduced to 0, or ->error to be set 85 * on, if not return the appropriate error (ENOSPC, but can be EINTR if we 902 ticket->error = -ENOSPC; in maybe_fail_all_tickets() 1192 while (ticket->bytes > 0 && ticket->error == 0) { in wait_reserve_ticket() 1200 * despite getting an error, resulting in a space leak in wait_reserve_ticket() 1204 ticket->error = -EINTR; in wait_reserve_ticket() 1225 * the reservation, and returning the appropriate error if there is one. 1259 ret = ticket->error; in handle_reserve_ticket() 1260 if (ticket->bytes || ticket->error) { in handle_reserve_ticket() 1279 * Check that we can't have an error se in handle_reserve_ticket() [all...] |
/kernel/linux/linux-5.10/fs/afs/ |
H A D | cell.c | 191 goto error; in afs_alloc_cell() 212 error: in afs_alloc_cell() 225 * @excl: T if an error should be given if the cell name already exists. 301 state = smp_load_acquire(&cell->state); /* vs error */ in afs_lookup_cell() 307 ret = cell->error; in afs_lookup_cell() 308 goto error; in afs_lookup_cell() 329 error: in afs_lookup_cell() 332 _leave(" = %d [error]", ret); in afs_lookup_cell() 788 cell->error = ret; in afs_manage_cell() 814 cell->error in afs_manage_cell() [all...] |
/kernel/linux/linux-5.10/fs/ |
H A D | seq_file.c | 50 * into the buffer. In case of error ->start() and ->next() return 51 * ERR_PTR(error). In the end of sequence they return %NULL. ->show() 52 * returns 0 in case of success and negative number in case of error. 93 int error = 0; in traverse() local 108 error = PTR_ERR(p); in traverse() 111 error = m->op->show(m, p); in traverse() 112 if (error < 0) in traverse() 114 if (unlikely(error)) { in traverse() 115 error = 0; in traverse() 132 return error; in traverse() [all...] |