Searched defs:localPort (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/org/apache/http/conn/scheme/
H A DSocketFactory.java86 * @param localPort the port on the local machine,
105 int localPort,
100 connectSocket( Socket sock, String host, int port, InetAddress localAddress, int localPort, HttpParams params ) argument
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DSSLSocketFactory.java293 int localPort,
307 if ((localAddress != null) || (localPort > 0)) {
310 if (localPort < 0)
311 localPort = 0; // indicates "any"
314 new InetSocketAddress(localAddress, localPort);
288 connectSocket( final Socket sock, final String host, final int port, final InetAddress localAddress, int localPort, final HttpParams params ) argument
/frameworks/base/core/java/android/net/
H A DNetwork.java204 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException { argument
205 return connectToHost(host, port, new InetSocketAddress(localHost, localPort));
210 int localPort) throws IOException {
214 socket.bind(new InetSocketAddress(localAddress, localPort));
209 createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) argument
H A DSSLCertificateSocketFactory.java482 public Socket createSocket(InetAddress addr, int port, InetAddress localAddr, int localPort) argument
485 addr, port, localAddr, localPort);
517 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) argument
520 host, port, localAddr, localPort);
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp871 unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID) {
872 return createUDPSession(localPort, NULL, 0, notify, sessionID);
876 unsigned localPort,
884 localPort,
905 unsigned localPort,
913 localPort,
870 createUDPSession( unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID) argument
875 createUDPSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
904 createTCPDatagramSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument

Completed in 119 milliseconds