/lib/ |
D | decompress_unlz4.c | 35 void (*error) (char *x)) in unlz4() 53 error("NULL output pointer and no flush function provided"); in unlz4() 58 error("Could not allocate output buffer"); in unlz4() 64 error("Both input pointer and fill function provided,"); in unlz4() 69 error("NULL input pointer and missing fill function"); in unlz4() 74 error("Could not allocate input buffer"); in unlz4() 86 error("data corrupted"); in unlz4() 98 error("invalid header"); in unlz4() 112 error("data corrupted"); in unlz4() 137 error("chunk length is longer than allocated"); in unlz4() [all …]
|
D | decompress_inflate.c | 43 void(*error)(char *x)) { in __gunzip() 57 error("Out of memory while allocating output buffer"); in __gunzip() 68 error("Out of memory while allocating input buffer"); in __gunzip() 74 error("Out of memory while allocating z_stream"); in __gunzip() 81 error("Out of memory while allocating workspace"); in __gunzip() 96 error("Not a gzip file"); in __gunzip() 114 error("header error"); in __gunzip() 137 error("read error"); in __gunzip() 150 error("write error"); in __gunzip() 162 error("uncompression error"); in __gunzip() [all …]
|
D | decompress_unlzo.c | 102 void (*error) (char *x)) in unlzo() 114 error("NULL output pointer and no flush function provided"); in unlzo() 119 error("Could not allocate output buffer"); in unlzo() 125 error("Both input pointer and fill function provided, don't know what to do"); in unlzo() 130 error("NULL input pointer and missing fill function"); in unlzo() 135 error("Could not allocate input buffer"); in unlzo() 156 error("invalid header"); in unlzo() 179 error("file corrupted"); in unlzo() 194 error("dest len longer than block size"); in unlzo() 205 error("file corrupted"); in unlzo() [all …]
|
D | kobject.c | 70 int error = 0; in populate_dir() local 75 error = sysfs_create_file(kobj, attr); in populate_dir() 76 if (error) in populate_dir() 80 return error; in populate_dir() 87 int error; in create_dir() local 89 error = sysfs_create_dir_ns(kobj, kobject_namespace(kobj)); in create_dir() 90 if (error) in create_dir() 91 return error; in create_dir() 93 error = populate_dir(kobj); in create_dir() 94 if (error) { in create_dir() [all …]
|
D | asn1_decoder.c | 125 goto error; in asn1_find_indefinite_length() 128 goto error; in asn1_find_indefinite_length() 131 goto error; in asn1_find_indefinite_length() 134 goto error; in asn1_find_indefinite_length() 137 error: in asn1_find_indefinite_length() 334 goto error; in asn1_ber_decoder() 478 goto error; in asn1_ber_decoder() 481 goto error; in asn1_ber_decoder() 484 goto error; in asn1_ber_decoder() 487 goto error; in asn1_ber_decoder() [all …]
|
D | stmp_device.c | 46 goto error; in stmp_reset_block() 59 goto error; in stmp_reset_block() 64 goto error; in stmp_reset_block() 69 goto error; in stmp_reset_block() 73 error: in stmp_reset_block()
|
D | decompress_unxz.c | 255 void (*error)(char *x)) in unxz() 357 error("XZ decompressor ran out of memory"); in unxz() 361 error("Input is not in the XZ format (wrong magic bytes)"); in unxz() 365 error("Input was encoded with settings that are not " in unxz() 371 error("XZ-compressed data is corrupt"); in unxz() 375 error("Bug in the XZ decompressor"); in unxz() 389 error("XZ decompressor ran out of memory"); in unxz() 403 void (*error)(char *x)) in __decompress() 405 return unxz(buf, len, fill, flush, out_buf, pos, error); in __decompress()
|
D | inflate.c | 250 error("Malloc error"); in malloc() 260 error("Out of memory"); in malloc() 982 error("incomplete literal tree"); in inflate_dynamic() 994 error("incomplete distance tree"); in inflate_dynamic() 1209 error("bad gzip magic numbers"); in gunzip() 1215 error("internal error, invalid method"); in gunzip() 1221 error("Input is encrypted"); in gunzip() 1225 error("Multi part input"); in gunzip() 1229 error("Input has invalid flags"); in gunzip() 1263 error("invalid compressed format (err=1)"); in gunzip() [all …]
|
D | crc32defs.h | 49 # error "CRC_LE_BITS must be one of {1, 2, 4, 8, 32, 64}" 58 # error "CRC_BE_BITS must be one of {1, 2, 4, 8, 32, 64}"
|
D | decompress_unlzma.c | 76 void (*error)(char *); member 95 rc->error("unexpected EOF"); in rc_read() 542 void(*error)(char *x) in unlzma() 558 rc.error = error; in unlzma() 565 error("Could not allocate input buffer"); in unlzma() 587 error("bad header"); in unlzma() 638 error("LZMA data is corrupt"); in unlzma() 643 error("LZMA data is corrupt"); in unlzma() 675 void (*error)(char *x)) in __decompress() 677 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
|
D | radix-tree.c | 622 int error = radix_tree_extend(root, gfp, max, shift); in __radix_tree_create() local 623 if (error < 0) in __radix_tree_create() 624 return error; in __radix_tree_create() 625 shift = error; in __radix_tree_create() 717 int error; in radix_tree_insert() local 721 error = __radix_tree_create(root, index, &node, &slot); in radix_tree_insert() 722 if (error) in radix_tree_insert() 723 return error; in radix_tree_insert() 725 error = insert_entries(node, slot, item, false); in radix_tree_insert() 726 if (error < 0) in radix_tree_insert() [all …]
|
D | decompress_bunzip2.c | 684 void(*error)(char *x)) in bunzip2() 694 error("Could not allocate output buffer"); in bunzip2() 702 error("Could not allocate input buffer"); in bunzip2() 724 error("Data integrity error when decompressing."); in bunzip2() 728 error("Compressed file ends unexpectedly"); in bunzip2() 752 void (*error)(char *x)) in __decompress() 754 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); in __decompress()
|
D | notifier-error-inject.c | 37 err = action->error; in notifier_err_inject_callback() 75 debugfs_create_errno("error", mode, action_dir, &action->error); in notifier_err_inject_init()
|
D | Makefile | 171 obj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 172 obj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 173 obj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 174 obj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 176 of-reconfig-notifier-error-inject.o 177 obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
|
D | notifier-error-inject.h | 8 int error; member
|
D | sg_pool.c | 19 #error SG_CHUNK_SIZE is too small (must be 32 or greater) 31 #error SG_CHUNK_SIZE is too large (256 MAX)
|
D | random32.c | 427 bool error = false; in prandom_state_selftest() local 436 error = true; in prandom_state_selftest() 439 if (error) in prandom_state_selftest()
|
D | clz_ctz.c | 62 #error BITS_PER_LONG not 32 or 64
|
D | Kconfig.debug | 696 tristate "Memory hotplug notifier error injection module" 701 debugfs interface under /sys/kernel/debug/notifier-error-inject/memory 704 notified, write the error code to "actions/<notifier event>/error". 706 Example: Inject memory hotplug offline error (-12 == -ENOMEM) 708 # cd /sys/kernel/debug/notifier-error-inject/memory 709 # echo -12 > actions/MEM_GOING_OFFLINE/error 711 bash: echo: write error: Cannot allocate memory 714 be called memory-notifier-error-inject. 733 This option enables additional error checking for high memory 1464 tristate "Notifier error injection" [all …]
|
/lib/zstd/ |
D | zstd_common.c | 41 ZSTD_customMem error = {NULL, NULL, NULL}; in ZSTD_initStack() local 42 return error; in ZSTD_initStack()
|
/lib/mpi/ |
D | mpicoder.c | 152 #error please implement for this limb size. in mpi_read_buffer() 181 #error please implement for this limb size. in mpi_read_buffer() 256 #error please implement for this limb size. in mpi_write_to_sgl() 298 #error please implement for this limb size. in mpi_write_to_sgl()
|
/lib/lzo/ |
D | lzo1x_compress.c | 76 # error "missing endian definition" in lzo1x_1_do_compress() 95 # error "missing endian definition" in lzo1x_1_do_compress() 184 # error "missing endian definition" in lzo1x_1_do_compress() 209 # error "missing endian definition" in lzo1x_1_do_compress()
|
D | lzodefs.h | 33 #error "conflicting endian definitions"
|
/lib/vdso/ |
D | Makefile | 16 $(error ARCH_REL_TYPE_ABS is not set)
|
/lib/fonts/ |
D | fonts.c | 65 #error No fonts configured.
|