Home
last modified time | relevance | path

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

/external/openscreen/cast/streaming/
Dcompound_rtcp_parser.cc98 std::vector<FrameId> received_frames; in Parse() local
136 &received_frames, &packet_nacks)) { in Parse()
185 if (!received_frames.empty()) { in Parse()
186 OSP_DCHECK(AreElementsSortedAndUnique(received_frames)); in Parse()
187 client_->OnReceiverHasFrames(std::move(received_frames)); in Parse()
219 std::vector<FrameId>* received_frames, in ParseFeedback() argument
248 received_frames->clear(); in ParseFeedback()
300 received_frames->push_back(frame_id); in ParseFeedback()
Dcompound_rtcp_parser.h102 std::vector<FrameId>* received_frames,
Dsender_unittest.cc416 const std::map<FrameId, EncodedFrameWithBuffer> received_frames) { in ExpectFramesReceivedCorrectly() argument
417 ASSERT_EQ(sent_frames.size(), received_frames.size()); in ExpectFramesReceivedCorrectly()
422 const auto received_it = received_frames.find(sent_frame.frame_id); in ExpectFramesReceivedCorrectly()
423 if (received_it == received_frames.end()) { in ExpectFramesReceivedCorrectly()
/external/scapy/scapy/arch/bpf/
Dsupersocket.py209 received_frames = [] variable in L2bpfListenSocket
213 return len(self.received_frames)
217 if self.received_frames:
218 return self.received_frames.pop(0)
260 self.received_frames.append(pkt)