Searched refs:makeErrorCode (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/net/metrics/ |
D | DhcpErrorEvent.java | 37 public static final int L2_TOO_SHORT = makeErrorCode(L2_ERROR, 1); 38 public static final int L2_WRONG_ETH_TYPE = makeErrorCode(L2_ERROR, 2); 40 public static final int L3_TOO_SHORT = makeErrorCode(L3_ERROR, 1); 41 public static final int L3_NOT_IPV4 = makeErrorCode(L3_ERROR, 2); 42 public static final int L3_INVALID_IP = makeErrorCode(L3_ERROR, 3); 44 public static final int L4_NOT_UDP = makeErrorCode(L4_ERROR, 1); 45 public static final int L4_WRONG_PORT = makeErrorCode(L4_ERROR, 2); 47 public static final int BOOTP_TOO_SHORT = makeErrorCode(DHCP_ERROR, 1); 48 public static final int DHCP_BAD_MAGIC_COOKIE = makeErrorCode(DHCP_ERROR, 2); 49 public static final int DHCP_INVALID_OPTION_LENGTH = makeErrorCode(DHCP_ERROR, 3); [all …]
|