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