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.java990 static DhcpPacket decodeFullPacket(ByteBuffer packet, int pktType, byte[] optionsToSkip) in decodeFullPacket() argument
1039 if (pktType == ENCAP_L2) { in decodeFullPacket()
1059 if (pktType <= ENCAP_L3) { in decodeFullPacket()
1119 if (pktType > ENCAP_BOOTP || packet.remaining() < MIN_PACKET_LENGTH_BOOTP) { in decodeFullPacket()
1416 public static DhcpPacket decodeFullPacket(byte[] packet, int length, int pktType, in decodeFullPacket() argument
1420 return decodeFullPacket(buffer, pktType, optionsToSkip); in decodeFullPacket()
1431 public static DhcpPacket decodeFullPacket(byte[] packet, int length, int pktType) in decodeFullPacket() argument
1433 return decodeFullPacket(packet, length, pktType, new byte[0]); in decodeFullPacket()