Home | History | Annotate | Download | only in hw

Lines Matching refs:numBuffers

240 pipeConnector_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
243 const GoldfishPipeBuffer* buffers_limit = buffers + numBuffers;
246 DD("%s: channel=0x%x numBuffers=%d", __FUNCTION__,
248 numBuffers);
321 pipeConnector_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
385 zeroPipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
388 while (numBuffers > 0) {
391 numBuffers--;
397 zeroPipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
400 while (numBuffers > 0) {
404 numBuffers--;
489 pingPongPipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
495 const GoldfishPipeBuffer* buffEnd = buff + numBuffers;
553 pingPongPipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
558 while (numBuffers > 0) {
584 numBuffers--;
731 throttlePipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers )
740 ret = pingPongPipe_sendBuffers(&pipe->pingpong, buffers, numBuffers);
750 throttlePipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers )
759 ret = pingPongPipe_recvBuffers(&pipe->pingpong, buffers, numBuffers);