HomeSort by relevance Sort by last modified time
    Searched refs:packetType (Results 1 - 7 of 7) sorted by null

  /external/smack/src/org/jivesoftware/smack/filter/
PacketTypeFilter.java 38 Class<? extends Packet> packetType;
42 * same type as <tt>packetType</tt>.
44 * @param packetType the Class type.
46 public PacketTypeFilter(Class<? extends Packet> packetType) {
48 if (!Packet.class.isAssignableFrom(packetType)) {
51 this.packetType = packetType;
55 return packetType.isInstance(packet);
59 return "PacketTypeFilter: " + packetType.getName();
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.h 56 uint8_t packetType,
97 status_t queueRawPacket(const sp<ABuffer> &tsPackets, uint8_t packetType);
98 status_t queueTSPackets(const sp<ABuffer> &tsPackets, uint8_t packetType);
99 status_t queueAVCBuffer(const sp<ABuffer> &accessUnit, uint8_t packetType);
RTPSender.cpp 185 const sp<ABuffer> &buffer, uint8_t packetType, PacketizationMode mode) {
190 err = queueRawPacket(buffer, packetType);
194 err = queueTSPackets(buffer, packetType);
198 err = queueAVCBuffer(buffer, packetType);
209 const sp<ABuffer> &packet, uint8_t packetType) {
221 rtp[1] = packetType;
249 const sp<ABuffer> &tsPackets, uint8_t packetType) {
266 rtp[1] = packetType;
312 const sp<ABuffer> &accessUnit, uint8_t packetType) {
433 dst[1] = packetType;
    [all...]
  /frameworks/base/services/common_time/
common_time_server_packets.cpp 81 int16_t pktType = static_cast<int16_t>(packetType);
99 packetType = static_cast<TimeServicePacketType>(tmp);
114 switch (packetType) {
152 packetType = ntohs(*((uint16_t*)(data + 6)));
153 switch (packetType) {
common_time_server_packets.h 45 TimeServicePacketType packetType;
62 packetType = type;
171 uint16_t packetType;
common_time_server.cpp 640 switch (pkt.packetType) {
670 pkt.packetType, srcEPStr);
    [all...]
  /external/tcpdump/
print-rx.c 73 int packetType; /* Packet type */
470 (!rx_flags[i].packetType ||
471 rxh->type == rx_flags[i].packetType)) {
    [all...]

Completed in 700 milliseconds