HomeSort by relevance Sort by last modified time
    Searched refs:pipe_information_ (Results 1 - 2 of 2) sorted by null

  /development/host/windows/usb/legacy/driver/
android_usb_pipe_file_object.h 246 ASSERT(0 != pipe_information_.MaximumTransferSize);
247 return pipe_information_.MaximumTransferSize;
252 ASSERT(0 != pipe_information_.MaximumPacketSize);
253 return pipe_information_.MaximumPacketSize;
258 // packets with size greater than pipe_information_.MaximumPacketSize!
266 return WDF_USB_PIPE_DIRECTION_IN(pipe_information_.EndpointAddress) ?
272 return WDF_USB_PIPE_DIRECTION_OUT(pipe_information_.EndpointAddress) ?
299 WDF_USB_PIPE_INFORMATION pipe_information_; member in class:AndroidUsbPipeFileObject
android_usb_pipe_file_object.cpp 62 pipe_information_ = *pipe_info;
192 ret_info->max_packet_size = pipe_information_.MaximumPacketSize;
193 ret_info->endpoint_address = pipe_information_.EndpointAddress;
194 ret_info->polling_interval = pipe_information_.Interval;
195 ret_info->setting_index = pipe_information_.SettingIndex;
197 static_cast<AdbEndpointType>(pipe_information_.PipeType);
198 ret_info->max_transfer_size = pipe_information_.MaximumTransferSize;

Completed in 222 milliseconds