Home | History | Annotate | Download | only in libpcap

Lines Matching defs:pbp

952 	struct packet_block *pbp;
1045 pbp = get_from_block_data(&cursor, sizeof(*pbp),
1047 if (pbp == NULL)
1055 interface_id = SWAPSHORT(pbp->interface_id);
1056 hdr->caplen = SWAPLONG(pbp->caplen);
1057 hdr->len = SWAPLONG(pbp->len);
1058 t = ((u_int64_t)SWAPLONG(pbp->timestamp_high)) << 32 |
1059 SWAPLONG(pbp->timestamp_low);
1061 interface_id = pbp->interface_id;
1062 hdr->caplen = pbp->caplen;
1063 hdr->len = pbp->len;
1064 t = ((u_int64_t)pbp->timestamp_high) << 32 |
1065 pbp->timestamp_low;