Home
last modified time | relevance | path

Searched refs:current_packet (Results 1 – 4 of 4) sorted by relevance

/external/scapy/scapy/layers/
Dntp.py343 current_packet = self.m2i(pkt, current)
344 lst.append(current_packet)
1526 current_packet = self.m2i(pkt, current)
1527 lst.append(current_packet)
1644 current_packet = self.m2i(pkt, current)
1645 lst.append(current_packet)
1651 current_packet = conf.raw_layer(remain[:padding_end])
1652 lst.append(current_packet)
Deap.py720 current_packet = self.m2i(pkt, current)
721 lst.append(current_packet)
/external/libpcap/
Dpcap-linux.c193 …unsigned char *current_packet; /* Current packet within the TPACKET_V3 block. Move to next block i… member
4064 if (handlep->current_packet == NULL) { in pcap_read_linux_mmap_v3()
4092 if (handlep->current_packet == NULL) { in pcap_read_linux_mmap_v3()
4097 handlep->current_packet = h.raw + h.h3->hdr.bh1.offset_to_first_pkt; in pcap_read_linux_mmap_v3()
4114 struct tpacket3_hdr* tp3_hdr = (struct tpacket3_hdr*) handlep->current_packet; in pcap_read_linux_mmap_v3()
4119 handlep->current_packet, in pcap_read_linux_mmap_v3()
4131 handlep->current_packet = NULL; in pcap_read_linux_mmap_v3()
4134 handlep->current_packet += tp3_hdr->tp_next_offset; in pcap_read_linux_mmap_v3()
4162 handlep->current_packet = NULL; in pcap_read_linux_mmap_v3()
/external/webrtc/modules/audio_coding/neteq/
Dneteq_impl.cc646 const Packet& current_packet = (*it); in InsertPacketInternal() local
647 RTC_DCHECK(!current_packet.payload.empty()); in InsertPacketInternal()
648 if (decoder_database_->IsDtmf(current_packet.payload_type)) { in InsertPacketInternal()
650 int ret = DtmfBuffer::ParseEvent(current_packet.timestamp, in InsertPacketInternal()
651 current_packet.payload.data(), in InsertPacketInternal()
652 current_packet.payload.size(), &event); in InsertPacketInternal()