Home
last modified time | relevance | path

Searched refs:max_packet_size (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/base/
Dasynctcpsocket.cc52 size_t max_packet_size) in AsyncTCPSocketBase() argument
55 insize_(max_packet_size), in AsyncTCPSocketBase()
57 outsize_(max_packet_size), in AsyncTCPSocketBase()
Dasynctcpsocket.h25 AsyncTCPSocketBase(AsyncSocket* socket, bool listen, size_t max_packet_size);
/external/u-boot/drivers/usb/host/
Dxhci.c769 int max_packet_size; in xhci_check_maxpacket() local
778 max_packet_size = udev->epmaxpacketin[0]; in xhci_check_maxpacket()
779 if (hw_max_packet_size != max_packet_size) { in xhci_check_maxpacket()
781 debug("Max packet size in usb_device = %d\n", max_packet_size); in xhci_check_maxpacket()
792 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size)); in xhci_check_maxpacket()
/external/webrtc/webrtc/
Dvideo_send_stream.h109 size_t max_packet_size = kDefaultMaxPacketSize; member
/external/python/cpython2/Lib/
DSocketServer.py489 max_packet_size = 8192 variable in UDPServer
492 data, client_addr = self.socket.recvfrom(self.max_packet_size)
/external/python/cpython3/Lib/
Dsocketserver.py524 max_packet_size = 8192 variable in UDPServer
527 data, client_addr = self.socket.recvfrom(self.max_packet_size)
/external/webrtc/webrtc/video/
Dvideo_send_stream.cc74 ss << ", max_packet_size: " << max_packet_size; in ToString()
214 RTC_DCHECK_LE(config_.rtp.max_packet_size, static_cast<size_t>(0xFFFF - 28)); in VideoSendStream()
215 vie_channel_->SetMTU(static_cast<uint16_t>(config_.rtp.max_packet_size + 28)); in VideoSendStream()
Dvideo_send_stream_tests.cc542 FrameFragmentationTest(size_t max_packet_size, in TestPacketFragmentationSize() argument
549 max_packet_size_(max_packet_size), in TestPacketFragmentationSize()
561 RTC_DCHECK_GT(stop_size, max_packet_size); in TestPacketFragmentationSize()
692 send_config->rtp.max_packet_size = kMaxPacketSize; in TestPacketFragmentationSize()
/external/u-boot/lib/efi_loader/
Defi_net.c363 netobj->net_mode.max_packet_size = PKTSIZE; in efi_net_register()
/external/openssh/
Dpacket.c159 u_int max_packet_size; member
247 state->max_packet_size = 32768; in ssh_alloc_session_state()
2367 state->max_packet_size, s); in ssh_packet_set_maxsize()
2376 state->max_packet_size = s; in ssh_packet_set_maxsize()
2395 return ssh->state->max_packet_size; in ssh_packet_get_maxsize()
/external/u-boot/include/
Defi_api.h725 u32 max_packet_size; member
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoengine2.cc1622 parameters_.config.rtp.max_packet_size = kVideoMtu; in WebRtcVideoSendStream()