Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/android/system/
DPacketSocketAddress.java36 public int sll_ifindex; field in PacketSocketAddress
48 public PacketSocketAddress(short sll_protocol, int sll_ifindex, in PacketSocketAddress() argument
51 this.sll_ifindex = sll_ifindex; in PacketSocketAddress()
60 public PacketSocketAddress(short sll_protocol, int sll_ifindex) { in PacketSocketAddress() argument
61 this(sll_protocol, sll_ifindex, (short) 0, (byte) 0, null); in PacketSocketAddress()
67 public PacketSocketAddress(int sll_ifindex, byte[] sll_addr) { in PacketSocketAddress() argument
68 this((short) 0, sll_ifindex, (short) 0, (byte) 0, sll_addr); in PacketSocketAddress()
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java561 assertEquals(lo.getIndex(), bound.sll_ifindex); in test_PacketSocketAddress()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp433 static_cast<jint>(sll->sll_ifindex), in makeSocketAddress()
702 sll->sll_ifindex = env->GetIntField(javaSocketAddress, ifindexFid); in javaPacketSocketAddressToSockaddr()