Searched refs:family (Results 1 - 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
H A DDop.java26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */
27 private final int family; field in class:Dop
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
49 public Dop(int opcode, int family, InsnFormat format, argument
55 if ((family < DalvOps.MIN_VALUE) || (family > DalvOps.MAX_VALUE)) {
56 throw new IllegalArgumentException("bogus family");
68 this.family = family;
[all...]
H A DOutputFinisher.java497 int family = dop.getFamily();
503 (Dops.getOrNull(family, format) != null))) {
H A DDops.java1194 * Gets the {@link Dop} with the given family/format combination, if
1197 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
1202 public static Dop getOrNull(int family, InsnFormat format) { argument
1213 (dop.getFamily() == family) &&
/dalvik/libcore/luni/src/main/native/
H A Difaddrs-android.h89 // Netlink gives us the address family in the header, and the
93 void setAddress(int family, void* data, size_t byteCount) { argument
95 ss->ss_family = family;
96 if (family == AF_INET) {
99 } else if (family == AF_INET6) {
163 int family = address->ifa_family; local
164 if (family == AF_INET || family == AF_INET6) {
169 (*result)->setAddress(family, RTA_DATA(rta), RTA_PAYLOAD(rta));
H A Djava_net_NetworkInterface.cpp115 int family = ifa->ifa_addr->sa_family; local
116 if (family != AF_INET && family != AF_INET6) {
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp70 #define SOCKERR_BADAF -202 /* bad address family */
235 jniThrowException(env, "java/lang/IllegalArgumentException", "Bad address family");
282 * @return the port number, or -1 if the address family is unknown.
296 * Obtain the socket address family from an existing socket.
299 * @return an integer, the address family of the socket
647 return "Bad address family";
1120 int family = getSocketAddressFamily(socket); local
1121 switch (family) {
1174 int family = getSocketAddressFamily(socket); local
1177 if (family
1297 int family = getSocketAddressFamily(handle); local
[all...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DInet4Address.java41 family = AF_INET;
46 family = AF_INET;
H A DInet6Address.java55 family = AF_INET6;
61 family = AF_INET6;
79 family = AF_INET6;
H A DInetAddress.java86 int family = 0; field in class:InetAddress
1149 new ObjectStreamField("family", Integer.TYPE), //$NON-NLS-1$
1159 fields.put("family", family); //$NON-NLS-1$
1172 family = fields.get("family", 2); //$NON-NLS-1$

Completed in 183 milliseconds