Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/net/
DDatagramSocket.java171 getImpl().connect(address, port); in connectInternal()
177 int avail = getImpl().dataAvailable(); in connectInternal()
373 DatagramSocketImpl getImpl() throws SocketException { in getImpl() method in DatagramSocket
414 getImpl().bind(port, iaddr); in bind()
416 getImpl().close(); in bind()
723 getImpl().send(p); in send()
780 peekPort = getImpl().peekData(peekPacket); in receive()
784 peekPort = getImpl().peek(adr); in receive()
796 getImpl().receive(tmp); in receive()
824 peekPort = getImpl().peekData(peekPacket); in receive()
[all …]
DMulticastSocket.java223 getImpl().setTTL(ttl); in setTTL()
251 getImpl().setTimeToLive(ttl); in setTimeToLive()
269 return getImpl().getTTL(); in getTTL()
283 return getImpl().getTimeToLive(); in getTimeToLive()
330 getImpl().join(mcastaddr); in joinGroup()
365 getImpl().leave(mcastaddr); in leaveGroup()
414 getImpl().joinGroup(mcastaddr, netIf); in joinGroup()
461 getImpl().leaveGroup(mcastaddr, netIf); in leaveGroup()
479 getImpl().setOption(SocketOptions.IP_MULTICAST_IF, inf); in setInterface()
504 (InetAddress)getImpl().getOption(SocketOptions.IP_MULTICAST_IF); in getInterface()
[all …]
DSocket.java575 SocketImpl getImpl() throws SocketException { in getImpl() method in Socket
701 getImpl().bind (addr, port); in bind()
749 return getImpl().getInetAddress(); in getInetAddress()
776 in = (InetAddress) getImpl().getOption(SocketOptions.SO_BINDADDR); in getLocalAddress()
805 return getImpl().getPort(); in getPort()
826 return getImpl().getLocalPort(); in getLocalPort()
1035 getImpl().setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on)); in setTcpNoDelay()
1051 return ((Boolean) getImpl().getOption(SocketOptions.TCP_NODELAY)).booleanValue(); in getTcpNoDelay()
1073 getImpl().setOption(SocketOptions.SO_LINGER, on); in setSoLinger()
1080 getImpl().setOption(SocketOptions.SO_LINGER, 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.java279 public SocketImpl getImpl() throws SocketException { in getImpl() method in ServerSocket
399 getImpl().bind(epoint.getAddress(), epoint.getPort()); in bind()
400 getImpl().listen(backlog); in bind()
433 InetAddress in = getImpl().getInetAddress(); in getInetAddress()
462 return getImpl().getLocalPort(); in getLocalPort()
569 getImpl().accept(si); in implAccept()
678 getImpl().setOption(SocketOptions.SO_TIMEOUT, timeout); in setSoTimeout()
692 Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT); in getSoTimeout()
740 getImpl().setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(on)); in setReuseAddress()
756 return ((Boolean) (getImpl().getOption(SocketOptions.SO_REUSEADDR))).booleanValue(); in getReuseAddress()
[all …]
/libcore/ojluni/src/main/java/java/security/
DAlgorithmParameterGenerator.java186 Object[] objs = Security.getImpl(algorithm, in getInstance()
244 Object[] objs = Security.getImpl(algorithm, in getInstance()
294 Object[] objs = Security.getImpl(algorithm, in getInstance()
DAlgorithmParameters.java244 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", in getInstance()
303 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", in getInstance()
355 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", in getInstance()
DMessageDigest.java211 Object[] objs = Security.getImpl(algorithm, "MessageDigest", in getInstance()
280 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider); in getInstance()
335 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider); in getInstance()
DSecurity.java624 static Object[] getImpl(String algorithm, String type, String provider) in getImpl() method in Security
635 static Object[] getImpl(String algorithm, String type, String provider, in getImpl() method in Security
654 static Object[] getImpl(String algorithm, String type, Provider provider) in getImpl() method in Security
660 static Object[] getImpl(String algorithm, String type, Provider provider, in getImpl() method in Security
DKeyStore.java901 Object[] objs = Security.getImpl(type, "KeyStore", (String)null); in getInstance()
949 Object[] objs = Security.getImpl(type, "KeyStore", provider); in getInstance()
997 Object[] objs = Security.getImpl(type, "KeyStore", provider); in getInstance()
1802 objs = Security.getImpl(type, "KeyStore", (String)null); 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.java45 assertTrue(s.getImpl().getFD$().isSocket$()); in test_isSocket()
/libcore/ojluni/annotations/mmodule/java/net/
DServerSocket.annotated.java56 public SocketImpl getImpl() throws SocketException { throw new RuntimeException("Stub!"); } in getImpl() method in ServerSocket
/libcore/ojluni/annotations/hiddenapi/java/net/
DServerSocket.java54 public java.net.SocketImpl getImpl() throws java.net.SocketException { in getImpl() method in ServerSocket
DDatagramSocket.java67 java.net.DatagramSocketImpl getImpl() throws java.net.SocketException { in getImpl() method in DatagramSocket
DSocket.java101 java.net.SocketImpl getImpl() throws java.net.SocketException { in getImpl() method in Socket
/libcore/api/
Dmodule-lib-current.txt437 method public java.net.SocketImpl getImpl() throws java.net.SocketException;
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java106 assertTrue(S_ISSOCK(Os.fstat(s.getImpl().getFD$()).st_mode)); in testIsSocket()