Lines Matching defs:buf
87 * @buf: Data being written to the HW that will ultimately be seen
100 u8 *buf,
108 u8 *p = buf;
198 * @buf: Data being written to the HW that will ultimately be seen
207 const unsigned char *buf,
211 pti_write_to_aperture(mc, (u8 *)buf, len);
370 * @buf: Trace debuging data to write to the PTI HW.
372 * @count: Size of buf. Value of 0 or a negative number will
375 void pti_writedata(struct pti_masterchannel *mc, u8 *buf, int count)
382 if ((mc != NULL) && (buf != NULL) && (count > 0))
383 pti_write_to_aperture(mc, buf, count);
500 * @buf: trace data to be written.
508 const unsigned char *buf, int len)
512 pti_write_to_aperture(pti_tty_data->mc, (u8 *)buf, len);
614 pr_err("%s(%d): buf allocation failed\n",
666 * @buf: Data to be written.
667 * @len: Length of buf.
669 static void pti_console_write(struct console *c, const char *buf, unsigned len)
677 pti_write_full_frame_to_aperture(&mc, buf, len);