HomeSort by relevance Sort by last modified time
    Searched defs:max_packet_size (Results 1 - 17 of 17) sorted by null

  /system/core/libusbhost/include/usbhost/
usbhost.h 48 int max_packet_size; member in struct:usb_request
  /system/bt/hci/src/
packet_fragmenter.cc 77 uint16_t max_packet_size = max_data_size + HCI_ACL_PREAMBLE_SIZE; local
84 while (remaining_length > max_packet_size) {
90 packet->len = max_packet_size;
  /development/host/windows/usb/api/
adb_api.h 65 unsigned long max_packet_size; member in struct:_AdbEndpointInformation
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
SocketServer.py 492 max_packet_size = 8192 variable in class:UDPServer
495 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
SocketServer.py 477 max_packet_size = 8192 variable in class:UDPServer
480 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /external/python/cpython2/Lib/
SocketServer.py 489 max_packet_size = 8192 variable in class:UDPServer
492 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /external/python/cpython3/Lib/
socketserver.py 525 max_packet_size = 8192 variable in class:UDPServer
528 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /external/webrtc/webrtc/video/
video_send_stream.cc 74 ss << ", max_packet_size: " << max_packet_size; local
214 RTC_DCHECK_LE(config_.rtp.max_packet_size, static_cast<size_t>(0xFFFF - 28));
215 vie_channel_->SetMTU(static_cast<uint16_t>(config_.rtp.max_packet_size + 28));
  /external/webrtc/webrtc/
video_send_stream.h 109 size_t max_packet_size = kDefaultMaxPacketSize; member in struct:webrtc::VideoSendStream::Config::Rtp
  /prebuilts/gdb/darwin-x86/lib/python2.7/
SocketServer.py 488 max_packet_size = 8192 variable in class:UDPServer
491 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /prebuilts/gdb/linux-x86/lib/python2.7/
SocketServer.py 488 max_packet_size = 8192 variable in class:UDPServer
491 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SocketServer.py 488 max_packet_size = 8192 variable in class:UDPServer
491 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SocketServer.py 488 max_packet_size = 8192 variable in class:UDPServer
491 data, client_addr = self.socket.recvfrom(self.max_packet_size)
  /system/core/adb/client/
usb_windows.cpp 68 unsigned max_packet_size; member in struct:native::usb_handle
486 return handle->max_packet_size;
523 handle->max_packet_size = endpoint_info.max_packet_size;
524 handle->zero_mask = endpoint_info.max_packet_size - 1;
usb_libusb.cpp 94 uint8_t bulk_out, size_t zero_mask, size_t max_packet_size)
104 max_packet_size(max_packet_size) {}
148 size_t max_packet_size; member in struct:libusb::usb_handle
637 CHECK(h->max_packet_size != 0);
638 return h->max_packet_size;
usb_linux.cpp 68 size_t max_packet_size; member in struct:native::usb_handle
148 size_t max_packet_size = 0; local
257 max_packet_size = ep1->wMaxPacketSize;
289 device->iSerialNumber, zero_mask, max_packet_size);
504 return h->max_packet_size;
509 unsigned zero_mask, size_t max_packet_size) {
532 usb->max_packet_size = max_packet_size;
usb_osx.cpp 55 size_t max_packet_size; member in struct:native::usb_handle
67 max_packet_size(0),
308 LOG(INFO) << "reported max packet size for " << serial << " is " << handle->max_packet_size;
412 handle->max_packet_size = maxPacketSize;
581 return handle->max_packet_size;

Completed in 354 milliseconds