/external/netcat/scripts/ |
iscan | 3 ## args: target port [port port port ...] 8 ## disadvantages: requires numeric-only port args, the output sleazitude, 12 "" ) echo needs HOST and at least one PORT ; exit 1 ;; 18 # generate a randomish base port
|
webrelay | 8 ## The arguments in this case are the destination server and optional port. 11 # set these as you wish: proxy port... 12 PORT=8000 27 nc -w 600 -l -n -p $PORT -e "$0" $XNC < /dev/null > /dev/null 2>&1 & 41 nc -v -w 600 -l -p $PORT -e "$0" $XNC < /dev/null > /dev/null & 43 "Relay to ${RDEST}:${RPORT} running -- point your browser here on port $PORT"
|
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
Port.java | 20 public interface Port extends Line { 28 public static final Info MICROPHONE = new Info(Port.class, 31 public static final Info LINE_IN = new Info(Port.class, "LINE_IN", true); //$NON-NLS-1$ 33 public static final Info COMPACT_DISC = new Info(Port.class, 36 public static final Info SPEAKER = new Info(Port.class, "SPEAKER", //$NON-NLS-1$ 39 public static final Info HEADPHONE = new Info(Port.class, "HEADPHONES", //$NON-NLS-1$ 42 public static final Info LINE_OUT = new Info(Port.class, "LINE_OUT", //$NON-NLS-1$ 60 if (super.matches(info) && Port.Info.class.equals(info.getClass()) 61 && name.equals(((Port.Info) info).getName()) 62 && isSource == ((Port.Info) info).isSource()) [all...] |
/dalvik/libcore/security/src/main/java/java/security/cert/ |
LDAPCertStoreParameters.java | 26 // Default LDAP server port number 31 // LDAP server port number for this cert store 32 private final int port; field in class:LDAPCertStoreParameters 36 * server name and port. 40 * @param port 41 * the port. 45 public LDAPCertStoreParameters(String serverName, int port) { 46 this.port = port; 57 * The default parameters are server name "localhost" and port 389 [all...] |
/external/iptables/extensions/ |
libipt_MASQUERADE.c | 18 " --to-ports <port>[-<port>]\n" 19 " Port (range) to map to.\n\n", 44 int port; local 48 port = atoi(arg); 49 if (port <= 0 || port > 65535) 50 exit_error(PARAMETER_PROBLEM, "Port `%s' not valid\n", arg); 54 mr->range[0].min.tcp.port 55 = mr->range[0].max.tcp.port [all...] |
libipt_REDIRECT.c | 18 " --to-ports <port>[-<port>]\n" 19 " Port (range) to map to.\n\n", 44 int port; local 51 port = atoi(arg); 52 if (port == 0 || port > 65535) 53 exit_error(PARAMETER_PROBLEM, "Port `%s' not valid\n", arg); 57 mr->range[0].min.tcp.port 58 = mr->range[0].max.tcp.port [all...] |
libip6t_tcp.man | 4 .BR "--source-port " "[!] \fIport\fP[:\fIport\fP]" 5 Source port or port range specification. This can either be a service 6 name or a port number. An inclusive range can also be specified, 8 .IR port : port . 9 If the first port is omitted, "0" is assumed; if the last is omitted, 11 If the second port greater then the first they will be swapped. 16 .BR "--destination-port " "[!] \fIport\fP[:\fIport\fP]" 17 Destination port or port range specification. The fla [all...] |
libipt_tcp.man | 4 .BR "--source-port " "[!] \fIport\fP[:\fIport\fP]" 5 Source port or port range specification. This can either be a service 6 name or a port number. An inclusive range can also be specified, 8 .IR port : port . 9 If the first port is omitted, "0" is assumed; if the last is omitted, 11 If the second port greater then the first they will be swapped. 16 .BR "--destination-port " "[!] \fIport\fP[:\fIport\fP]" 17 Destination port or port range specification. The fla [all...] |
libipt_DNAT.c | 26 " --to-destination <ipaddr>[-<ipaddr>][:port-port]\n" 68 int port; local 72 "Need TCP or UDP with port specification"); 76 port = atoi(colon+1); 77 if (port <= 0 || port > 65535) 79 "Port `%s' not valid\n", colon+1); 84 "Invalid port:port syntax - use dash\n") [all...] |
libipt_SNAT.c | 26 " --to-source <ipaddr>[-<ipaddr>][:port-port]\n" 68 int port; local 72 "Need TCP or UDP with port specification"); 76 port = atoi(colon+1); 77 if (port <= 0 || port > 65535) 79 "Port `%s' not valid\n", colon+1); 84 "Invalid port:port syntax - use dash\n") [all...] |
/external/opencore/pvmi/pvmf/include/ |
pvmf_port_interface.h | 46 * Enumerated list of port activity. This enumerated type is used to notify the owner 47 * node of port activity and events. 53 PVMF_PORT_ACTIVITY_CONNECT, /**< Connection with another port is established */ 54 PVMF_PORT_ACTIVITY_DISCONNECT, /**< Connection with another port is disconnected */ 56 * asynchronously to send this message to receiving port. */ 62 PVMF_PORT_ACTIVITY_OUTGOING_QUEUE_READY, /**< After the outgoing queue size reaches its capacity, the port 65 * be notified that it can resume queueing outgoing data to this port. */ 66 PVMF_PORT_ACTIVITY_CONNECTED_PORT_BUSY, /**< Connected port is busy and cannot receive more incoming messages. The 69 PVMF_PORT_ACTIVITY_CONNECTED_PORT_READY, /**< Connected port is ready to receive more incoming messages. The node 71 PVMF_PORT_ACTIVITY_ERROR /**< An error occurred in the port. * [all...] |
/dalvik/libcore/security/src/test/java/tests/security/permissions/ |
JavaNetSocketTest.java | 96 int port = -1; field in class:JavaNetSocketTest.TestSecurityManager 100 port = -1; 103 public void checkConnect(String host, int port) { 105 this.port = port; 115 int port = 80; local 122 new Socket(host, port); 125 assertEquals("Argument of checkConnect is not correct", port, s.port); 128 new Socket(host, port, true) 140 new Socket(InetAddress.getByName(host), port); local 146 new Socket(InetAddress.getByName(host), port, true); local 152 new Socket(InetAddress.getByName(host), port, InetAddress.getByAddress(new byte[] {0,0,0,0}), 0); local 169 int port = -1; field in class:JavaNetSocketTest.TestSecurityManager 188 int port = 80; local 195 new Socket(InetAddress.getByName(host), port, InetAddress.getLocalHost(), 0); local [all...] |
JavaNetMulticastSocketTest.java | 79 int port = 0; field in class:JavaNetMulticastSocketTest.TestSecurityManager 82 port = 0; 85 public void checkListen(int port) { 87 this.port = port; 88 super.checkListen(port); 99 int port = Support_PortManager.getNextPortForUDP(); local 102 new MulticastSocket(port); 104 assertEquals("Argument of checkListen is not correct", port, s.port); [all...] |
JavaNetDatagramSocketTest.java | 80 int port = 0; field in class:JavaNetDatagramSocketTest.TestSecurityManager 83 port = 0; 86 public void checkListen(int port) { 88 this.port = port; 99 int port = Support_PortManager.getNextPortForUDP(); local 101 DatagramSocket s1 = new DatagramSocket(port); 103 assertEquals("Argument of checkListen is not correct", port, s.port); 108 assertEquals("Argument of checkListen is not correct", 0, s.port); 148 final int port = Support_PortManager.getNextPortForUDP(); local [all...] |
/development/tools/axl/ |
udpServer.py | 6 port = 9001 11 svrsocket.bind(('', port)) 17 print 'Listening for requests on port %s ...' % port
|
/external/kernel-headers/original/linux/ |
serial_core.h | 42 #define PORT_MAX_8250 15 /* max port ID */ 174 * Return a string describing the type of the port 179 * Release IO and memory resources used by the port. 185 * Request IO and memory resources used by the port. 186 * This includes iomapping the port if necessary. 214 spinlock_t lock; /* port lock */ 269 unsigned int type; /* port type */ 272 unsigned int line; /* port index */ 294 struct uart_port *port; member in struct:uart_state 304 * This is the state information which is only valid when the port [all...] |
/dalvik/libcore/x-net/src/main/java/javax/net/ |
DefaultSocketFactory.java | 40 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { 41 return new Socket(host, port); 45 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) 47 return new Socket(host, port, localHost, localPort); 51 public Socket createSocket(InetAddress host, int port) throws IOException { 52 return new Socket(host, port); 56 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, 58 return new Socket(address, port, localAddress, localPort);
|
DefaultServerSocketFactory.java | 34 public ServerSocket createServerSocket(int port) throws IOException { 35 return new ServerSocket(port); 39 public ServerSocket createServerSocket(int port, int backlog) throws IOException { 40 return new ServerSocket(port, backlog); 44 public ServerSocket createServerSocket(int port, int backlog, InetAddress iAddress) 46 return new ServerSocket(port, backlog, iAddress);
|
/external/webkit/WebCore/dom/ |
MessagePortChannel.h | 53 // The overwhelmingly common case is sending a single port, so handle that efficiently with an inline buffer of size 1. 65 // Entangles the channel with a port (called when a port has been cloned, after the clone has been marshaled to its new owning thread and is ready to receive messages). 66 // Returns false if the entanglement failed because the port was closed. 69 // Disentangles the channel from a given port so it no longer forwards messages to the port. Called when the port is being cloned and no new owning thread has yet been established. 72 // Closes the port (ensures that no further messages can be added to either queue). 75 // Used by MessagePort.postMessage() to prevent callers from passing a port's own entangled port [all...] |
/packages/apps/IM/src/com/android/im/service/ |
AndroidSmsService.java | 70 public void sendSms(String dest, int port, byte[] data) { 71 sendSms(dest, port, data, null); 74 public void sendSms(String dest, int port, byte[] data, 78 log(dest + ":" + port + " >>> " + new String(data, "UTF-8")); 104 (short) port, data, 109 public void addSmsListener(String from, int port, SmsListener listener) { 110 ListenerList l = mListeners.get(port); 112 l = new ListenerList(port); 113 mListeners.put(port, l); 115 log("Register SMS receiver on port " + port) 178 int port = uri.getPort(); local [all...] |
/external/qemu/hw/ |
usb-hub.c | 32 USBPort port; member in struct:USBHubPort 160 0x00, /* (per-port OC, no power switching) */ 170 USBHubPort *port = &s->ports[port1->index]; local 173 if (port->port.dev) 176 port->wPortStatus |= PORT_STAT_CONNECTION; 177 port->wPortChange |= PORT_STAT_C_CONNECTION; 179 port->wPortStatus |= PORT_STAT_LOW_SPEED; 181 port->wPortStatus &= ~PORT_STAT_LOW_SPEED; 182 port->port.dev = dev 317 USBHubPort *port; local 339 USBHubPort *port; local 368 USBHubPort *port; local 443 USBHubPort *port; local 481 USBHubPort *port; local 527 USBHubPort *port; local [all...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLSocketFactoryImpl.java | 64 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { 65 return new OpenSSLSocketImpl(host, port, (SSLParameters) sslParameters.clone()); 68 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) 70 return new OpenSSLSocketImpl(host, port, localHost, localPort, (SSLParameters) sslParameters.clone()); 73 public Socket createSocket(InetAddress host, int port) throws IOException { 74 return new OpenSSLSocketImpl(host, port, (SSLParameters) sslParameters.clone()); 77 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) 79 return new OpenSSLSocketImpl(address, port, localAddress, localPort, (SSLParameters) sslParameters.clone()); 82 public Socket createSocket(Socket s, String host, int port, boolean autoClose) throws IOException { 83 return new OpenSSLSocketImplWrapper(s, host, port, autoClose, (SSLParameters) sslParameters.clone()) [all...] |
/external/opencore/nodes/pvmp3ffparsernode/include/ |
pvmf_mp3ffparser_defs.h | 24 * Port tags, enumerated list of port tags supported by the node, 25 * for the port requests. 36 // This event is issued when an error occurs during port data processing. 37 // Event data contains the port pointer. 44 // This event is issued whenever a port is deleted. Observers should discard 45 // the port pointer. Event data contains the port pointer. 50 #define PVMF_MP3FFPARSER_OUTPORT_FORMATS "x-pvmf/port/formattype" 51 #define PVMF_MP3FFPARSER_OUTPORT_FORMATS_VALTYPE "x-pvmf/port/formattype;valtype=int32 [all...] |
/packages/apps/IM/src/com/android/im/engine/ |
SmsService.java | 70 * @param port 71 * The port to deliver the message to. 75 public void sendSms(String dest, int port, byte[] data); 82 * @param port 83 * The port to deliver the message to. 90 public void sendSms(String dest, int port, byte[] data, 95 * address and application port has been received. 99 * @param port 100 * The application port. 104 public void addSmsListener(String from, int port, SmsListener listener) [all...] |
/external/qemu/distrib/sdl-1.2.12/ |
CREDITS | 25 * Mattias Engdeg?rd, for help with the Solaris port and lots of other help 27 * Max Watson, Matt Slot, and Kyle for help with the MacOS Classic port 29 * Stan Shebs, for the initial Mac OS X port 31 * Eric Wing, Max Horn, and Darrell Walisser for unflagging work on the Mac OS X port 33 * Patrick Trainor, Jim Boucher, and Mike Gorchak for the QNX Neutrino port 35 * Carsten Griwodz for the AIX port 37 * Gabriele Greco, for the Amiga port 39 * Patrice Mandin, for the Atari port 41 * Hannu Viitala for the EPOC port 43 * Marcus Mertama for the S60 port [all...] |