HomeSort by relevance Sort by last modified time
    Searched refs:port (Results 401 - 425 of 3866) sorted by null

<<11121314151617181920>>

  /external/toybox/toys/net/
ftpget.c 17 usage: ftpget [-cvgslLmMdD] [-P PORT] [-p PASSWORD] [-u USER] HOST [LOCAL] REMOTE
23 -p Use PORT instead of "21"
50 char *port;
96 int rc, ii = 1, port; local
106 if (!TT.port) TT.port = "21";
110 TT.fd = xconnect(xgetaddrinfo(*toys.optargs, TT.port, 0, SOCK_STREAM, 0,
135 // PASV means the server opens a port you connect to instead of the server
136 // dialing back to the client. (Still insane, but less so.) So need port #
139 // (must match the server you're talking to???) and port is (256*p1)+p
    [all...]
  /external/valgrind/include/vki/
vki-xen-evtchn.h 50 vki_xen_evtchn_port_t port; member in struct:vki_xen_evtchn_alloc_unbound
  /frameworks/base/core/java/android/webkit/
WebMessagePort.java 27 * <p>A Message port represents one endpoint of a Message Channel. In Android
33 * <p>When a message port is first created or received via transfer, it does not
37 * <p>A message port should be closed when it is not used by the embedder application
38 * anymore. A closed port cannot be transferred or cannot be reopened to send
41 * <p>When a port is transferred to JS, it cannot be used to send or receive messages
42 * at the Java side anymore. Different from HTML5 Spec, a port cannot be transferred
44 * posted on it. A transferred port cannot be closed by the application, since
65 * @param port the WebMessagePort that the message is destined for
66 * @param message the message from the entangled port.
68 public void onMessage(WebMessagePort port, WebMessage message) {
    [all...]
  /frameworks/base/core/java/org/apache/http/conn/scheme/
LayeredSocketFactory.java 60 * @param port the port on the host
73 int port,
  /frameworks/base/media/java/android/media/
AudioMixPortConfig.java 35 * Returns the audio mix port this AudioMixPortConfig is issued from.
37 public AudioMixPort port() { method in class:AudioMixPortConfig
  /frameworks/base/media/native/midi/
midi.cpp 101 * Port Helpers
115 AMIDI_Port* port = new AMIDI_Port; local
116 port->state = MIDI_PORT_STATE_OPEN_IDLE;
117 port->device = device;
118 port->binderToken = portToken;
119 port->ufd = std::move(ufd);
121 *portPtr = port;
126 static status_t AMIDI_closePort(AMIDI_Port *port) {
128 while (!port->state.compare_exchange_weak(portState, MIDI_PORT_STATE_CLOSED)) {
134 Status txResult = port->device->server->closePort(port->binderToken)
153 AMIDI_Port *port = (AMIDI_Port*)outputPort; local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ThroughputFilter.java 49 public void onInputPortOpen(InputPort port) {
50 if (port.getName().equals("period")) {
51 port.bindToFieldNamed("mPeriod");
53 port.attachToOutputPort(getConnectedOutputPort("frame"));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
WaveTriggerFilter.java 51 public void onInputPortOpen(InputPort port) {
52 if (port.getName().equals("trigger")) {
53 port.bindToFieldNamed("mTrigger");
54 port.setAutoPullEnabled(true);
  /frameworks/opt/net/voip/src/java/android/net/rtp/
RtpStream.java 64 * port is assigned automatically to conform with RFC 3550.
85 * Returns the network port of the local host.
100 * Returns the network port of the remote host or {@code -1} if the stream
147 * @param port The network port of the remote host.
149 * port is invalid.
153 public void associate(InetAddress address, int port) {
161 if (port < 0 || port > 65535) {
162 throw new IllegalArgumentException("Invalid port");
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
ProtocolPortTuple.java 32 * | IP Procotol | Port Number | Status |
51 public ProtocolPortTuple(int protocol, int port, int status) {
53 mPort = port;
66 int port = (int) ByteBufferReader.readInteger(payload, ByteOrder.LITTLE_ENDIAN, 2) local
69 return new ProtocolPortTuple(protocol, port, status);
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLContextSpiImpl.java 61 public SSLEngine engineCreateSSLEngine(String host, int port) {
64 if (port < 0 || port > max) {
65 throw new IllegalArgumentException("Illegal port");
71 return new tmpSSLEngine(host, port);
  /packages/services/Car/car-lib/src/android/car/media/
CarAudioPatchHandle.java 40 * NOTE: Assumes (as it true today), that there is exactly one device port in the source
45 && patch.sources()[0].port() instanceof AudioDevicePort,
46 "Accepts exactly one device port as source");
48 && patch.sinks()[0].port() instanceof AudioDevicePort,
49 "Accepts exactly one device port as sink");
52 mSourceAddress = ((AudioDevicePort) patch.sources()[0].port()).address();
53 mSinkAddress = ((AudioDevicePort) patch.sinks()[0].port()).address();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
if_ec.h 15 unsigned char port; /* Port number. */ member in struct:sockaddr_ec
kernelcapi.h 25 unsigned int port; member in struct:kcapi_carddef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/neteconet/
ec.h 35 unsigned char port; /* Port number. */ member in struct:sockaddr_ec
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsvns.h 13 u_char port[2]; member in struct:sockaddr_vns
  /system/bt/binder/android/bluetooth/
IBluetoothSocketManager.aidl 30 @nullable ParcelFileDescriptor connectSocket(in BluetoothDevice device, int type, in @nullable ParcelUuid uuid, int port, int flag);
31 @nullable ParcelFileDescriptor createSocketChannel(int type, in @nullable String serviceName, in @nullable ParcelUuid uuid, int port, int flag);
  /external/autotest/site_utils/
rpc_logserver.py 37 def start(port, log_handler):
40 @param port: Port to listen on.
50 args=(server_started, port, log_handler))
54 print 'LogServer is started at port %d.' % port
58 def _run(server_started, port, log_handler):
62 @param port: Port used by socket log server.
70 port=port
    [all...]
  /external/curl/lib/
hostip4.c 94 int port,
105 ai = Curl_ipv4_resolve_r(hostname, port);
124 int port)
136 return Curl_ip2addr(AF_INET, &in, hostname, port);
147 if(port) {
148 snprintf(sbuf, sizeof(sbuf), "%d", port);
300 ai = Curl_he2ai(h, port);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
PortParser.java 27 * 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]); local
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.
71 * This is used by the FTP "PORT" command.
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:
105 int port = (port1 << 8) + port2; local
    [all...]
  /external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_impl/include/
hexagon_controller.h 54 bool hexagon_controller_AllocateInputNodeDataBuffersWithPort(int port,
57 bool hexagon_controller_AllocateOutNodeDataBuffersWithPort(int port,
68 bool hexagon_controller_ReleaseInputNodeDataBuffersWithPort(int port);
69 bool hexagon_controller_ReleaseOutputNodeDataBuffersWithPort(int port);
73 bool hexagon_controller_CopyByteNodeData(int port, int x, int y, int z, int d,
87 struct NodeDataFloat* hexagon_controller_GetInputNodeDataBuffer(int port);
89 uint8_t* hexagon_controller_GetOutputNodeDataBuffer(int port,
  /external/tensorflow/tensorflow/tools/dist_test/scripts/
k8s_tensorflow_test.py 32 port=5000,
43 port=5000,
55 port=5000,
66 port=5000,
78 port=5000,
92 port=5000,
107 port=5000,
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
RemoteClient.java 38 // choose an arbitrary default port that according to the interweb is not used by another
48 * Initialize the {@RemoteClient}, and instruct it to connect to the given port
51 * @param port the tcp/ip port number
55 private RemoteClient(int port) throws UnknownHostException, IOException {
56 this(InetAddress.getLocalHost().getHostName(), port); local
60 * Initialize the {@RemoteClient}, and instruct it to connect to the given hostname and port.
63 * @param port the tcp/ip port number
67 private RemoteClient(String hostName, int port) throws UnknownHostException, IOException
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLEngineTest.java 57 * SSLEngine object with null host and -1 port
69 * Test for <code>SSLEngine(String host, int port)</code> constructor
72 int port = 1010; local
73 SSLEngine e = getEngine(null, port);
75 assertEquals(e.getPeerPort(), port); local
82 e = getEngine(null, port);
86 e = getEngine(null, port);
92 * Test for <code>SSLEngine(String host, int port)</code> constructor
96 int port = 8080; local
97 SSLEngine e = getEngine(host, port);
99 assertEquals(e.getPeerPort(), port); local
328 int port = 8080; local
364 int port = 8080; local
386 int port = 8080; local
424 int port = 8080; local
443 int port = 8080; local
470 int port = 8080; local
505 int port = 8080; local
525 int port = 8080; local
552 int port = 8080; local
570 int port = 8080; local
630 int port = 8080; local
652 int port = 8080; local
685 int port = 8080; local
702 int port = 8080; local
737 int port = 8080; local
757 int port = 8080; local
797 int port = 8080; local
814 int port = 8080; local
839 int port = 8080; local
858 int port = 8080; local
891 int port = 8080; local
908 int port = 8080; local
939 int port = 8080; local
958 int port = 8080; local
991 int port = 8080; local
1008 int port = 8080; local
    [all...]
  /bionic/libc/tools/
genserv.py 18 def __init__(self,name,port,proto):
20 self.port = port
29 result += "\\%0o\\%0o" % (((self.port >> 8) & 255), self.port & 255)

Completed in 378 milliseconds

<<11121314151617181920>>