HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 76 - 100 of 551) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VMDebug/
VMDebugTest.java 48 CommandPacket packet = new CommandPacket( local
51 packet.setNextValueAsStringID(stringID);
52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ClassPathsTest.java 55 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
60 CommandPacket packet = new CommandPacket( local
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
ClassesBySignatureTest.java 56 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
61 CommandPacket packet = new CommandPacket( local
64 packet.setNextValueAsString(SIGNATURE001);
66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
98 packet = new CommandPacket(
101 packet.setNextValueAsReferenceTypeID(typeID);
103 replySignature = debuggeeWrapper.vmMirror.performCommand(packet);
ExitTest.java 62 CommandPacket packet = new CommandPacket( local
65 packet.setNextValueAsInt(EXIT_CODE);
67 debuggeeWrapper.vmMirror.performCommand(packet);
HoldEventsTest.java 66 CommandPacket packet = new CommandPacket( local
70 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
87 packet = new CommandPacket(
90 debuggeeWrapper.vmMirror.performCommand(packet);
IDSizesTest.java 52 CommandPacket packet = new CommandPacket( local
56 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
ReleaseEventsTest.java 76 CommandPacket packet = new CommandPacket( local
80 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
87 packet = new CommandPacket(
91 reply = debuggeeWrapper.vmMirror.performCommand(packet);
SuspendTest.java 57 CommandPacket packet = new CommandPacket( local
61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
80 packet = new CommandPacket(
83 packet.setNextValueAsReferenceTypeID(threadID);
85 replyName = debuggeeWrapper.vmMirror.performCommand(packet);
VersionTest.java 58 CommandPacket packet = new CommandPacket( local
62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/eigen/Eigen/src/Core/
ForceAlignedAccess.h 18 * \brief Enforce aligned packet loads and stores regardless of what is requested
20 * \param ExpressionType the type of the object of which we are forcing aligned packet access
70 inline const PacketScalar packet(Index row, Index col) const function in class:Eigen::ForceAlignedAccess
72 return m_expression.template packet<Aligned>(row, col);
82 inline const PacketScalar packet(Index index) const function in class:Eigen::ForceAlignedAccess
84 return m_expression.template packet<Aligned>(index);
NestByValue.h 70 inline const PacketScalar packet(Index row, Index col) const function in class:Eigen::NestByValue
72 return m_expression.template packet<LoadMode>(row, col);
82 inline const PacketScalar packet(Index index) const function in class:Eigen::NestByValue
84 return m_expression.template packet<LoadMode>(index);
  /external/iptables/include/linux/netfilter/
xt_statistic.h 29 __u32 packet; member in struct:xt_statistic_info::__anon22418::__anon22420
  /external/jmdns/src/javax/jmdns/impl/
SocketListener.java 38 DatagramPacket packet = new DatagramPacket(buf, buf.length); local
40 packet.setLength(buf.length);
41 this._jmDNSImpl.getSocket().receive(packet);
46 if (this._jmDNSImpl.getLocalHost().shouldIgnorePacket(packet)) {
50 DNSIncoming msg = new DNSIncoming(packet);
55 if (packet.getPort() != DNSConstants.MDNS_PORT) {
56 this._jmDNSImpl.handleQuery(msg, packet.getAddress(), packet.getPort());
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_statistic.h 30 __u32 packet; member in struct:xt_statistic_info::__anon23141::__anon23143
  /external/libopus/tests/
opus_decode_fuzzer.c 39 /* 4 bytes: packet length, 4 bytes: encoder final range */
57 * bytes 0..3: packet length
59 * bytes 8+ : Opus packet, including ToC
64 uint8_t *packet; local
82 packet = (uint8_t*) calloc(MAX_PACKET, sizeof(*packet));
104 /* Lost packet */
122 free(packet);
  /external/oj-libjdwp/src/share/back/
outStream.h 50 jdwpPacket packet; member in struct:PacketOutputStream
  /external/perfetto/src/tracing/core/
trace_writer_impl_unittest.cc 79 auto packet = writer->NewTracePacket(); local
82 packet->set_for_testing()->set_str(str);
85 // Destroying the TraceWriteImpl should cause the last packet to be finalized
  /external/perfetto/test/
test_helper.cc 61 protos::TracePacket packet; local
62 ASSERT_TRUE(encoded_packet.Decode(&packet));
63 if (packet.has_clock_snapshot() || packet.has_trace_config() ||
64 packet.has_trace_stats()) {
68 packet.optional_trusted_uid_case());
69 trace_.push_back(std::move(packet));
  /external/webrtc/talk/app/webrtc/
sctputils_unittest.cc 34 void VerifyOpenMessageFormat(const rtc::Buffer& packet,
44 rtc::ByteBuffer buffer(packet.data(), packet.length());
87 rtc::Buffer packet; local
88 ASSERT_TRUE(webrtc::WriteDataChannelOpenMessage(label, config, &packet));
90 VerifyOpenMessageFormat(packet, label, config);
95 packet, &output_label, &output_config));
111 rtc::Buffer packet; local
112 ASSERT_TRUE(webrtc::WriteDataChannelOpenMessage(label, config, &packet));
114 VerifyOpenMessageFormat(packet, label, config)
134 rtc::Buffer packet; local
152 rtc::Buffer packet; local
    [all...]
  /external/webrtc/talk/media/base/
rtpdump_unittest.cc 41 // Test that we read the correct header fields from the RTP/RTCP packet.
78 RtpDumpPacket packet; local
83 // Write a RTP packet to the stream, which is a valid RTP dump. Next, we will
88 EXPECT_EQ(rtc::SR_SUCCESS, reader->ReadPacket(&packet));
97 EXPECT_EQ(rtc::SR_SUCCESS, reader->ReadPacket(&packet));
106 EXPECT_EQ(rtc::SR_ERROR, reader->ReadPacket(&packet));
115 EXPECT_EQ(rtc::SR_ERROR, reader->ReadPacket(&packet));
128 RtpDumpPacket packet; local
131 EXPECT_EQ(rtc::SR_SUCCESS, reader.ReadPacket(&packet));
133 EXPECT_TRUE(GetRtpSsrc(&packet.data[0], packet.data.size(), &ssrc))
166 RtpDumpPacket packet; local
193 RtpDumpPacket packet; local
221 RtpDumpPacket packet; local
262 RtpDumpPacket packet; local
284 RtpDumpPacket packet; local
    [all...]
rtputils_unittest.cc 66 // Packet has only mandatory fixed RTCP header
113 unsigned char packet[] = { local
118 EXPECT_TRUE(SetRtpHeader(packet, sizeof(packet), header));
121 EXPECT_EQ(128u, packet[0]);
123 EXPECT_TRUE(GetRtpHeaderLen(packet, sizeof(packet), &len));
125 EXPECT_TRUE(GetRtpHeader(packet, sizeof(packet), &header));
  /external/webrtc/webrtc/call/
rtc_event_log2rtp_dump.cc 117 // TODO(ivoc): This can be refactored once the packet interpretation
143 webrtc::test::RtpPacket packet; local
144 packet.length = rtp_packet.header().size();
145 if (packet.length > packet.kMaxPacketBufferSize) {
146 std::cout << "Skipping packet with size " << packet.length
148 << packet.kMaxPacketBufferSize << std::endl;
151 packet.original_length = rtp_packet.packet_length();
152 if (packet.original_length > packet.length
183 webrtc::test::RtpPacket packet; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
decoder_database_unittest.cc 167 // Create packet with payload type |i|. The last packet will have a payload
169 Packet* packet = new Packet; local
170 packet->header.payloadType = i;
171 packet_list.push_back(packet);
174 // Expect to return false, since the last packet is of an unknown type.
timestamp_scaler_unittest.cc 16 #include "webrtc/modules/audio_coding/neteq/packet.h"
142 // Alternate between G.722 and CNG every other packet.
162 // Make sure that the method ToInternal(Packet* packet) is wired up correctly.
178 Packet packet; local
179 packet.header.payloadType = kRtpPayloadType;
181 packet.header.timestamp = external_timestamp;
183 scaler.ToInternal(&packet);
184 EXPECT_EQ(internal_timestamp, packet.header.timestamp)
300 Packet* packet = NULL; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtc_event_log_source.cc 20 #include "webrtc/modules/audio_coding/neteq/tools/packet.h"
78 Packet* RtcEventLogSource::NextPacket() {
87 Packet* packet = new Packet(packet_header, rtp_packet->header().size(), local
90 if (packet->valid_header()) {
91 // Check if the packet should not be filtered out.
92 if (!filter_.test(packet->header().payloadType) &&
93 !(use_ssrc_filter_ && packet->header().ssrc != ssrc_))
94 return packet;
    [all...]

Completed in 323 milliseconds

1 2 34 5 6 7 8 91011>>