Searched refs:vectorCount (Results 1 - 15 of 15) sorted by relevance

/haiku/src/add-ons/kernel/bus_managers/usb/
H A DTransfer.cpp85 Transfer::SetVector(iovec *vector, size_t vectorCount) argument
89 fVector = new(std::nothrow) generic_io_vec[vectorCount];
90 for (size_t i = 0; i < vectorCount; i++) {
94 fVectorCount = vectorCount;
102 Transfer::SetVector(physical_entry *vector, size_t vectorCount) argument
106 fVector = new(std::nothrow) generic_io_vec[vectorCount];
107 for (size_t i = 0; i < vectorCount; i++) {
111 fVectorCount = vectorCount;
H A DPipe.cpp229 BulkPipe::QueueBulkV(iovec *vector, size_t vectorCount, argument
232 if (vectorCount > 0 && vector == NULL)
239 transfer->SetVector(vector, vectorCount);
250 BulkPipe::QueueBulkV(physical_entry *vector, size_t vectorCount, argument
253 if (vectorCount > 0 && vector == NULL)
260 transfer->SetVector(vector, vectorCount);
H A Dusb_private.h480 status_t QueueBulkV(iovec *vector, size_t vectorCount,
482 status_t QueueBulkV(physical_entry *vector, size_t vectorCount,
723 void SetVector(iovec *vector, size_t vectorCount);
724 void SetVector(physical_entry *vector, size_t vectorCount);
H A Dusb.cpp455 queue_bulk_v(usb_pipe pipe, iovec *vector, size_t vectorCount, argument
459 pipe, vector, vectorCount, callback, callbackCookie);
464 return ((BulkPipe *)object.Get())->QueueBulkV(vector, vectorCount,
470 queue_bulk_v_physical(usb_pipe pipe, physical_entry *vector, size_t vectorCount, argument
474 ", %p, %p)\n", pipe, vector, vectorCount, callback, callbackCookie);
479 return ((BulkPipe *)object.Get())->QueueBulkV(vector, vectorCount,
/haiku/src/add-ons/kernel/busses/usb/
H A Dohci.h138 generic_io_vec *vector, size_t vectorCount,
142 generic_io_vec *vector, size_t vectorCount,
147 generic_io_vec *vector, size_t vectorCount,
151 generic_io_vec *vector, size_t vectorCount,
H A Duhci.h187 generic_io_vec *vector, size_t vectorCount, bool physical);
189 generic_io_vec *vector, size_t vectorCount, bool physical,
H A Dehci.h181 generic_io_vec *vector, size_t vectorCount,
184 generic_io_vec *vector, size_t vectorCount,
H A Dohci.cpp1268 size_t vectorCount = transfer->transfer->VectorCount(); local
1273 vector, vectorCount, transfer->transfer->IsPhysical());
1437 size_t vectorCount = transfer->transfer->VectorCount(); local
1442 vector, vectorCount, transfer->transfer->IsPhysical());
2278 size_t vectorCount, bool physical)
2296 vectorOffset, vectorIndex, vectorCount);
2307 if (++vectorIndex >= vectorCount) {
2335 generic_io_vec *vector, size_t vectorCount, bool physical)
2353 vectorOffset, vectorIndex, vectorCount);
2364 if (++vectorIndex >= vectorCount) {
2277 _WriteDescriptorChain(ohci_general_td *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
2334 _WriteIsochronousDescriptorChain(ohci_isochronous_td *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
2391 _ReadDescriptorChain(ohci_general_td *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
2452 _ReadIsochronousDescriptorChain(ohci_isochronous_td *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
[all...]
H A Dxhci.h165 generic_io_vec *vector, size_t vectorCount, bool physical);
167 generic_io_vec *vector, size_t vectorCount, bool physical);
H A Duhci.cpp937 size_t vectorCount = transfer->VectorCount(); local
940 vector, vectorCount, transfer->IsPhysical(), &lastDataToggle);
1614 size_t vectorCount = transfer->transfer->VectorCount(); local
1619 vector, vectorCount, transfer->transfer->IsPhysical(),
2277 size_t vectorCount, bool physical)
2295 vectorOffset, vectorIndex, vectorCount);
2306 if (++vectorIndex >= vectorCount) {
2334 size_t vectorCount, bool physical, uint8 *lastDataToggle)
2356 bufferOffset, vectorIndex, vectorCount);
2367 if (++vectorIndex >= vectorCount) {
2276 WriteDescriptorChain(uhci_td *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
2333 ReadDescriptorChain(uhci_td *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical, uint8 *lastDataToggle) argument
[all...]
H A Dehci.cpp1026 size_t vectorCount = transfer->VectorCount(); local
1029 vector, vectorCount, transfer->IsPhysical(), &nextDataToggle);
2011 size_t vectorCount = transfer->transfer->VectorCount(); local
2016 vector, vectorCount, transfer->transfer->IsPhysical(),
2791 size_t vectorCount, bool physical)
2817 if (++vectorIndex >= vectorCount) {
2845 size_t vectorCount, bool physical, bool *nextDataToggle)
2877 if (++vectorIndex >= vectorCount) {
2943 size_t vectorCount = transfer->transfer->VectorCount(); local
2992 if (++vectorIndex >= vectorCount) {
2790 WriteDescriptorChain(ehci_qtd *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
2844 ReadDescriptorChain(ehci_qtd *topDescriptor, generic_io_vec *vector, size_t vectorCount, bool physical, bool *nextDataToggle) argument
[all...]
H A Dxhci.cpp1454 XHCI::WriteDescriptor(xhci_td *descriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
1459 for (size_t vecIdx = 0; vecIdx < vectorCount; vecIdx++) {
1486 XHCI::ReadDescriptor(xhci_td *descriptor, generic_io_vec *vector, size_t vectorCount, bool physical) argument
1491 for (size_t vecIdx = 0; vecIdx < vectorCount; vecIdx++) {
/haiku/src/add-ons/kernel/network/devices/dialup/
H A Ddialup.cpp389 uint32 vectorCount = gBufferModule->count_iovecs(buffer); local
390 if (vectorCount < 1) {
395 ioVectors = (iovec*)malloc(sizeof(iovec)*vectorCount);
400 gBufferModule->get_iovecs(buffer, ioVectors, vectorCount);
423 while (vectorCount--) {
/haiku/headers/os/drivers/
H A DUSB3.h181 iovec *vector, size_t vectorCount,
186 physical_entry *vectors, size_t vectorCount,
/haiku/src/add-ons/kernel/busses/virtio/virtio_pci/
H A Dvirtio_pci.cpp465 uint32 vectorCount = queueCount + 1; local
466 if (msixCount >= vectorCount) {
471 && bus->pci->configure_msix(bus->device, vectorCount,
475 vectorCount, vector);

Completed in 187 milliseconds