Searched refs:server (Results 1 – 6 of 6) sorted by relevance
/art/tools/ahat/src/main/com/android/ahat/ |
D | Main.java | 146 HttpServer server = null; in main() local 148 server = HttpServer.create(addr, 0); in main() 163 server.createContext("/", new AhatHttpHandler(new OverviewHandler(ahat, hprof, hprofbase))); in main() 164 server.createContext("/rooted", new AhatHttpHandler(new RootedHandler(ahat))); in main() 165 server.createContext("/object", new AhatHttpHandler(new ObjectHandler(ahat))); in main() 166 server.createContext("/objects", new AhatHttpHandler(new ObjectsHandler(ahat))); in main() 167 server.createContext("/site", new AhatHttpHandler(new SiteHandler(ahat))); in main() 168 server.createContext("/bitmap", new BitmapHandler(ahat)); in main() 169 server.createContext("/style.css", new StaticHandler("style.css", "text/css")); in main() 170 server.setExecutor(Executors.newFixedThreadPool(1)); in main() [all …]
|
/art/runtime/jdwp/ |
D | jdwp_options_test.cc | 35 EXPECT_EQ(opt.server, true); in TEST() 50 EXPECT_EQ(opt.server, true); in TEST() 65 EXPECT_EQ(opt.server, true); in TEST()
|
D | jdwp_main.cc | 56 jdwp_options->server = false; in ParseJdwpOption() 58 jdwp_options->server = true; in ParseJdwpOption() 145 if (!jdwp_options->server && (jdwp_options->host.empty() || jdwp_options->port == 0)) { in ParseJdwpOptions() 595 if (options_->server) { in Run() 676 if (!options_->server) { in Run() 776 lhs.server == rhs.server && in operator ==()
|
D | jdwp_socket.cc | 75 if (options->server) { in InitSocketTransport() 99 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port; in InitSocketTransport() 273 CHECK(!options->server); in Establish()
|
D | jdwp.h | 110 bool server = false; member
|
/art/tools/ahat/ |
D | README.txt | 5 Launch an http server for viewing the given Android heap dump FILE. 96 Launch ahat server before processing the heap dump.
|