/external/nist-sip/java/gov/nist/javax/sip/stack/ |
TCPMessageProcessor.java | 34 import java.net.SocketException; 141 } catch (SocketException ex) {
|
UDPMessageProcessor.java | 129 } catch (SocketException ex) { 248 } catch (SocketException ex) {
|
/external/vogar/src/vogar/monitor/ |
HostMonitor.java | 27 import java.net.SocketException; 64 } catch (SocketException ignored) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
ServerSocketTest.java | 33 import java.net.SocketException; 252 } catch (SocketException e) { 313 // Should not throw SocketException when set DatagramSocketImplFactory 319 fail("Should throw SocketException"); 320 } catch (SocketException e) { 326 fail("Should throw SocketException"); 327 } catch (SocketException e) { 872 } catch (SocketException e) { 926 public void setOption(int arg0, Object arg1) throws SocketException { 930 public Object getOption(int arg0) throws SocketException { [all...] |
ProxySelectorTest.java | 24 import java.net.SocketException; 456 .connectFailed(httpUri, proxy1.address(), new SocketException()); 473 selector.connectFailed(null, sa, new SocketException()); 479 selector.connectFailed(httpUri, null, new SocketException());
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
ServerSocketChannelTest.java | 24 import java.net.SocketException; 71 } catch (SocketException expected) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ |
ServerSocketFactoryTest.java | 28 import java.net.SocketException;
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
ConnectionPool.java | 21 import java.net.SocketException; 150 } catch (SocketException e) { 190 } catch (SocketException e) {
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
SocksProxy.java | 27 import java.net.SocketException; 70 } catch (SocketException e) { 211 } catch (SocketException e) {
|
/frameworks/base/core/java/android/net/ |
Network.java | 33 import java.net.SocketException; 336 throw new SocketException("Socket is connected"); 345 throw new SocketException("Only AF_INET/AF_INET6 sockets supported");
|
TrafficStats.java | 32 import java.net.SocketException; 198 public static void tagSocket(Socket socket) throws SocketException { 205 public static void untagSocket(Socket socket) throws SocketException {
|
IpReachabilityMonitor.java | 45 import java.net.SocketException; 132 } catch (ErrnoException | InterruptedIOException | SocketException e) { 145 } catch (SocketException | NullPointerException e) { 315 } catch (ErrnoException | SocketException e) { 348 private void setupNetlinkSocket() throws ErrnoException, SocketException {
|
/packages/apps/Email/provider_src/com/android/email/mail/transport/ |
MailTransport.java | 39 import java.net.SocketException; 235 * @throws SocketException 237 public int getSoTimeout() throws SocketException { 246 public void setSoTimeout(int timeoutMilliseconds) throws SocketException {
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ProxyTest.java | 26 import java.net.SocketException; 152 instance.run(new SocketException()); 168 instance.run(new SocketException()); 374 Object run(Throwable toThrow) throws SocketException; 378 Object run(Throwable toThrow) throws SocketException, EOFException;
|
/libcore/luni/src/test/java/libcore/java/net/ |
SocketTest.java | 29 import java.net.SocketException; 195 public Object getOption(int arg0) throws SocketException { return null; } 202 public void setOption(int option, Object value) throws SocketException { 209 public MySocket(SocketImpl impl) throws SocketException { 371 } catch (SocketException expected) {
|
/libcore/luni/src/main/java/android/system/ |
Os.java | 26 import java.net.SocketException; 43 public static FileDescriptor accept(FileDescriptor fd, InetSocketAddress peerAddress) throws ErrnoException, SocketException { return Libcore.os.accept(fd, peerAddress); } 55 public static void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { Libcore.os.bind(fd, address, port); } 57 /** @hide */ public static void bind(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException { Libcore.os.bind(fd, address); } 77 public static void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { Libcore.os.connect(fd, address, port); } 79 /** @hide */ public static void connect(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException { Libcore.os.connect(fd, address); } 382 public static int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return Libcore.os.recvfrom(fd, buffer, flags, srcAddress); } 387 public static int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return Libcore.os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress); } 409 public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, buffer, flags, inetAddress, port); } 414 public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); [all...] |
/libcore/luni/src/main/java/libcore/io/ |
ForwardingOs.java | 40 import java.net.SocketException; 53 public FileDescriptor accept(FileDescriptor fd, InetSocketAddress peerAddress) throws ErrnoException, SocketException { return os.accept(fd, peerAddress); } 56 public void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { os.bind(fd, address, port); } 57 public void bind(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException { os.bind(fd, address); } 61 public void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { os.connect(fd, address, port); } 62 public void connect(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException { os.connect(fd, address); } 132 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return os.recvfrom(fd, buffer, flags, srcAddress); } 133 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress); } 138 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return os.sendto(fd, buffer, flags, inetAddress, port); } 139 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); [all...] |
/external/apache-http/android/src/android/net/http/ |
AndroidHttpClientConnection.java | 55 import java.net.SocketException; 193 } catch (SocketException ignore) { 205 } catch (SocketException ignore) {
|
/external/jetty/src/java/org/eclipse/jetty/io/nio/ |
ChannelEndPoint.java | 24 import java.net.SocketException; 131 catch (SocketException e) 170 catch (SocketException e)
|
/libcore/luni/src/main/java/java/nio/ |
DatagramChannelImpl.java | 34 import java.net.SocketException; 537 public void bind(SocketAddress localAddr) throws SocketException { 546 public void connect(SocketAddress peer) throws SocketException { 567 } catch (SocketException e) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar | |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar | |
/external/apache-http/src/org/apache/http/impl/conn/ |
DefaultClientConnectionOperator.java | 39 import java.net.SocketException; 183 // catch SocketException to cover any kind of connect failure 184 } catch (SocketException ex) {
|
/external/conscrypt/src/compat/java/org/conscrypt/ |
Platform.java | 26 import java.net.SocketException; 96 public static void setSocketWriteTimeout(Socket s, long timeoutMillis) throws SocketException {
|