Home
last modified time | relevance | path

Searched refs:packet_id (Results 1 – 25 of 25) sorted by relevance

/external/webrtc/webrtc/base/
Dsocket.h128 SentPacket() : packet_id(-1), send_time_ms(-1) {} in SentPacket()
129 SentPacket(int packet_id, int64_t send_time_ms) in SentPacket()
130 : packet_id(packet_id), send_time_ms(send_time_ms) {} in SentPacket()
132 int packet_id; member
Dasyncpacketsocket.h37 PacketOptions() : dscp(DSCP_NO_CHANGE), packet_id(-1) {} in PacketOptions()
38 explicit PacketOptions(DiffServCodePoint dscp) : dscp(dscp), packet_id(-1) {} in PacketOptions()
41 int packet_id; // 16 bits, -1 represents "not set". member
Dasyncudpsocket.cc63 rtc::SentPacket sent_packet(options.packet_id, rtc::Time()); in Send()
72 rtc::SentPacket sent_packet(options.packet_id, rtc::Time()); in SendTo()
Dasynctcpsocket.cc271 rtc::SentPacket sent_packet(options.packet_id, rtc::Time()); in Send()
/external/mesa3d/src/amd/common/
Dac_debug.c284 unsigned packet_id = AC_GET_TRACE_POINT_ID(ib[1]); in ac_parse_packet3() local
287 fprintf(f, COLOR_RED "Trace point ID: %u\n", packet_id); in ac_parse_packet3()
293 if (packet_id < trace_id) in ac_parse_packet3()
297 else if (packet_id == trace_id) in ac_parse_packet3()
302 else if (packet_id+1 == trace_id) in ac_parse_packet3()
/external/webrtc/webrtc/
Dtransport.h25 int packet_id = -1; member
/external/iptables/include/linux/netfilter_ipv4/
Dip_queue.h22 unsigned long packet_id; /* ID of queued packet */ member
/external/libnl/include/linux-private/linux/netfilter/
Dnfnetlink_queue.h21 __be32 packet_id; /* unique ID of packet in queue */ member
/external/kernel-headers/original/uapi/linux/netfilter/
Dnfnetlink_queue.h17 __be32 packet_id; /* unique ID of packet in queue */ member
/external/webrtc/talk/media/webrtc/
Dwebrtcvoiceengine.h210 rtc_options.packet_id = options.packet_id; in SendRtp()
Dwebrtcvideoengine2.cc1544 rtc_options.packet_id = options.packet_id; in SendRtp()
/external/webrtc/webrtc/test/
Ddirect_transport.cc58 rtc::SentPacket sent_packet(options.packet_id, in SendRtp()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_sender.cc684 options.packet_id = in SendPadData()
689 transport_feedback_observer_->AddPacket(options.packet_id, length, true); in SendPadData()
710 int32_t RTPSender::ReSendPacket(uint16_t packet_id, int64_t min_resend_time) { in ReSendPacket() argument
715 if (!packet_history_.GetPacketAndSetSendTime(packet_id, min_resend_time, true, in ReSendPacket()
944 options.packet_id = in PrepareAndSendPacket()
949 transport_feedback_observer_->AddPacket(options.packet_id, length, true); in PrepareAndSendPacket()
Drtp_sender.h224 int32_t ReSendPacket(uint16_t packet_id, int64_t min_resend_time = 0);
/external/libnl/lib/netfilter/
Dqueue_msg.c89 nfnl_queue_msg_set_packetid(msg, ntohl(hdr->packet_id)); in nfnlmsg_queue_msg_parse()
/external/webrtc/webrtc/call/
Dcongestion_controller.cc290 transport_feedback_adapter_->OnSentPacket(sent_packet.packet_id, in OnSentPacket()
/external/webrtc/webrtc/p2p/base/
Ddtlstransportchannel_unittest.cc264 packet_options.packet_id = kFakePacketId; in SendPackets()
577 EXPECT_EQ(kFakePacketId, client1_.sent_packet().packet_id); in TEST_F()
Dfaketransportcontroller.h213 rtc::SentPacket sent_packet(options.packet_id, rtc::Time()); in SendPacket()
/external/webrtc/webrtc/video/
Dend_to_end_tests.cc1393 EXPECT_EQ(options.packet_id, in TEST_F()
1397 int64_t packet_id = unwrapper_.Unwrap(options.packet_id); in TEST_F() local
1398 EXPECT_TRUE(received_packed_ids_.insert(packet_id).second); in TEST_F()
3333 int64_t packet_id = in TEST_F() local
3335 EXPECT_TRUE(received_packet_ids_.insert(packet_id).second); in TEST_F()
/external/kernel-headers/original/uapi/drm/
Dradeon_drm.h194 unsigned char cmd_type, packet_id, pad0, pad1; member
/external/libdrm/include/drm/
Dradeon_drm.h194 unsigned char cmd_type, packet_id, pad0, pad1; member
/external/libpcap/
Dpcap-netfilter-linux.c156 id = ntohl(pkt_hdr->packet_id); in netfilter_read_linux()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_sanity.c527 int id = (int)header.packet.packet_id; in radeon_emit_packets()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_sanity.c805 int id = (int)header.packet.packet_id; in radeon_emit_packets()
/external/webrtc/talk/app/webrtc/
Dwebrtcsession_unittest.cc1332 options.packet_id = 10; in TestPacketOptions()
1337 EXPECT_EQ_WAIT(fake_call_.last_sent_packet().packet_id, 10, kPacketTimeout); in TestPacketOptions()