/kernel/linux/linux-6.6/tools/testing/selftests/x86/ |
H A D | trivial_32bit_program.c | 8 # error wrong architecture
|
/kernel/liteos_a/arch/arm/include/ |
H A D | los_hw_arch.h | 47 # error "unsupported compiler!"
|
/kernel/liteos_m/arch/risc-v/nuclei/gcc/nmsis/Core/Include/ |
H A D | nmsis_compiler.h | 32 #error Unknown compiler.
|
/third_party/freetype/ |
H A D | ftconfig.h | 11 # error "unexpected value for __WORDSIZE macro"
|
/third_party/node/test/fixtures/b/ |
H A D | d.js | 22 console.error('load fixtures/b/d.js');
|
/third_party/ltp/tools/sparse/sparse-src/validation/preprocessor/ |
H A D | has-feature.c | 9 #error "not a feature!"
|
/third_party/python/Include/internal/ |
H A D | pycore_pyhash.h | 5 # error "this header requires Py_BUILD_CORE define"
|
H A D | pycore_sliceobject.h | 8 # error "this header requires Py_BUILD_CORE define"
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/ |
H A D | NapiSymbols.cpp | 25 # error "NapiSymbols.cpp is not used on Windows"
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | pretty_function.h | 30 #error "Unsupported compiler"
|
/third_party/skia/platform_tools/android/vulkan/ |
H A D | Skia_Vulkan_Android.h | 14 #error "Must be building for android to use this header"
|
/kernel/linux/linux-5.10/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() 968 * return an error value. So returning '0' to keep compability in sg_ioctl_common() 1457 int error; in sg_alloc() local 1470 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT); in sg_alloc() 1471 if (error < 0) { in sg_alloc() 1472 if (error == -ENOSPC) { in sg_alloc() 1476 error = -ENODEV; in sg_alloc() 1480 __func__, error); in sg_alloc() 1520 int error; sg_add_device() local [all...] |
/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...] |
/kernel/linux/linux-5.10/drivers/scsi/ibmvscsi/ |
H A D | ibmvfc.c | 83 u16 error; member 99 { IBMVFC_FABRIC_MAPPED, IBMVFC_CONFIG_ERROR, DID_ERROR, 1, 1, "configuration error" }, 102 { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_GENERAL, DID_OK, 1, 0, "general transport error" }, 117 { IBMVFC_FC_FAILURE, IBMVFC_LOGICAL_ERROR, DID_ERROR, 1, 1, "logical error" }, 120 { IBMVFC_FC_FAILURE, IBMVFC_PROTOCOL_ERROR, DID_ERROR, 1, 1, "protocol error" }, 127 { IBMVFC_FC_SCSI_ERROR, 0, DID_OK, 1, 0, "SCSI error" }, 139 static const char *unknown_error = "unknown error"; 200 entry->u.end.error = be16_to_cpu(vfc_cmd->error); in ibmvfc_trc_end() 222 * @status: status / error clas 228 ibmvfc_get_err_index(u16 status, u16 error) ibmvfc_get_err_index() argument 248 ibmvfc_get_cmd_error(u16 status, u16 error) ibmvfc_get_cmd_error() argument 288 ibmvfc_retry_cmd(u16 status, u16 error) ibmvfc_retry_cmd() argument [all...] |
/kernel/linux/linux-5.10/arch/xtensa/include/asm/ |
H A D | spinlock_types.h | 6 # error "please don't include this file directly"
|
/kernel/linux/linux-5.10/arch/m68k/include/asm/ |
H A D | coldfire.h | 26 #error "Don't know what your ColdFire CPU clock frequency is??"
|
/kernel/linux/linux-5.10/arch/mips/include/asm/ |
H A D | break.h | 13 #error "Error: Do not directly include <uapi/asm/break.h>"
|
/kernel/linux/linux-5.10/arch/arm64/lib/ |
H A D | error-inject.c | 3 #include <linux/error-injection.h>
|
/kernel/linux/linux-5.10/arch/csky/lib/ |
H A D | error-inject.c | 3 #include <linux/error-injection.h>
|