/external/webrtc/modules/rtp_rtcp/source/ |
D | rtcp_transceiver_config.cc | 37 if (max_packet_size < 100) { in Validate() 38 RTC_LOG(LS_ERROR) << debug_id << "max packet size " << max_packet_size in Validate() 42 if (max_packet_size > IP_PACKET_SIZE) { in Validate() 43 RTC_LOG(LS_ERROR) << debug_id << "max packet size " << max_packet_size in Validate()
|
D | rtcp_sender.cc | 88 size_t max_packet_size) in PacketSender() argument 89 : callback_(callback), max_packet_size_(max_packet_size) { in PacketSender() 90 RTC_CHECK_LE(max_packet_size, IP_PACKET_SIZE); in PacketSender() 295 void RTCPSender::SetMaxRtpPacketSize(size_t max_packet_size) { in SetMaxRtpPacketSize() argument 297 max_packet_size_ = max_packet_size; in SetMaxRtpPacketSize() 702 size_t max_packet_size; in SendCompoundRTCP() local 711 max_packet_size = max_packet_size_; in SendCompoundRTCP() 714 size_t bytes_sent = container.SendPackets(max_packet_size); in SendCompoundRTCP() 1000 size_t max_packet_size; in SendCombinedRtcpPacket() local 1009 max_packet_size = max_packet_size_; in SendCombinedRtcpPacket() [all …]
|
D | rtcp_transceiver_impl.cc | 62 size_t max_packet_size) in PacketSender() argument 63 : callback_(callback), max_packet_size_(max_packet_size) { in PacketSender() 64 RTC_CHECK_LE(max_packet_size, IP_PACKET_SIZE); in PacketSender() 392 PacketSender sender(send_packet, config_.max_packet_size); in SendPeriodicCompoundPacket() 402 PacketSender sender(send_packet, config_.max_packet_size); in SendCombinedRtcpPacket() 416 PacketSender sender(send_packet, config_.max_packet_size); in SendImmediateFeedback()
|
D | rtcp_transceiver_config.h | 62 size_t max_packet_size = 1200; member
|
D | fec_test_helper.cc | 35 uint32_t max_packet_size, in MediaPacketGenerator() argument 39 max_packet_size_(max_packet_size), in MediaPacketGenerator()
|
D | fec_test_helper.h | 36 uint32_t max_packet_size,
|
D | rtp_sender.cc | 267 void RTPSender::SetMaxRtpPacketSize(size_t max_packet_size) { in SetMaxRtpPacketSize() argument 268 RTC_DCHECK_GE(max_packet_size, 100); in SetMaxRtpPacketSize() 269 RTC_DCHECK_LE(max_packet_size, IP_PACKET_SIZE); in SetMaxRtpPacketSize() 271 max_packet_size_ = max_packet_size; in SetMaxRtpPacketSize()
|
D | rtp_sender.h | 71 void SetMaxRtpPacketSize(size_t max_packet_size)
|
D | rtp_rtcp_impl2.h | 219 void SetMaxRtpPacketSize(size_t max_packet_size) override;
|
D | rtp_rtcp_impl.h | 227 void SetMaxRtpPacketSize(size_t max_packet_size) override;
|
D | rtcp_sender.h | 136 void SetMaxRtpPacketSize(size_t max_packet_size)
|
/external/OpenCL-CTS/test_conformance/pipes/ |
D | main.cpp | 35 cl_uint max_packet_size; in InitCL() local 37 sizeof(max_packet_size), &max_packet_size, NULL); in InitCL() 43 if ((max_packet_size == 0) && (version >= Version(3, 0))) in InitCL()
|
/external/openscreen/cast/streaming/ |
D | rtp_packetizer.cc | 41 int max_packet_size) in RtpPacketizer() argument 44 max_packet_size_(max_packet_size), in RtpPacketizer()
|
D | rtp_packetizer.h | 31 int max_packet_size);
|
D | sender_packet_router.h | 86 int max_packet_size() const { return packet_buffer_size_; } in max_packet_size() function
|
/external/webrtc/rtc_base/ |
D | async_tcp_socket.cc | 66 size_t max_packet_size) in AsyncTCPSocketBase() argument 69 max_insize_(max_packet_size), in AsyncTCPSocketBase() 70 max_outsize_(max_packet_size) { in AsyncTCPSocketBase()
|
D | async_tcp_socket.h | 32 AsyncTCPSocketBase(AsyncSocket* socket, bool listen, size_t max_packet_size);
|
/external/webrtc/call/ |
D | rtp_config.h | 95 size_t max_packet_size = kDefaultMaxPacketSize; member
|
D | rtp_video_sender.cc | 426 stream.rtp_rtcp->SetMaxRtpPacketSize(rtp_config_.max_packet_size); in RtpVideoSender() 743 std::min(rtp_config_.max_packet_size, in OnTransportOverheadChanged() 769 rtp_config_.max_packet_size + transport_overhead_bytes_per_packet_); in OnBitrateUpdated() 948 rtp_config_.max_packet_size); in SetEncodingData()
|
D | rtp_config.cc | 93 ss << ", max_packet_size: " << max_packet_size; in ToString()
|
/external/OpenCL-CTS/test_conformance/api/ |
D | test_kernel_arg_info.cpp | 309 cl_uint max_packet_size = 0; in device_supports_pipes() local 312 sizeof(max_packet_size), &max_packet_size, nullptr); in device_supports_pipes() 314 if ((max_packet_size == 0) && (version >= Version(3, 0))) in device_supports_pipes()
|
/external/python/cpython2/Lib/ |
D | SocketServer.py | 489 max_packet_size = 8192 variable in UDPServer 492 data, client_addr = self.socket.recvfrom(self.max_packet_size)
|
/external/python/cpython3/Lib/ |
D | socketserver.py | 524 max_packet_size = 8192 variable in UDPServer 527 data, client_addr = self.socket.recvfrom(self.max_packet_size)
|
/external/webrtc/test/scenario/ |
D | scenario_config.h | 64 DataSize max_packet_size = DataSize::Bytes(1400); member
|
/external/webrtc/video/ |
D | video_send_stream.cc | 208 config_.rtp.max_packet_size - CalculateMaxHeaderSize(config_.rtp)); in ReconfigureVideoEncoder()
|