/libcore/ojluni/src/main/java/java/net/ |
D | DatagramSocket.java | 171 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 …]
|
D | MulticastSocket.java | 223 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 …]
|
D | Socket.java | 575 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 …]
|
D | SocketSecrets.java | 40 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()
|
D | ServerSocket.java | 279 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/ |
D | AlgorithmParameterGenerator.java | 186 Object[] objs = Security.getImpl(algorithm, in getInstance() 244 Object[] objs = Security.getImpl(algorithm, in getInstance() 294 Object[] objs = Security.getImpl(algorithm, in getInstance()
|
D | AlgorithmParameters.java | 244 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()
|
D | MessageDigest.java | 211 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()
|
D | Security.java | 624 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
|
D | KeyStore.java | 901 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/ |
D | BatikTestDocumentBuilderFactory.java | 158 Method getImpl = in getDOMImplementation() local 163 (DOMImplementation) getImpl.invoke(null, new Object[0]); in getDOMImplementation()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | FileDescriptorTest.java | 45 assertTrue(s.getImpl().getFD$().isSocket$()); in test_isSocket()
|
/libcore/ojluni/annotations/mmodule/java/net/ |
D | ServerSocket.annotated.java | 56 public SocketImpl getImpl() throws SocketException { throw new RuntimeException("Stub!"); } in getImpl() method in ServerSocket
|
/libcore/ojluni/annotations/hiddenapi/java/net/ |
D | ServerSocket.java | 54 public java.net.SocketImpl getImpl() throws java.net.SocketException { in getImpl() method in ServerSocket
|
D | DatagramSocket.java | 67 java.net.DatagramSocketImpl getImpl() throws java.net.SocketException { in getImpl() method in DatagramSocket
|
D | Socket.java | 101 java.net.SocketImpl getImpl() throws java.net.SocketException { in getImpl() method in Socket
|
/libcore/api/ |
D | module-lib-current.txt | 437 method public java.net.SocketImpl getImpl() throws java.net.SocketException;
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 106 assertTrue(S_ISSOCK(Os.fstat(s.getImpl().getFD$()).st_mode)); in testIsSocket()
|