Home
last modified time | relevance | path

Searched refs:frame_type (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DStackMapEntry.java37 private int frame_type; field in StackMapEntry
53 if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { in StackMapEntry()
54 byte_code_offset = frame_type - Const.SAME_FRAME; in StackMapEntry()
55 } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME && in StackMapEntry()
56 frame_type <= Const.SAME_LOCALS_1_STACK_ITEM_FRAME_MAX) { in StackMapEntry()
57 byte_code_offset = frame_type - Const.SAME_LOCALS_1_STACK_ITEM_FRAME; in StackMapEntry()
60 } else if (frame_type == Const.SAME_LOCALS_1_STACK_ITEM_FRAME_EXTENDED) { in StackMapEntry()
64 } else if (frame_type >= Const.CHOP_FRAME && frame_type <= Const.CHOP_FRAME_MAX) { in StackMapEntry()
66 } else if (frame_type == Const.SAME_FRAME_EXTENDED) { in StackMapEntry()
68 } else if (frame_type >= Const.APPEND_FRAME && frame_type <= Const.APPEND_FRAME_MAX) { in StackMapEntry()
[all …]
/external/cronet/net/spdy/
Dspdy_write_queue_unittest.cc130 spdy::SpdyFrameType frame_type = spdy::SpdyFrameType::DATA; in TEST_F() local
134 ASSERT_TRUE(write_queue.Dequeue(&frame_type, &frame_producer, &stream, in TEST_F()
136 EXPECT_EQ(spdy::SpdyFrameType::RST_STREAM, frame_type); in TEST_F()
140 ASSERT_TRUE(write_queue.Dequeue(&frame_type, &frame_producer, &stream, in TEST_F()
142 EXPECT_EQ(spdy::SpdyFrameType::HEADERS, frame_type); in TEST_F()
146 ASSERT_TRUE(write_queue.Dequeue(&frame_type, &frame_producer, &stream, in TEST_F()
148 EXPECT_EQ(spdy::SpdyFrameType::HEADERS, frame_type); in TEST_F()
152 EXPECT_FALSE(write_queue.Dequeue(&frame_type, &frame_producer, &stream, in TEST_F()
179 spdy::SpdyFrameType frame_type = spdy::SpdyFrameType::DATA; in TEST_F() local
183 ASSERT_TRUE(write_queue.Dequeue(&frame_type, &frame_producer, &stream, in TEST_F()
[all …]
Dspdy_write_queue.cc20 bool IsSpdyFrameTypeWriteCapped(spdy::SpdyFrameType frame_type) { in IsSpdyFrameTypeWriteCapped() argument
21 return frame_type == spdy::SpdyFrameType::RST_STREAM || in IsSpdyFrameTypeWriteCapped()
22 frame_type == spdy::SpdyFrameType::SETTINGS || in IsSpdyFrameTypeWriteCapped()
23 frame_type == spdy::SpdyFrameType::WINDOW_UPDATE || in IsSpdyFrameTypeWriteCapped()
24 frame_type == spdy::SpdyFrameType::PING || in IsSpdyFrameTypeWriteCapped()
25 frame_type == spdy::SpdyFrameType::GOAWAY; in IsSpdyFrameTypeWriteCapped()
31 spdy::SpdyFrameType frame_type, in PendingWrite() argument
35 : frame_type(frame_type), in PendingWrite()
64 spdy::SpdyFrameType frame_type, in Enqueue() argument
74 {frame_type, std::move(frame_producer), stream, in Enqueue()
[all …]
Dspdy_write_queue.h22 spdy::SpdyFrameType frame_type);
48 spdy::SpdyFrameType frame_type,
57 bool Dequeue(spdy::SpdyFrameType* frame_type,
87 spdy::SpdyFrameType frame_type; member
95 PendingWrite(spdy::SpdyFrameType frame_type,
/external/cronet/net/third_party/quiche/src/quiche/quic/core/http/
Dquic_receive_control_stream.cc176 uint64_t frame_type, QuicByteCount /*header_length*/, in OnUnknownFrameStart() argument
179 spdy_session()->debug_visitor()->OnUnknownFrameReceived(id(), frame_type, in OnUnknownFrameStart()
183 return ValidateFrameType(static_cast<HttpFrameType>(frame_type)); in OnUnknownFrameStart()
197 bool QuicReceiveControlStream::ValidateFrameType(HttpFrameType frame_type) { in ValidateFrameType() argument
199 if (frame_type == HttpFrameType::DATA || in ValidateFrameType()
200 frame_type == HttpFrameType::HEADERS || in ValidateFrameType()
202 frame_type == HttpFrameType::MAX_PUSH_ID) || in ValidateFrameType()
204 frame_type == HttpFrameType::ACCEPT_CH)) { in ValidateFrameType()
207 absl::StrCat("Invalid frame type ", static_cast<int>(frame_type), in ValidateFrameType()
213 if (frame_type == HttpFrameType::SETTINGS) { in ValidateFrameType()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/spdy/core/
Dspdy_protocol.cc22 std::ostream& operator<<(std::ostream& out, SpdyFrameType frame_type) { in operator <<() argument
23 return out << SerializeFrameType(frame_type); in operator <<()
100 uint8_t SerializeFrameType(SpdyFrameType frame_type) { in SerializeFrameType() argument
101 return static_cast<uint8_t>(frame_type); in SerializeFrameType()
132 const char* FrameTypeToString(SpdyFrameType frame_type) { in FrameTypeToString() argument
133 switch (frame_type) { in FrameTypeToString()
340 SpdyFrameType SpdyDataIR::frame_type() const { return SpdyFrameType::DATA; } in frame_type() function in spdy::SpdyDataIR
363 SpdyFrameType SpdyRstStreamIR::frame_type() const { in frame_type() function in spdy::SpdyRstStreamIR
377 SpdyFrameType SpdySettingsIR::frame_type() const { in frame_type() function in spdy::SpdySettingsIR
389 SpdyFrameType SpdyPingIR::frame_type() const { return SpdyFrameType::PING; } in frame_type() function in spdy::SpdyPingIR
[all …]
Dspdy_protocol.h172 SpdyFrameType frame_type);
253 QUICHE_EXPORT uint8_t SerializeFrameType(SpdyFrameType frame_type);
262 QUICHE_EXPORT const char* FrameTypeToString(SpdyFrameType frame_type);
451 virtual SpdyFrameType frame_type() const = 0;
573 SpdyFrameType frame_type() const override;
603 SpdyFrameType frame_type() const override;
627 SpdyFrameType frame_type() const override;
648 SpdyFrameType frame_type() const override;
693 SpdyFrameType frame_type() const override;
715 SpdyFrameType frame_type() const override;
[all …]
/external/webrtc/modules/rtp_rtcp/source/
Drtp_sender_audio.cc38 [[maybe_unused]] const char* FrameTypeToString(AudioFrameType frame_type) { in FrameTypeToString() argument
39 switch (frame_type) { in FrameTypeToString()
106 bool RTPSenderAudio::MarkerBit(AudioFrameType frame_type, int8_t payload_type) { in MarkerBit() argument
121 if (frame_type != AudioFrameType::kAudioFrameCN) { in MarkerBit()
140 if (frame_type == AudioFrameType::kAudioFrameCN) { in MarkerBit()
149 bool RTPSenderAudio::SendAudio(AudioFrameType frame_type, in SendAudio() argument
154 return SendAudio(frame_type, payload_type, rtp_timestamp, payload_data, in SendAudio()
160 bool RTPSenderAudio::SendAudio(AudioFrameType frame_type, in SendAudio() argument
167 FrameTypeToString(frame_type)); in SendAudio()
203 if (frame_type == AudioFrameType::kEmptyFrame) { in SendAudio()
[all …]
Drtp_sender_video_unittest.cc216 hdr.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
242 hdr.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
261 hdr.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
267 hdr.frame_type = VideoFrameType::kVideoFrameDelta; in TEST_F()
285 hdr.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
290 hdr.frame_type = VideoFrameType::kVideoFrameDelta; in TEST_F()
530 hdr.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
556 hdr.frame_type = VideoFrameType::kVideoFrameDelta; in TEST_F()
605 hdr.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
621 hdr.frame_type = VideoFrameType::kVideoFrameDelta; in TEST_F()
[all …]
/external/webrtc/modules/video_coding/
Ddecoding_state_unittest.cc41 packet.video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST()
53 packet.video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST()
58 packet.video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST()
174 packet.video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST()
189 packet.video_header.frame_type = VideoFrameType::kEmptyFrame; in TEST()
196 packet.video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST()
204 packet.video_header.frame_type = VideoFrameType::kEmptyFrame; in TEST()
218 packet.video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST()
269 packet.video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST()
283 packet.video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST()
[all …]
Djitter_buffer_unittest.cc66 video_header.frame_type = VideoFrameType::kVideoFrameDelta; in SetUp()
170 VCMFrameBufferEnum InsertFrame(VideoFrameType frame_type) { in InsertFrame() argument
172 frame_type, (frame_type != VideoFrameType::kEmptyFrame) ? 1 : 0, in InsertFrame()
173 (frame_type == VideoFrameType::kEmptyFrame) ? 1 : 0, in InsertFrame()
180 VCMFrameBufferEnum InsertFrames(int num_frames, VideoFrameType frame_type) { in InsertFrames() argument
183 VCMFrameBufferEnum ret = InsertFrame(frame_type); in InsertFrames()
242 packet_->video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
258 packet_->video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
285 packet_->video_header.frame_type = VideoFrameType::kVideoFrameKey;
329 packet_->video_header.frame_type = VideoFrameType::kVideoFrameKey;
[all …]
Dvideo_receiver_unittest.cc95 video_header.frame_type = VideoFrameType::kEmptyFrame; in GetDefaultVp8Header()
160 video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
167 video_header.frame_type = VideoFrameType::kEmptyFrame; in TEST_F()
211 video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST_F()
213 video_header.frame_type = VideoFrameType::kVideoFrameDelta; in TEST_F()
223 video_header.frame_type = VideoFrameType::kEmptyFrame; in TEST_F()
/external/autotest/client/common_lib/cros/network/
Dtcpdump_analyzer.py34 frame_type): argument
40 self._frame_type = frame_type
56 def frame_type(self): member in Frame
97 self.source_addr, self.frame_type)
194 frame_type = _fetch_frame_field_value(
196 if (frame_type in [WLAN_BEACON_FRAME_TYPE, WLAN_PROBE_REQ_FRAME_TYPE]):
207 frame_type=frame_type))
/external/cronet/net/third_party/quiche/src/quiche/http2/test_tools/
Dpayload_decoder_base_test_util.h142 auto frame_type = DecoderPeer::FrameType(); in SetUp() local
144 EXPECT_TRUE(IsSupportedHttp2FrameType(frame_type)) << frame_type; in SetUp()
146 EXPECT_FALSE(IsSupportedHttp2FrameType(frame_type)) << frame_type; in SetUp()
149 auto known_flags = KnownFlagsMaskForFrameType(frame_type); in SetUp()
252 Http2FrameType frame_type = DecoderPeer::FrameType(); in VerifyDetectsMultipleFrameSizeErrors() local
254 required_flags & KnownFlagsMaskForFrameType(frame_type)); in VerifyDetectsMultipleFrameSizeErrors()
260 (Http2FrameFlag::PADDED & KnownFlagsMaskForFrameType(frame_type))) { in VerifyDetectsMultipleFrameSizeErrors()
294 Http2FrameHeader header(fb.size(), frame_type, flags, stream_id); in VerifyDetectsMultipleFrameSizeErrors()
307 Http2FrameType frame_type = DecoderPeer::FrameType(); in VerifyDetectsFrameSizeError() local
308 uint8_t known_flags = KnownFlagsMaskForFrameType(frame_type); in VerifyDetectsFrameSizeError()
/external/libvpx/vp8/
Dvp8_ratectrl_rtc.cc206 cm->frame_type = frame_params.frame_type; in ComputeQP()
207 cm->refresh_golden_frame = (cm->frame_type == KEY_FRAME) ? 1 : 0; in ComputeQP()
208 cm->refresh_alt_ref_frame = (cm->frame_type == KEY_FRAME) ? 1 : 0; in ComputeQP()
209 if (cm->frame_type == KEY_FRAME && cpi_->common.current_video_frame > 0) { in ComputeQP()
242 if (cm->frame_type == KEY_FRAME) { in ComputeQP()
295 cpi_->last_q[cm->frame_type] = cm->base_qindex; in PostEncodeUpdate()
297 if (cm->frame_type == KEY_FRAME) { in PostEncodeUpdate()
302 if (cm->frame_type != KEY_FRAME) { in PostEncodeUpdate()
309 if (cm->frame_type != KEY_FRAME) { in PostEncodeUpdate()
/external/openthread/tests/scripts/thread-cert/
Dmac802154.py116 frame_type, argument
131 self.frame_type = frame_type
197 frame_type = fc & 0x0007
207 if frame_type == MacHeader.FrameType.ACK:
210 frame_type,
337 if frame_type == MacHeader.FrameType.COMMAND:
355 if frame_type == MacHeader.FrameType.COMMAND:
362 frame_type,
Dtest_mac802154.py48 self.assertEqual(mac802154.MacHeader.FrameType.ACK, frame.header.frame_type)
61 self.assertEqual(mac802154.MacHeader.FrameType.DATA, frame.header.frame_type)
83 self.assertEqual(mac802154.MacHeader.FrameType.DATA, frame.header.frame_type)
107 self.assertEqual(mac802154.MacHeader.FrameType.DATA, frame.header.frame_type)
130 self.assertEqual(mac802154.MacHeader.FrameType.DATA, frame.header.frame_type)
148 self.assertEqual(mac802154.MacHeader.FrameType.COMMAND, frame.header.frame_type)
229 self.assertEqual(mac802154.MacHeader.FrameType.DATA, frame.header.frame_type)
261 self.assertEqual(mac802154.MacHeader.FrameType.COMMAND, frame.header.frame_type)
/external/libvpx/test/
Dvp9_ext_ratectrl_test.cc169 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeKey); in rc_get_encodeframe_decision()
179 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeAltRef); in rc_get_encodeframe_decision()
192 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeInter); in rc_get_encodeframe_decision()
196 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeOverlay); in rc_get_encodeframe_decision()
232 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeKey); in rc_get_encodeframe_decision_gop()
242 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeInter); in rc_get_encodeframe_decision_gop()
254 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeKey); in rc_get_encodeframe_decision_gop()
264 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeAltRef); in rc_get_encodeframe_decision_gop()
269 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeOverlay); in rc_get_encodeframe_decision_gop()
272 EXPECT_EQ(encode_frame_info->frame_type, vp9::kFrameTypeInter); in rc_get_encodeframe_decision_gop()
[all …]
/external/webrtc/test/pc/e2e/analyzer/video/
Ddefault_video_quality_analyzer_frame_in_flight.cc88 VideoFrameType frame_type, in OnFrameEncoded() argument
94 frame_type_ = frame_type; in OnFrameEncoded()
117 VideoFrameType frame_type, in OnFramePreDecode() argument
121 receiver_stats_[peer].frame_type = frame_type; in OnFramePreDecode()
201 stats.pre_decoded_frame_type = receiver_stats->frame_type; in GetStatsForPeer()
/external/libaom/av1/encoder/
Dratectrl.c164 int av1_get_bpmb_enumerator(FRAME_TYPE frame_type, in av1_get_bpmb_enumerator() argument
169 enumerator = (frame_type == KEY_FRAME) ? 1000000 : 750000; in av1_get_bpmb_enumerator()
171 enumerator = (frame_type == KEY_FRAME) ? 2000000 : 1500000; in av1_get_bpmb_enumerator()
177 int av1_rc_bits_per_mb(const AV1_COMP *cpi, FRAME_TYPE frame_type, int qindex, in av1_rc_bits_per_mb() argument
186 if (frame_type != KEY_FRAME && accurate_estimate) { in av1_rc_bits_per_mb()
202 av1_get_bpmb_enumerator(frame_type, is_screen_content_type); in av1_rc_bits_per_mb()
213 const FRAME_TYPE frame_type = cm->current_frame.frame_type; in av1_estimate_bits_at_q() local
216 (int)(av1_rc_bits_per_mb(cpi, frame_type, q, correction_factor, in av1_estimate_bits_at_q()
501 if (cm->current_frame.frame_type != KEY_FRAME && !cpi->ppi->use_svc && in adjust_q_cbr()
610 if (cpi->common.current_frame.frame_type == KEY_FRAME) { in get_rate_correction_factor()
[all …]
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/cfg80211/rdev_mgmt_frame_register/
Dformat11 field:u16 frame_type; offset:44; size:2; signed:0;
14 print fmt: "%s, wdev(%u), frame_type: 0x%.2x, reg: %s ", REC->wiphy_name, (REC->id), REC->frame_typ…
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/cfg80211/rdev_mgmt_frame_register/
Dformat11 field:u16 frame_type; offset:44; size:2; signed:0;
14 print fmt: "%s, wdev(%u), frame_type: 0x%.2x, reg: %s ", REC->wiphy_name, (REC->id), REC->frame_typ…
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/cfg80211/rdev_mgmt_frame_register/
Dformat11 field:u16 frame_type; offset:44; size:2; signed:0;
14 print fmt: "%s, wdev(%u), frame_type: 0x%.2x, reg: %s ", REC->wiphy_name, (REC->id), REC->frame_typ…
/external/webrtc/sdk/android/src/jni/
Dencoded_image.cc50 VideoFrameType frame_type) { in NativeToJavaFrameType() argument
51 return Java_FrameType_fromNativeIndex(env, static_cast<int>(frame_type)); in NativeToJavaFrameType()
59 ScopedJavaLocalRef<jobject> frame_type = in NativeToJavaEncodedImage() local
71 image.capture_time_ms_ * rtc::kNumNanosecsPerMillisec, frame_type, in NativeToJavaEncodedImage()
/external/cronet/net/third_party/quiche/src/quiche/http2/adapter/
Doghttp2_session.cc42 frame_type_ = static_cast<uint8_t>(data.frame_type()); in VisitData()
48 frame_type_ = static_cast<uint8_t>(headers.frame_type()); in VisitHeaders()
55 frame_type_ = static_cast<uint8_t>(priority.frame_type()); in VisitPriority()
60 frame_type_ = static_cast<uint8_t>(rst_stream.frame_type()); in VisitRstStream()
66 frame_type_ = static_cast<uint8_t>(settings.frame_type()); in VisitSettings()
71 frame_type_ = static_cast<uint8_t>(push_promise.frame_type()); in VisitPushPromise()
77 frame_type_ = static_cast<uint8_t>(ping.frame_type()); in VisitPing()
82 frame_type_ = static_cast<uint8_t>(goaway.frame_type()); in VisitGoAway()
88 frame_type_ = static_cast<uint8_t>(window_update.frame_type()); in VisitWindowUpdate()
94 frame_type_ = static_cast<uint8_t>(continuation.frame_type()); in VisitContinuation()
[all …]

12345678910>>...14