Home
last modified time | relevance | path

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

/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpPacket.java995 static DhcpPacket decodeFullPacket(ByteBuffer packet, int pktType, byte[] optionsToSkip) in decodeFullPacket() argument
1044 if (pktType == ENCAP_L2) { in decodeFullPacket()
1064 if (pktType <= ENCAP_L3) { in decodeFullPacket()
1124 if (pktType > ENCAP_BOOTP || packet.remaining() < MIN_PACKET_LENGTH_BOOTP) { in decodeFullPacket()
1421 public static DhcpPacket decodeFullPacket(byte[] packet, int length, int pktType, in decodeFullPacket() argument
1425 return decodeFullPacket(buffer, pktType, optionsToSkip); in decodeFullPacket()
1436 public static DhcpPacket decodeFullPacket(byte[] packet, int length, int pktType) in decodeFullPacket() argument
1438 return decodeFullPacket(packet, length, pktType, new byte[0]); in decodeFullPacket()