Lines Matching defs:prefix_str
576 extern void print_hex_dump(const char *level, const char *prefix_str,
580 static inline void print_hex_dump(const char *level, const char *prefix_str,
585 static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
594 #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
596 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
599 #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
601 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
604 static inline void print_hex_dump_debug(const char *prefix_str, int prefix_type,
613 * @prefix_str: string to prefix each line with;
623 #define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
624 print_hex_dump_debug(prefix_str, prefix_type, 16, 1, buf, len, true)