Lines Matching refs:pbp
1107 struct packet_block *pbp; in pcap_ng_next_packet() local
1200 pbp = get_from_block_data(&cursor, sizeof(*pbp), in pcap_ng_next_packet()
1202 if (pbp == NULL) in pcap_ng_next_packet()
1210 interface_id = SWAPSHORT(pbp->interface_id); in pcap_ng_next_packet()
1211 hdr->caplen = SWAPLONG(pbp->caplen); in pcap_ng_next_packet()
1212 hdr->len = SWAPLONG(pbp->len); in pcap_ng_next_packet()
1213 t = ((uint64_t)SWAPLONG(pbp->timestamp_high)) << 32 | in pcap_ng_next_packet()
1214 SWAPLONG(pbp->timestamp_low); in pcap_ng_next_packet()
1216 interface_id = pbp->interface_id; in pcap_ng_next_packet()
1217 hdr->caplen = pbp->caplen; in pcap_ng_next_packet()
1218 hdr->len = pbp->len; in pcap_ng_next_packet()
1219 t = ((uint64_t)pbp->timestamp_high) << 32 | in pcap_ng_next_packet()
1220 pbp->timestamp_low; in pcap_ng_next_packet()