/linux-3.4.99/net/tipc/ |
D | log.c | 51 static struct print_buf null_buf = { NULL, 0, NULL, 0 }; 52 struct print_buf *const TIPC_NULL = &null_buf; 54 static struct print_buf cons_buf = { NULL, 0, NULL, 1 }; 55 struct print_buf *const TIPC_CONS = &cons_buf; 57 static struct print_buf log_buf = { NULL, 0, NULL, 1 }; 58 struct print_buf *const TIPC_LOG = &log_buf; 79 static void tipc_printbuf_move(struct print_buf *pb_to, 80 struct print_buf *pb_from); 101 void tipc_printbuf_init(struct print_buf *pb, char *raw, u32 size) in tipc_printbuf_init() 121 static void tipc_printbuf_reset(struct print_buf *pb) in tipc_printbuf_reset() [all …]
|
D | core.h | 62 struct print_buf; /* log.h */ 79 extern struct print_buf *const TIPC_NULL; 80 extern struct print_buf *const TIPC_CONS; 81 extern struct print_buf *const TIPC_LOG; 83 void tipc_printf(struct print_buf *, const char *fmt, ...); 114 void tipc_msg_dbg(struct print_buf *, struct tipc_msg *, const char *);
|
D | log.h | 48 struct print_buf { struct 58 void tipc_printbuf_init(struct print_buf *pb, char *buf, u32 size); argument 59 int tipc_printbuf_validate(struct print_buf *pb);
|
D | name_table.c | 785 static void subseq_list(struct sub_seq *sseq, struct print_buf *buf, u32 depth, in subseq_list() 822 static void nameseq_list(struct name_seq *seq, struct print_buf *buf, u32 depth, in nameseq_list() 853 static void nametbl_header(struct print_buf *buf, u32 depth) in nametbl_header() 875 static void nametbl_list(struct print_buf *buf, u32 depth_info, in nametbl_list() 929 struct print_buf b; in tipc_nametbl_get()
|
D | bearer.h | 185 void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a);
|
D | discover.c | 105 struct print_buf pb; in disc_dupl_alert()
|
D | msg.c | 116 void tipc_msg_dbg(struct print_buf *buf, struct tipc_msg *msg, const char *str) in tipc_msg_dbg()
|
D | config.c | 113 struct print_buf pb; in tipc_show_stats()
|
D | bearer.c | 138 void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a) in tipc_media_addr_printf()
|
D | port.c | 574 static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id) in port_print() 616 struct print_buf pb; in tipc_port_get_ports()
|
D | bcast.c | 720 struct print_buf pb; in tipc_bclink_stats()
|
D | link.c | 2971 struct print_buf pb; in tipc_link_stats() 3116 struct print_buf pb; in link_print() 3117 struct print_buf *buf = &pb; in link_print()
|
/linux-3.4.99/drivers/media/video/hdpvr/ |
D | hdpvr-control.c | 52 char print_buf[15]; in get_video_info() local 77 hex_dump_to_buffer(dev->usbc_buf, 5, 16, 1, print_buf, in get_video_info() 78 sizeof(print_buf), 0); in get_video_info() 80 "get video info returned: %d, %s\n", ret, print_buf); in get_video_info() 96 char print_buf[9]; in get_input_lines_info() local 110 hex_dump_to_buffer(dev->usbc_buf, 3, 16, 1, print_buf, in get_input_lines_info() 111 sizeof(print_buf), 0); in get_input_lines_info() 114 print_buf); in get_input_lines_info()
|
D | hdpvr-core.c | 128 char *print_buf = kzalloc(5*buf_size+1, GFP_KERNEL); in device_authorization() local 129 if (!print_buf) { in device_authorization() 149 hex_dump_to_buffer(dev->usbc_buf, 46, 16, 1, print_buf, in device_authorization() 153 ret, print_buf); in device_authorization() 190 hex_dump_to_buffer(response, 8, 16, 1, print_buf, 5*buf_size+1, 0); in device_authorization() 192 print_buf); in device_authorization() 196 hex_dump_to_buffer(response, 8, 16, 1, print_buf, 5*buf_size+1, 0); in device_authorization() 198 print_buf); in device_authorization()
|