Searched defs:port (Results 226 - 250 of 904) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/stub/example/
H A DRemoteFile.java35 private int port; field in class:RemoteFile
40 ftpClient.connect(server, port);
63 * Set the port number for the FTP server
65 * @param port - the port number
67 public void setPort(int port) { argument
68 this.port = port;
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java27 * Utility class for parsing host and port values from command arguments.
35 * Parse the host address and port number of an extended address. This encoded format is used by
41 * @param parameter - the single parameter String containing the encoded host and port number
53 throw new CommandSyntaxException("Error parsing host and port number [" + parameter + "]");
56 int port = Integer.parseInt(tokens[3]);
66 return new HostAndPort(host, port);
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
77 * representation). Thus, the six parameters for the port command would be:
80 * high order 8 bits of the port numbe
118 convertHostAndPortToCommaDelimitedBytes(InetAddress host, int port) argument
[all...]
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/socket/
H A DStubSocketFactory.java25 * requested host address and port number.
48 public Socket createSocket(InetAddress host, int port) throws IOException { argument
50 this.requestedDataPort = port;
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/stub/example/
H A DRemoteFile.java35 private int port; field in class:RemoteFile
40 ftpClient.connect(server, port);
63 * Set the port number for the FTP server
65 * @param port - the port number
67 public void setPort(int port) { argument
68 this.port = port;
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java27 * Utility class for parsing host and port values from command arguments.
35 * Parse the host address and port number of an extended address. This encoded format is used by
41 * @param parameter - the single parameter String containing the encoded host and port number
53 throw new CommandSyntaxException("Error parsing host and port number [" + parameter + "]");
56 int port = Integer.parseInt(tokens[3]);
66 return new HostAndPort(host, port);
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
77 * representation). Thus, the six parameters for the port command would be:
80 * high order 8 bits of the port numbe
118 convertHostAndPortToCommaDelimitedBytes(InetAddress host, int port) argument
[all...]
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/socket/
H A DStubSocketFactory.java25 * requested host address and port number.
48 public Socket createSocket(InetAddress host, int port) throws IOException { argument
50 this.requestedDataPort = port;
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/stub/example/
H A DRemoteFile.java35 private int port; field in class:RemoteFile
40 ftpClient.connect(server, port);
63 * Set the port number for the FTP server
65 * @param port - the port number
67 public void setPort(int port) { argument
68 this.port = port;
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java27 * Utility class for parsing host and port values from command arguments.
35 * Parse the host address and port number of an extended address. This encoded format is used by
41 * @param parameter - the single parameter String containing the encoded host and port number
53 throw new CommandSyntaxException("Error parsing host and port number [" + parameter + "]");
56 int port = Integer.parseInt(tokens[3]);
66 return new HostAndPort(host, port);
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
77 * representation). Thus, the six parameters for the port command would be:
80 * high order 8 bits of the port numbe
118 convertHostAndPortToCommaDelimitedBytes(InetAddress host, int port) argument
[all...]
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/socket/
H A DStubSocketFactory.java25 * requested host address and port number.
48 public Socket createSocket(InetAddress host, int port) throws IOException { argument
50 this.requestedDataPort = port;
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/stub/example/
H A DRemoteFile.java35 private int port; field in class:RemoteFile
40 ftpClient.connect(server, port);
63 * Set the port number for the FTP server
65 * @param port - the port number
67 public void setPort(int port) { argument
68 this.port = port;
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java35 * bytes of the 16-bit TCP port address of the data connection on the server to which
62 int port = session.switchToPassiveMode();
65 Assert.isTrue(port > -1, "The server-side port is invalid: " + port);
66 LOG.debug("server=" + server + " port=" + port);
67 String hostAndPort = "(" + convertHostAndPortToStringOfBytes(server, port) + ")";
73 * Convert the InetAddess and port number to a comma-delimited list of byte values,
76 * @param port
79 convertHostAndPortToStringOfBytes(InetAddress host, int port) argument
[all...]
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/core/socket/
H A DStubSocketFactory.java27 * requested host address and port number.
50 public Socket createSocket(InetAddress host, int port) throws IOException { argument
52 this.requestedDataPort = port;
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/stub/example/
H A DRemoteFile.java34 private int port; field in class:RemoteFile
39 ftpClient.connect(server, port);
60 * Set the port number for the FTP server
61 * @param port - the port number
63 public void setPort(int port) { argument
64 this.port = port;
/external/nist-sip/java/javax/sip/
H A DIOExceptionEvent.java10 public IOExceptionEvent(Object source, String host, int port, argument
14 mPort = port;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DDelegatingSSLSocketFactory.java43 @Override public SSLSocket createSocket(String host, int port) throws IOException { argument
44 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
49 String host, int port, InetAddress localAddress, int localPort) throws IOException {
50 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort);
54 @Override public SSLSocket createSocket(InetAddress host, int port) throws IOException { argument
55 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
60 InetAddress host, int port, InetAddress localAddress, int localPort) throws IOException {
61 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort);
74 Socket socket, String host, int port, boolean autoClose) throws IOException {
75 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(socket, host, port, autoClos
48 createSocket( String host, int port, InetAddress localAddress, int localPort) argument
59 createSocket( InetAddress host, int port, InetAddress localAddress, int localPort) argument
73 createSocket( Socket socket, String host, int port, boolean autoClose) argument
[all...]
H A DDelegatingServerSocketFactory.java42 public ServerSocket createServerSocket(int port) throws IOException { argument
43 ServerSocket serverSocket = delegate.createServerSocket(port);
48 public ServerSocket createServerSocket(int port, int backlog) throws IOException { argument
49 ServerSocket serverSocket = delegate.createServerSocket(port, backlog);
54 public ServerSocket createServerSocket(int port, int backlog, InetAddress ifAddress) argument
56 ServerSocket serverSocket = delegate.createServerSocket(port, backlog, ifAddress);
H A DDelegatingSocketFactory.java43 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { argument
44 Socket socket = delegate.createSocket(host, port);
49 public Socket createSocket(String host, int port, InetAddress localAddress, int localPort) argument
51 Socket socket = delegate.createSocket(host, port, localAddress, localPort);
56 public Socket createSocket(InetAddress host, int port) throws IOException { argument
57 Socket socket = delegate.createSocket(host, port);
62 public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) argument
64 Socket socket = delegate.createSocket(host, port, localAddress, localPort);
/external/opencv/otherlibs/highgui/
H A Dcvcap.cpp90 CV_IMPL CvCapture* cvCreateSocketCapture( const char *address, const char* port, int width, int height ) argument
92 return cvCreateCameraCapture_Socket(address, port, width, height);
/external/openssh/openbsd-compat/
H A Dbindresvport.c50 * Bind a socket to a privileged IP port
60 u_int16_t port; local
90 port = ntohs(*portp);
91 if (port == 0)
92 port = arc4random_uniform(NPORTS) + STARTPORT;
98 *portp = htons(port);
110 port++;
111 if (port > ENDPORT)
112 port = STARTPORT;
/external/ppp/pppd/plugins/pppoatm/
H A Dmisc.c45 void atm_tcpip_port_mapping(char *vs_id,uint8_t protocol,uint16_t port) argument
49 vs_id[5] = (htons(port) >> 8) & 255;
50 vs_id[6] = htons(port) & 255;
/external/syslinux/com32/libupload/
H A Dserial.h7 uint16_t port; member in struct:serial_if
/external/syslinux/core/fs/pxe/
H A Durl.h23 unsigned int port; member in struct:url_info
/external/syslinux/core/legacynet/
H A Dportnum.c18 /* Port number bitmap - port numbers 49152 (0xc000) to 57343 (0xefff) */
45 * Get and free a port number (host byte order)
49 uint16_t port; local
52 port = first_port_number++;
54 } while (test_bit(port_number_bitmap, port));
56 set_bit(port_number_bitmap, port);
57 return htons(port + PORT_NUMBER_BASE);
60 void free_port(uint16_t port) argument
62 port = ntohs(port)
[all...]
/external/testng/src/main/java/org/testng/remote/strprotocol/
H A DSerializedMessageSender.java12 public SerializedMessageSender(String host, int port) { argument
13 super(host, port, false /* no ack */);
16 public SerializedMessageSender(String host, int port, boolean ack) { argument
17 super(host, port, ack);
H A DStringMessageSender.java18 public StringMessageSender(String host, int port) { argument
19 super(host, port, false /* no ack */);
22 public StringMessageSender(String host, int port, boolean ack) { argument
23 super(host, port, ack);

Completed in 462 milliseconds

1234567891011>>