Lines Matching defs:pipe

439 	TRACE_ERROR("tried to submit transfer for unknown pipe type %" B_PRIu32 "\n",
446 OHCI::CancelQueuedTransfers(Pipe *pipe, bool force)
448 if (pipe->Type() & USB_OBJECT_ISO_PIPE)
449 return _CancelQueuedIsochronousTransfers(pipe, force);
462 if (current->transfer && current->transfer->TransferPipe() == pipe) {
504 while (fProcessingPipe == pipe)
514 OHCI::NotifyPipeChange(Pipe *pipe, usb_change change)
516 TRACE("pipe change %d for pipe %p\n", change, pipe);
517 if (pipe->DeviceAddress() == fRootHubAddress) {
524 return _InsertEndpointForPipe(pipe);
527 return _RemoveEndpointForPipe(pipe);
530 TRACE("pipe policy changing unhandled!\n");
534 TRACE_ERROR("unknown pipe change!\n");
903 OHCI::_CancelQueuedIsochronousTransfers(Pipe *pipe, bool force)
1077 // store the currently processing pipe here so we can wait
1078 // in cancel if we are processing something on the target pipe
1239 Pipe *pipe = transfer->TransferPipe();
1240 bool directionIn = (pipe->Direction() == Pipe::In);
1253 firstDescriptor->flags |= pipe->DataToggle() ? OHCI_TD_TOGGLE_1
1268 = (ohci_endpoint_descriptor *)pipe->ControllerCookie();
1284 if (pipe->Type() & USB_OBJECT_BULK_PIPE) {
1423 OHCI::_InsertEndpointForPipe(Pipe *pipe)
1426 pipe->DeviceAddress(), pipe->EndpointAddress());
1437 flags |= OHCI_ENDPOINT_SET_DEVICE_ADDRESS(pipe->DeviceAddress())
1438 | OHCI_ENDPOINT_SET_ENDPOINT_NUMBER(pipe->EndpointAddress());
1441 switch (pipe->Direction()) {
1461 switch (pipe->Speed()) {
1477 flags |= OHCI_ENDPOINT_SET_MAX_PACKET_SIZE(pipe->MaxPacketSize());
1481 uint32 type = pipe->Type();
1488 head = _FindInterruptEndpoint(pipe->Interval());
1492 TRACE_ERROR("unknown pipe type\n");
1501 if (pipe->Type() & USB_OBJECT_ISO_PIPE) {
1525 pipe->SetControllerCookie((void *)endpoint);
1537 OHCI::_RemoveEndpointForPipe(Pipe *pipe)
1540 pipe->DeviceAddress(), pipe->EndpointAddress());
1543 = (ohci_endpoint_descriptor *)pipe->ControllerCookie();