Home | History | Annotate | Download | only in test

Lines Matching refs:Read

120 // Read RTP packets from file in rtpdump format, as documented at:
142 DEBUG_LOG("ERROR: Can't read from file\n");
246 // Read RTP packets from file in tcpdump/libpcap format, as documented at:
363 TRY_PCAP(Read(data, next_packet_it_->payload_length));
391 TRY_PCAP(Read(&magic, false));
402 TRY_PCAP(Read(&version_major, false));
403 TRY_PCAP(Read(&version_minor, false));
413 TRY_PCAP(Read(&this_zone, false));
414 TRY_PCAP(Read(&sigfigs, false));
415 TRY_PCAP(Read(&snaplen, false));
416 TRY_PCAP(Read(&network, false));
437 TRY_PCAP(Read(&ts_sec, false));
438 TRY_PCAP(Read(&ts_usec, false));
439 TRY_PCAP(Read(&incl_len, false));
440 TRY_PCAP(Read(&orig_len, false));
454 TRY_PCAP(Read(read_buffer_, marker.payload_length));
487 TRY_PCAP(Read(&protocol, true));
501 TRY_PCAP(Read(&type, true));
534 TRY_PCAP(Read(&version, true));
535 TRY_PCAP(Read(&length, true));
536 TRY_PCAP(Read(&id, true));
537 TRY_PCAP(Read(&fragment, true));
538 TRY_PCAP(Read(&protocol, true));
539 TRY_PCAP(Read
540 TRY_PCAP(Read(&marker->source_ip, true));
541 TRY_PCAP(Read(&marker->dest_ip, true));
566 TRY_PCAP(Read(&marker->source_port, true));
567 TRY_PCAP(Read(&marker->dest_port, true));
568 TRY_PCAP(Read(&length, true));
569 TRY_PCAP(Read(&checksum, true));
579 int Read(uint32_t* out, bool expect_network_order) {
593 int Read(uint16_t* out, bool expect_network_order) {
606 int Read(uint8_t* out, uint32_t count) {
613 int Read(int32_t* out, bool expect_network_order) {