| /lib/lwip/lwip/src/include/lwip/ |
| A D | debug.h | 143 #define LWIP_DEBUG_ENABLED(debug) (((debug) & LWIP_DBG_ON) && \ argument 144 ((debug) & LWIP_DBG_TYPES_ON) && \ 145 ((s16_t)((debug) & LWIP_DBG_MASK_LEVEL) >= LWIP_DBG_MIN_LEVEL)) 147 #define LWIP_DEBUGF(debug, message) do { \ argument 148 if (LWIP_DEBUG_ENABLED(debug)) { \ 150 if ((debug) & LWIP_DBG_HALT) { \ 157 #define LWIP_DEBUG_ENABLED(debug) 0 argument 158 #define LWIP_DEBUGF(debug, message) argument
|
| A D | ip_addr.h | 257 #define ip_addr_debug_print(debug, ipaddr) do { if(IP_IS_V6(ipaddr)) { \ argument 258 ip6_addr_debug_print(debug, ip_2_ip6(ipaddr)); } else { \ 259 ip4_addr_debug_print(debug, ip_2_ip4(ipaddr)); }}while(0) 260 #define ip_addr_debug_print_val(debug, ipaddr) do { if(IP_IS_V6_VAL(ipaddr)) { \ argument 261 ip6_addr_debug_print_val(debug, *ip_2_ip6(&(ipaddr))); } else { \ 262 ip4_addr_debug_print_val(debug, *ip_2_ip4(&(ipaddr))); }}while(0) 332 #define ip_addr_debug_print(debug, ipaddr) ip4_addr_debug_print(debug, ipaddr) argument 333 #define ip_addr_debug_print_val(debug, ipaddr) ip4_addr_debug_print_val(debug, ipaddr) argument 383 #define ip_addr_debug_print(debug, ipaddr) ip6_addr_debug_print(debug, ipaddr) argument 384 #define ip_addr_debug_print_val(debug, ipaddr) ip6_addr_debug_print_val(debug, ipaddr) argument
|
| A D | ip4_addr.h | 169 #define ip4_addr_debug_print_parts(debug, a, b, c, d) \ argument 170 LWIP_DEBUGF(debug, ("%" U16_F ".%" U16_F ".%" U16_F ".%" U16_F, a, b, c, d)) 171 #define ip4_addr_debug_print(debug, ipaddr) \ argument 172 ip4_addr_debug_print_parts(debug, \ 177 #define ip4_addr_debug_print_val(debug, ipaddr) \ argument 178 ip4_addr_debug_print_parts(debug, \
|
| A D | ip6_addr.h | 333 #define ip6_addr_debug_print_parts(debug, a, b, c, d, e, f, g, h) \ argument 334 …LWIP_DEBUGF(debug, ("%" X16_F ":%" X16_F ":%" X16_F ":%" X16_F ":%" X16_F ":%" X16_F ":%" X16_F ":… 336 #define ip6_addr_debug_print(debug, ipaddr) \ argument 337 ip6_addr_debug_print_parts(debug, \ 346 #define ip6_addr_debug_print_val(debug, ipaddr) \ argument 347 ip6_addr_debug_print_parts(debug, \
|
| /lib/lzma/ |
| A D | LzmaTools.c | 53 debug ("LZMA: Image address............... 0x%p\n", inStream); in lzmaBuffToBuffDecompress() 54 debug ("LZMA: Properties address.......... 0x%p\n", inStream + LZMA_PROPERTIES_OFFSET); in lzmaBuffToBuffDecompress() 55 debug ("LZMA: Uncompressed size address... 0x%p\n", inStream + LZMA_SIZE_OFFSET); in lzmaBuffToBuffDecompress() 56 debug ("LZMA: Compressed data address..... 0x%p\n", inStream + LZMA_DATA_OFFSET); in lzmaBuffToBuffDecompress() 57 debug ("LZMA: Destination address......... 0x%p\n", outStream); in lzmaBuffToBuffDecompress() 88 debug ("LZMA: 64bit support not enabled.\n"); in lzmaBuffToBuffDecompress() 93 debug("LZMA: Uncompresed size............ 0x%zx\n", outSizeFull); in lzmaBuffToBuffDecompress() 94 debug("LZMA: Compresed size.............. 0x%zx\n", compressedSize); in lzmaBuffToBuffDecompress() 114 debug("LZMA: Uncompressed ............... 0x%zx\n", outProcessed); in lzmaBuffToBuffDecompress()
|
| /lib/ |
| A D | fdtdec.c | 139 debug("(not found)\n"); in fdtdec_get_addr_size_fixed() 178 debug("%s: ", __func__); in fdtdec_get_addr_size_auto_parent() 182 debug("(bad #address-cells)\n"); in fdtdec_get_addr_size_auto_parent() 188 debug("(bad #size-cells)\n"); in fdtdec_get_addr_size_auto_parent() 192 debug("na=%d, ns=%d, ", na, ns); in fdtdec_get_addr_size_auto_parent() 205 debug("%s: ", __func__); in fdtdec_get_addr_size_auto_noparent() 209 debug("(no parent found)\n"); in fdtdec_get_addr_size_auto_noparent() 554 debug("Found seq %d\n", *seqp); in fdtdec_get_alias_seq() 559 debug("Not found\n"); in fdtdec_get_alias_seq() 588 debug("Found seq %d\n", val); in fdtdec_get_alias_highest_id() [all …]
|
| A D | fdtdec_common.c | 18 #define debug(...) macro 27 debug("%s: %s: ", __func__, prop_name); in fdtdec_get_int() 32 debug("%#x (%d)\n", val, val); in fdtdec_get_int() 35 debug("(not found)\n"); in fdtdec_get_int() 45 debug("%s: %s: ", __func__, prop_name); in fdtdec_get_uint() 50 debug("%#x (%d)\n", val, val); in fdtdec_get_uint() 53 debug("(not found)\n"); in fdtdec_get_uint()
|
| A D | image-sparse.c | 145 debug("=== Sparse Image Header ===\n"); in write_sparse_image() 146 debug("magic: 0x%x\n", sparse_header->magic); in write_sparse_image() 149 debug("file_hdr_sz: %d\n", sparse_header->file_hdr_sz); in write_sparse_image() 150 debug("chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz); in write_sparse_image() 151 debug("blk_sz: %d\n", sparse_header->blk_sz); in write_sparse_image() 152 debug("total_blks: %d\n", sparse_header->total_blks); in write_sparse_image() 153 debug("total_chunks: %d\n", sparse_header->total_chunks); in write_sparse_image() 177 debug("=== Chunk Header ===\n"); in write_sparse_image() 178 debug("chunk_type: 0x%x\n", chunk_header->chunk_type); in write_sparse_image() 180 debug("total_size: 0x%x\n", chunk_header->total_sz); in write_sparse_image() [all …]
|
| A D | of_live.c | 119 debug("%s: p: %d, l: %d, a: %d\n", in unflatten_dt_node() 270 debug(" -> unflatten_device_tree()\n"); in unflatten_device_tree() 273 debug("No device tree pointer\n"); in unflatten_device_tree() 277 debug("Unflattening device tree:\n"); in unflatten_device_tree() 278 debug("magic: %08x\n", fdt_magic(blob)); in unflatten_device_tree() 279 debug("size: %08x\n", fdt_totalsize(blob)); in unflatten_device_tree() 280 debug("version: %08x\n", fdt_version(blob)); in unflatten_device_tree() 306 debug(" unflattening %p...\n", mem); in unflatten_device_tree() 317 debug(" <- unflatten_device_tree()\n"); in unflatten_device_tree() 327 debug("%s: start\n", __func__); in of_live_build() [all …]
|
| A D | hashtable.c | 25 # ifndef debug 27 # define debug(fmt,args...) printf(fmt ,##args) macro 29 # define debug(fmt,args...) macro 432 debug("callback() rejected setting variable " in hsearch_r() 464 debug("hdelete: DELETING key \"%s\"\n", key); in _hdelete() 478 debug("hdelete: DELETE key \"%s\"\n", key); in hdelete_r() 500 debug("callback() rejected deleting variable " in hdelete_r() 873 debug("Create Hash Table: N=%d\n", nent); in himport_r() 925 debug("DELETE CANDIDATE: \"%s\"\n", name); in himport_r() 973 debug("INSERT: free(data = %p)\n", data); in himport_r() [all …]
|
| A D | semihosting.c | 71 debug("%s: file \'%s\', mode \'%u\'\n", __func__, fname, mode); in smh_open() 101 debug("%s: fd %ld, memp %p, len %zu\n", __func__, fd, memp, len); in smh_read() 118 debug("%s: fd %ld, memp %p, len %zu\n", __func__, fd, memp, len); in smh_write() 135 debug("%s: fd %ld\n", __func__, fd); in smh_close() 147 debug("%s: fd %ld\n", __func__, fd); in smh_flen() 163 debug("%s: fd %ld pos %ld\n", __func__, fd, pos); in smh_seek()
|
| A D | membuf.c | 141 debug("getraw: maxlen=%d, update=%d, head=%d, tail=%d, data=%d, len=%d", in membuf_getraw() 237 debug("makecontig: head=%d, tail=%d, size=%d", in membuf_makecontig() 261 debug(" - memmove(%d, %d, %d)", topsize, 0, botsize); in membuf_makecontig() 271 debug(" - memcpy(%d, %d, %d)", 0, (int)(mb->tail - mb->start), topsize); in membuf_makecontig() 277 debug(" - head=%d, tail=%d", (int)(mb->head - mb->start), in membuf_makecontig()
|
| A D | elf.c | 97 debug("Loading phdr %i to 0x%p (%lu bytes)\n", in load_elf64_image_phdr() 151 debug("%sing %s @ 0x%08lx (%ld bytes)\n", in load_elf64_image_shdr() 215 debug("Loading phdr %i to 0x%p (%i bytes)\n", in load_elf_image_phdr() 259 debug("%sing %s @ 0x%08lx (%ld bytes)\n", in load_elf_image_shdr()
|
| A D | tpm-common.c | 53 debug("Couldn't recognize format string\n"); in pack_byte_string() 116 debug("Couldn't recognize format string\n"); in unpack_byte_string()
|
| /lib/rsa/ |
| A D | rsa-verify.c | 72 debug("In RSAVerify(): Padding check failed!\n"); in padding_pkcs_15_verify() 78 debug("In RSAVerify(): Hash check failed!\n"); in padding_pkcs_15_verify() 133 debug("%s: can't allocate array tmp\n", __func__); in mask_generation_function1() 345 debug("Checksum algorithm: %s\n", checksum->name); in rsa_verify_key() 369 debug("Error in Modular exponentation\n"); in rsa_verify_key() 375 debug("In RSAVerify(): padding check failed!\n"); in rsa_verify_key() 447 debug("%s: Skipping invalid node\n", __func__); in rsa_verify_with_keynode() 453 debug("%s: Missing 'algo' property\n", __func__); in rsa_verify_with_keynode() 478 debug("%s: Missing RSA key info\n", __func__); in rsa_verify_with_keynode() 523 debug("%s: No signature node found\n", __func__); in rsa_verify_hash() [all …]
|
| A D | rsa-mod-exp.c | 190 debug("RSA key words %u exceeds maximum %d\n", key->len, in pow_mod() 207 debug("Public exponent is too short (%d bits, minimum 2)\n", in pow_mod() 213 debug("LSB of RSA public exponent must be set.\n"); in pow_mod() 264 debug("%s: Skipping invalid prop", __func__); in rsa_mod_exp_sw() 276 debug("%s: Missing RSA key info", __func__); in rsa_mod_exp_sw() 282 debug("RSA key bits %u outside allowed range %d..%d\n", in rsa_mod_exp_sw() 294 debug("%s: Out of memory", __func__); in rsa_mod_exp_sw() 334 debug("RSA key words %u exceeds maximum %d\n", key->len, in zynq_pow_mod()
|
| /lib/mbedtls/external/mbedtls/tests/scripts/ |
| A D | check_names.py | 232 self.log.debug( 286 self.log.debug("Found:") 289 self.log.debug(" {:4} Total {} Macros" 291 self.log.debug(" {:4} {} Non-identifier Macros" 293 self.log.debug(" {:4} Enum Constants".format(len(enum_consts))) 294 self.log.debug(" {:4} Identifiers".format(len(identifiers))) 295 self.log.debug(" {:4} Exported Symbols".format(len(symbols))) 383 self.log.debug("Looking for macros in {} files".format(len(files))) 418 self.log.debug( 650 self.log.debug("Looking for included identifiers in {} files".format \ [all …]
|
| /lib/mbedtls/external/mbedtls/scripts/ |
| A D | abi_check.py | 162 self.log.debug( 173 self.log.debug(fetch_output.decode("utf-8")) 176 self.log.debug("Checking out git worktree for revision {}".format( 186 self.log.debug(worktree_output.decode("utf-8")) 192 self.log.debug("Commit is {}".format(version.commit)) 204 self.log.debug(update_output.decode("utf-8")) 216 self.log.debug(fetch_output.decode("utf-8")) 226 self.log.debug(checkout_output.decode("utf-8")) 241 self.log.debug(make_output.decode("utf-8")) 275 self.log.debug(abi_dump_output.decode("utf-8")) [all …]
|
| A D | code_size_compare.py | 309 self.logger.debug("Using current work directory.") 312 self.logger.debug("Creating git worktree for {}." 337 self.logger.debug("Building library/*.o for {}." 367 self.logger.debug("Measuring code size for {} by `{}`." 387 self.logger.debug("Removing temporary worktree {}." 796 self.logger.debug("Code size csv file for {} already exists." 804 self.logger.debug("Generating code size csv for {}." 835 self.logger.debug("Generating comparison results between {} and {}."
|
| /lib/optee/ |
| A D | optee.c | 90 debug("missing OP-TEE compatible property"); in optee_copy_firmware_node() 101 debug("missing OP-TEE method property"); in optee_copy_firmware_node() 124 debug("No OP-TEE firmware node in old fdt, nothing to do"); in optee_copy_fdt_nodes() 134 debug("OP-TEE Device Tree node already exists in target"); in optee_copy_fdt_nodes()
|
| /lib/ecdsa/ |
| A D | ecdsa-verify.c | 37 debug("Error: ecdsa cannot get 'ecdsa,curve' property from key. Likely not an ecdsa key.\n"); in fdt_get_key() 43 debug("Unknown ECDSA curve '%s'", key->curve_name); in fdt_get_key() 115 debug("ECDSA: Could not find ECDSA implementation: %d\n", ret); in ecdsa_verify()
|
| /lib/zstd/ |
| A D | Makefile | 32 common/debug.o \
|
| A D | zstd.c | 24 debug("%s: cannot allocate workspace of size %zu\n", __func__, in zstd_decompress()
|
| /lib/mbedtls/external/mbedtls/programs/ssl/ |
| A D | ssl_context_info.c | 107 char debug = 0; /* flag for debug messages */ variable 143 if (debug) { in printf_dbg() 190 debug = 1; in parse_arguments() 983 if (debug) { in main()
|
| /lib/efi_loader/ |
| A D | efi_firmware.c | 411 debug("Capsule authentication successful\n"); in efi_firmware_capsule_authenticate() 415 debug("Capsule authentication disabled. "); in efi_firmware_capsule_authenticate() 416 debug("Updating capsule without authenticating.\n"); in efi_firmware_capsule_authenticate()
|