Lines Matching refs:bufs_ptr
556 ssize_t UDPWrap::Send(uv_buf_t* bufs_ptr,
563 msg_size += bufs_ptr[i].len;
567 err = uv_udp_try_send(&handle_, bufs_ptr, count, addr);
572 while (count > 0 && bufs_ptr->len <= sent) {
573 sent -= bufs_ptr->len;
574 bufs_ptr++;
578 CHECK_LT(sent, bufs_ptr->len);
579 bufs_ptr->base += sent;
580 bufs_ptr->len -= sent;
598 bufs_ptr,