HomeSort by relevance Sort by last modified time
    Searched refs:httpd (Results 1 - 25 of 30) sorted by null

1 2

  /docs/source.android.com/scripts/
micro-httpd.py 26 httpd = SocketServer.TCPServer(('0.0.0.0', PORT), Handler) variable
27 httpd.allow_reuse_address = True
29 httpd.serve_forever()
  /external/chromium_org/chrome/test/functional/perf/
endure_server.py 63 httpd = BaseHTTPServer.HTTPServer(
66 logging.info('Serving %s at port %d', graph_dir, httpd.server_port)
67 logging.info('View graphs at http://localhost:%d', httpd.server_port)
69 httpd.serve_forever()
72 httpd.shutdown()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
gardenomatic.py 54 httpd = GardeningHTTPServer(httpd_port=8127, config={'tool': tool, 'options': options})
55 self._tool.user.open_url(httpd.url(args))
58 httpd.serve_forever()
abstractlocalservercommand.py 37 make_option("--httpd-port", action="store", type="int", default=8127, help="Port to use for the HTTP server"),
56 httpd = self.server(httpd_port=options.httpd_port, config=config) # pylint: disable=E1102
57 httpd.serve_forever()
  /external/chromium_org/tools/playback_benchmark/
run.py 25 httpd = proxy_handler.CreateServer(driver, options.port)
26 sa = httpd.socket.getsockname()
28 httpd.serve_forever()
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
test_server.py 61 httpd = BaseHTTPServer.HTTPServer(('', 0), QuietHTTPRequestHandler)
62 conn.send(httpd.server_address[1]) # the chosen port number
63 httpd.timeout = 0.5 # seconds
66 httpd.handle_request()
  /external/chromium/net/tools/testserver/
backoff_server.py 45 httpd = BaseHTTPServer.HTTPServer(('', port), RequestHandler)
47 httpd.handle_request()
  /external/chromium_org/third_party/tlslite/test/
httpsserver.py 28 httpd = MyHTTPServer(('localhost', 443), SimpleHTTPRequestHandler) variable
29 httpd.serve_forever(
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
run-blink-httpd 54 # specifying root but not port means we want httpd on default
62 httpd = http_server.Lighttpd(port_obj,
69 httpd.start()
71 httpd.stop()
  /external/chromium_org/net/tools/testserver/
backoff_server.py 101 httpd = BaseHTTPServer.HTTPServer(('', port), RequestHandler)
103 httpd.handle_request()
  /external/chromium_org/tools/python/google/
httpd_utils.py 24 get a reply in that time, we give up and assume the httpd
84 httpd_conf_path = os.path.join(apache_config_dir, 'httpd.conf')
92 httpd = ApacheHttpd(start_cmd, stop_cmd, [8000],
94 httpd.StartServer()
95 return httpd
103 it's often implemented to kill all running httpd processes, as implied by
112 httpd = ApacheHttpd('', platform_util.GetStopHttpdCommand(), [],
114 httpd.StopServer(force=True)
121 start_command: command list to call to start the httpd
122 stop_command: command list to call to stop the httpd if one has bee
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/
Makefile 15 HTTPD:={{rel_sdk}}/tools/httpd.py
60 python $(HTTPD)
  /external/chromium_org/native_client_sdk/src/tools/
run.py 16 import httpd namespace
55 server = httpd.LocalHTTPServer(options.serve_dir, options.port,
httpd.py 38 logging.error('For security, httpd.py should only be run from within the')
258 httpd = PluggableHTTPServer(('', port), PluggableHTTPRequestHandler,
265 conn.send(httpd.server_address[1]) # the chosen port number
266 httpd.timeout = 0.5 # seconds
267 while httpd.running:
271 httpd.handle_request()
273 httpd.running = conn.recv()
277 conn.send(httpd.result)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 150 httpd = make_server('', 8000, demo_app) variable
151 sa = httpd.socket.getsockname()
155 httpd.handle_request() # serve one request, then exit
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 150 httpd = make_server('', 8000, demo_app) variable
151 sa = httpd.socket.getsockname()
155 httpd.handle_request() # serve one request, then exit
  /external/clang/tools/scan-view/
scan-view 62 httpd = ScanView.create_server((options.host, port),
64 httpd.serve_forever()
  /external/chromium_org/native_client_sdk/src/tools/tests/
httpd_test.py 19 import httpd namespace
24 self.server = httpd.LocalHTTPServer('.', 0, False)
  /external/chromium_org/tools/python/google/httpd_config/
httpd2_mac.conf 16 # Please read the file http://httpd.apache.org/docs/dso.html for more
17 # details about the DSO mechanism and run `httpd -l' for the list of already
18 # built-in (statically linked and thus always available) modules in your httpd
221 AddType application/x-httpd-php .php
222 AddType application/x-httpd-php-source .phps
httpd.conf 2 ## httpd.conf -- Apache HTTP server configuration file
10 # See <URL:http://httpd.apache.org/docs/> for detailed information about
18 # /private/etc/httpd/srm.conf and then /private/etc/httpd/access.conf
74 #LockFile "/private/var/run/httpd.lock"
80 PidFile "/tmp/WebKit/httpd.pid"
88 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
91 # In the standard configuration, the server will process httpd.conf (this
178 # Configured from the httpd command line for WebKit layout tests.
192 # Please read the file http://httpd.apache.org/docs/dso.html for mor
    [all...]
httpd2.conf 22 # Please read the file http://httpd.apache.org/docs/dso.html for more
23 # details about the DSO mechanism and run `httpd -l' for the list of already
24 # built-in (statically linked and thus always available) modules in your httpd
272 AddType application/x-httpd-php .php
273 AddType application/x-httpd-php-source .phps
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
BaseHTTPServer.py 42 # Here's a quote from the NCSA httpd docs about log file format.
595 httpd = ServerClass(server_address, HandlerClass)
597 sa = httpd.socket.getsockname()
599 httpd.serve_forever()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
BaseHTTPServer.py 42 # Here's a quote from the NCSA httpd docs about log file format.
595 httpd = ServerClass(server_address, HandlerClass)
597 sa = httpd.socket.getsockname()
599 httpd.serve_forever()
  /external/chromium_org/tools/telemetry/telemetry/core/
memory_cache_http_server.py 186 httpd = MemoryCacheHTTPServer(server_address, MemoryCacheHTTPRequestHandler,
188 httpd.serve_forever()
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.emf.properties 91 scpTarget=nickb@download1.eclipse.org:/home/data/httpd/download.eclipse.org/tools/emf/feeds/

Completed in 631 milliseconds

1 2