Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/net/
DMulticastSocket.java217 getImpl().setTTL(ttl); in setTTL()
245 getImpl().setTimeToLive(ttl); in setTimeToLive()
263 return getImpl().getTTL(); in getTTL()
277 return getImpl().getTimeToLive(); in getTimeToLive()
323 getImpl().join(mcastaddr); in joinGroup()
358 getImpl().leave(mcastaddr); in leaveGroup()
406 getImpl().joinGroup(mcastaddr, netIf); in joinGroup()
453 getImpl().leaveGroup(mcastaddr, netIf); in leaveGroup()
471 getImpl().setOption(SocketOptions.IP_MULTICAST_IF, inf); in setInterface()
496 (InetAddress)getImpl().getOption(SocketOptions.IP_MULTICAST_IF); in getInterface()
[all …]
DDatagramSocket.java168 getImpl().connect(address, port); in connectInternal()
174 int avail = getImpl().dataAvailable(); in connectInternal()
370 DatagramSocketImpl getImpl() throws SocketException { in getImpl() method in DatagramSocket
411 getImpl().bind(port, iaddr); in bind()
413 getImpl().close(); in bind()
721 getImpl().send(p); in send()
778 peekPort = getImpl().peekData(peekPacket); in receive()
782 peekPort = getImpl().peek(adr); in receive()
794 getImpl().receive(tmp); in receive()
822 peekPort = getImpl().peekData(peekPacket); in receive()
[all …]
DSocket.java545 SocketImpl getImpl() throws SocketException { in getImpl() method in Socket
671 getImpl().bind (addr, port); in bind()
719 return getImpl().getInetAddress(); in getInetAddress()
746 in = (InetAddress) getImpl().getOption(SocketOptions.SO_BINDADDR); in getLocalAddress()
775 return getImpl().getPort(); in getPort()
796 return getImpl().getLocalPort(); in getLocalPort()
1007 getImpl().setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on)); in setTcpNoDelay()
1023 return ((Boolean) getImpl().getOption(SocketOptions.TCP_NODELAY)).booleanValue(); in getTcpNoDelay()
1045 getImpl().setOption(SocketOptions.SO_LINGER, new Boolean(on)); in setSoLinger()
1052 getImpl().setOption(SocketOptions.SO_LINGER, new Integer(linger)); in setSoLinger()
[all …]
DSocketSecrets.java40 impl = ((Socket)obj).getImpl(); in setOption()
42 impl = ((ServerSocket)obj).getImpl(); in setOption()
53 impl = ((Socket)obj).getImpl(); in getOption()
55 impl = ((ServerSocket)obj).getImpl(); in getOption()
63 s.getImpl().setOption(name, value); in setOption()
67 return s.getImpl().getOption(name); in getOption()
DServerSocket.java256 public SocketImpl getImpl() throws SocketException { in getImpl() method in ServerSocket
376 getImpl().bind(epoint.getAddress(), epoint.getPort()); in bind()
377 getImpl().listen(backlog); in bind()
410 InetAddress in = getImpl().getInetAddress(); in getInetAddress()
439 return getImpl().getLocalPort(); in getLocalPort()
547 getImpl().accept(si); in implAccept()
654 getImpl().setOption(SocketOptions.SO_TIMEOUT, new Integer(timeout)); in setSoTimeout()
668 Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT); in getSoTimeout()
716 getImpl().setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(on)); in setReuseAddress()
732 return ((Boolean) (getImpl().getOption(SocketOptions.SO_REUSEADDR))).booleanValue(); in getReuseAddress()
[all …]
/libcore/ojluni/src/main/java/java/security/
DAlgorithmParameterGenerator.java182 Object[] objs = Security.getImpl(algorithm, in getInstance()
235 Object[] objs = Security.getImpl(algorithm, in getInstance()
279 Object[] objs = Security.getImpl(algorithm, in getInstance()
DAlgorithmParameters.java235 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", in getInstance()
288 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", in getInstance()
333 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", in getInstance()
DMessageDigest.java199 Object[] objs = Security.getImpl(algorithm, "MessageDigest", in getInstance()
262 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider); in getInstance()
310 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider); in getInstance()
DSecurity.java587 static Object[] getImpl(String algorithm, String type, String provider) in getImpl() method in Security
598 static Object[] getImpl(String algorithm, String type, String provider, in getImpl() method in Security
617 static Object[] getImpl(String algorithm, String type, Provider provider) in getImpl() method in Security
623 static Object[] getImpl(String algorithm, String type, Provider provider, in getImpl() method in Security
DKeyStore.java887 Object[] objs = Security.getImpl(type, "KeyStore", (String)null); in getInstance()
935 Object[] objs = Security.getImpl(type, "KeyStore", provider); in getInstance()
976 Object[] objs = Security.getImpl(type, "KeyStore", provider); in getInstance()
/libcore/dom/src/test/java/org/w3c/domts/
DBatikTestDocumentBuilderFactory.java158 Method getImpl = in getDOMImplementation() local
163 (DOMImplementation) getImpl.invoke(null, new Object[0]); in getDOMImplementation()
/libcore/luni/src/test/java/libcore/java/io/
DFileDescriptorTest.java40 assertTrue(s.getImpl().getFD$().isSocket$()); in test_isSocket()
/libcore/luni/src/test/java/libcore/io/
DOsTest.java59 assertTrue(S_ISSOCK(Libcore.os.fstat(s.getImpl().getFD$()).st_mode)); in testIsSocket()