Searched refs:print_buf (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/tipc/
H A Ddbg.h41 * struct print_buf - TIPC print buffer structure
48 struct print_buf { struct
58 void tipc_printbuf_init(struct print_buf *pb, char *buf, u32 size);
59 void tipc_printbuf_reset(struct print_buf *pb);
60 int tipc_printbuf_empty(struct print_buf *pb);
61 int tipc_printbuf_validate(struct print_buf *pb);
62 void tipc_printbuf_move(struct print_buf *pb_to, struct print_buf *pb_from);
H A Ddbg.c51 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;
99 void tipc_printbuf_init(struct print_buf *pb, char *raw, u32 size)
119 void tipc_printbuf_reset(struct print_buf *pb)
135 int tipc_printbuf_empty(struct print_buf *pb)
150 int tipc_printbuf_validate(struct print_buf *p
[all...]
H A Dcore.h81 * &buf : user-defined buffer (struct print_buf *)
87 extern struct print_buf *const TIPC_NULL;
88 extern struct print_buf *const TIPC_CONS;
89 extern struct print_buf *const TIPC_LOG;
91 void tipc_printf(struct print_buf *, const char *fmt, ...);
157 void tipc_msg_dbg(struct print_buf *, struct tipc_msg *, const char *);
158 void tipc_dump_dbg(struct print_buf *, const char *fmt, ...);
H A Dbearer.h119 void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a);
H A Dlink.h111 * @print_buf: print buffer used to log link activity
215 struct print_buf print_buf; member in struct:link
H A Dname_table.c876 static void subseq_list(struct sub_seq *sseq, struct print_buf *buf, u32 depth,
921 static void nameseq_list(struct name_seq *seq, struct print_buf *buf, u32 depth,
952 static void nametbl_header(struct print_buf *buf, u32 depth)
979 static void nametbl_list(struct print_buf *buf, u32 depth_info,
1034 struct print_buf b;
H A Ddiscover.c127 struct print_buf pb;
H A Dlink.c114 static void link_print(struct link *l_ptr, struct print_buf *buf,
143 tipc_printf(&l_ptr->print_buf, fmt, ## arg); \
148 tipc_msg_dbg(&l_ptr->print_buf, msg, txt); \
153 link_print(l_ptr, &l_ptr->print_buf, txt); \
158 tipc_printbuf_move(LOG, &l_ptr->print_buf); \
401 tipc_printbuf_init(&l_ptr->print_buf, pb, LINK_LOG_BUF_SIZE);
439 kfree(l_ptr->print_buf.buf);
480 kfree(l_ptr->print_buf.buf);
3015 struct print_buf pb;
3172 static void link_print(struct link *l_ptr, struct print_buf *bu
[all...]
H A Dmsg.c140 void tipc_msg_dbg(struct print_buf *buf, struct tipc_msg *msg, const char *str)
H A Dbcast.c700 struct print_buf pb;
803 tipc_printbuf_init(&bcl->print_buf, pb, BCLINK_LOG_BUF_SIZE);
815 kfree(bcl->print_buf.buf);
H A Dconfig.c131 struct print_buf pb;
H A Dbearer.c181 void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a)
H A Dnode.c49 void node_print(struct print_buf *buf, struct tipc_node *n_ptr, char *str);
H A Dport.c654 static void port_print(struct port *p_ptr, struct print_buf *buf, int full_id)
697 struct print_buf pb;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/hdpvr/
H A Dhdpvr-control.c54 char print_buf[15]; local
79 hex_dump_to_buffer(dev->usbc_buf, 5, 16, 1, print_buf,
80 sizeof(print_buf), 0);
82 "get video info returned: %d, %s\n", ret, print_buf);
98 char print_buf[9]; local
112 hex_dump_to_buffer(dev->usbc_buf, 3, 16, 1, print_buf,
113 sizeof(print_buf), 0);
116 print_buf);
H A Dhdpvr-core.c127 char *print_buf = kzalloc(5*buf_size+1, GFP_KERNEL); local
128 if (!print_buf) {
148 hex_dump_to_buffer(dev->usbc_buf, 46, 16, 1, print_buf,
152 ret, print_buf);
172 hex_dump_to_buffer(response, 8, 16, 1, print_buf, 5*buf_size+1, 0);
174 print_buf);
178 hex_dump_to_buffer(response, 8, 16, 1, print_buf, 5*buf_size+1, 0);
180 print_buf);

Completed in 262 milliseconds