HomeSort by relevance Sort by last modified time
    Searched defs:PORT (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
rpython.py 10 PORT = 4127
18 port = PORT
21 port = string.atoi(port[i+1:])
25 s.connect((host, port))
rpythond.py 13 PORT = 4127
18 port = int(eval(sys.argv[1]))
20 port = PORT
22 s.bind(('', port))
  /external/python/cpython2/Demo/sockets/
rpython.py 10 PORT = 4127
18 port = PORT
21 port = string.atoi(port[i+1:])
25 s.connect((host, port))
rpythond.py 13 PORT = 4127
18 port = int(eval(sys.argv[1]))
20 port = PORT
22 s.bind(('', port))
  /external/libmicrohttpd/doc/examples/
logging.c 14 #define PORT 8888
46 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
hellobrowser.c 15 #define PORT 8888
42 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
basicauthentication.c 17 #define PORT 8888
74 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
responseheaders.c 18 #define PORT 8888
76 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rcsclient.py 16 PORT = 4127
33 port = PORT
44 port = string.atoi(p)
46 port = string.atoi(a)
59 address = (host, port)
  /external/autotest/client/common_lib/cros/fake_device_server/
server.py 27 PORT = 9876
104 cherrypy.config.update({'server.socket_port': PORT})
  /external/python/cpython2/Demo/pdist/
rcsclient.py 16 PORT = 4127
33 port = PORT
44 port = string.atoi(p)
46 port = string.atoi(a)
59 address = (host, port)
  /external/python/cpython2/Demo/pysvr/
pysvr.py 7 Usage: pysvr.py [port]
17 PORT = 4000 # Default port
30 port = string.atoi(args[0])
34 port = PORT
35 main_thread(port)
44 def main_thread(port):
46 sock.bind(("", port))
48 print "Listening on port", port, "...
    [all...]
Makefile 41 # Default port for the pysvr application
42 PORT=4000
53 pysvr $(PORT)
  /external/valgrind/memcheck/tests/
sendmsg.c 9 #define PORT 12345
28 sa.sin_port = htons (PORT);
  /external/testng/src/main/java/org/testng/remote/
RemoteArgs.java 6 public static final String PORT = "-serport";
7 @Parameter(names = PORT, description = "The port for the serialization protocol")
  /external/libmicrohttpd/src/testcurl/
test_termination.c 26 #define PORT 12345
95 PORT,
108 sprintf (url, "http://127.0.0.1:%d", PORT);
  /tools/test/connectivity/acts/framework/acts/controllers/
native.py 24 PORT = os.environ.get('AP_PORT', 9999)
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
StartHandoverOp.java 22 * A remote operation for starting handover with another Remote Manager at a given port.
26 private static final String PORT = "port";
29 StartHandoverOp(int port) {
30 mPort = port;
41 return new StartHandoverOp(json.getInt(PORT));
51 j.put(PORT, mPort);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_docxmlrpc.py 10 PORT = None
30 global PORT
31 PORT = serv.socket.getsockname()[1]
67 PORT = None
79 # wait for port to be assigned
81 while n > 0 and PORT is None:
85 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
  /external/fec/
encode_rs_8.c 12 static enum {UNKNOWN=0,MMX,SSE,SSE2,ALTIVEC,PORT} cpu_mode;
35 cpu_mode = PORT;
46 cpu_mode = PORT;
48 cpu_mode = PORT;
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
ServerSocketFactoryTest.java 49 public static final int PORT = 8192;
52 super(PORT);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_docxmlrpc.py 10 PORT = None
30 global PORT
31 PORT = serv.socket.getsockname()[1]
67 PORT = None
79 # wait for port to be assigned
81 while n > 0 and PORT is None:
85 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_docxmlrpc.py 10 PORT = None
30 global PORT
31 PORT = serv.socket.getsockname()[1]
67 PORT = None
79 # wait for port to be assigned
81 while n > 0 and PORT is None:
85 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 10 PORT = None
30 global PORT
31 PORT = serv.socket.getsockname()[1]
67 PORT = None
79 # wait for port to be assigned
81 while n > 0 and PORT is None:
85 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 10 PORT = None
30 global PORT
31 PORT = serv.socket.getsockname()[1]
67 PORT = None
79 # wait for port to be assigned
81 while n > 0 and PORT is None:
85 self.client = httplib.HTTPConnection("localhost:%d" % PORT)

Completed in 622 milliseconds

1 2 3 4 5 6