Searched refs:etm_xport_irb_head (Results 1 – 1 of 1) sorted by relevance
212 static uint8_t *etm_xport_irb_head = NULL; /* read head (dequeue) */ variable621 etm_xport_irb_head = etm_xport_irb_area; in etm_xport_buffered_read()622 etm_xport_irb_tail = etm_xport_irb_head; in etm_xport_buffered_read()634 if (byte_cnt <= (etm_xport_irb_tail - etm_xport_irb_head)) { in etm_xport_buffered_read()635 (void) memcpy(buf, etm_xport_irb_head, byte_cnt); in etm_xport_buffered_read()636 etm_xport_irb_head += byte_cnt; in etm_xport_buffered_read()646 n = etm_xport_irb_tail - etm_xport_irb_head; in etm_xport_buffered_read()647 (void) memmove(etm_xport_irb_area, etm_xport_irb_head, n); in etm_xport_buffered_read()648 etm_xport_irb_head = etm_xport_irb_area; in etm_xport_buffered_read()649 etm_xport_irb_tail = etm_xport_irb_head + n; in etm_xport_buffered_read()[all …]