Home | History | Annotate | Download | only in hw

Lines Matching refs:numBuffers

347 pipeConnector_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
350 const GoldfishPipeBuffer* buffers_limit = buffers + numBuffers;
353 DD("%s: channel=0x%x numBuffers=%d", __FUNCTION__,
355 numBuffers);
432 pipeConnector_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
524 zeroPipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
527 while (numBuffers > 0) {
530 numBuffers--;
536 zeroPipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
539 while (numBuffers > 0) {
543 numBuffers--;
628 pingPongPipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
634 const GoldfishPipeBuffer* buffEnd = buff + numBuffers;
692 pingPongPipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
697 while (numBuffers > 0) {
723 numBuffers--;
870 throttlePipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
879 ret = pingPongPipe_sendBuffers(&pipe->pingpong, buffers, numBuffers);
889 throttlePipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
898 ret = pingPongPipe_recvBuffers(&pipe->pingpong, buffers, numBuffers);