Home
last modified time | relevance | path

Searched refs:exchange (Results 1 – 11 of 11) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/
DBitmapHandler.java37 public void handle(HttpExchange exchange) throws IOException { in handle() argument
39 Query query = new Query(exchange.getRequestURI()); in handle()
48 exchange.getResponseHeaders().add("Content-Type", "image/png"); in handle()
49 exchange.sendResponseHeaders(200, 0); in handle()
50 OutputStream os = exchange.getResponseBody(); in handle()
54 exchange.getResponseHeaders().add("Content-Type", "text/html"); in handle()
55 exchange.sendResponseHeaders(404, 0); in handle()
56 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle()
64 System.err.println("Exception when handling " + exchange.getRequestURI() + ": "); in handle()
DAhatHttpHandler.java38 public void handle(HttpExchange exchange) throws IOException { in handle() argument
39 exchange.getResponseHeaders().add("Content-Type", "text/html;charset=utf-8"); in handle()
40 exchange.sendResponseHeaders(200, 0); in handle()
41 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle()
45 mAhatHandler.handle(doc, new Query(exchange.getRequestURI())); in handle()
50 System.err.println("Exception when handling " + exchange.getRequestURI() + ": "); in handle()
DStaticHandler.java37 public void handle(HttpExchange exchange) throws IOException { in handle() argument
41 exchange.getResponseHeaders().add("Content-Type", "text/html"); in handle()
42 exchange.sendResponseHeaders(404, 0); in handle()
43 PrintStream ps = new PrintStream(exchange.getResponseBody()); in handle()
48 exchange.getResponseHeaders().add("Content-Type", mContentType); in handle()
49 exchange.sendResponseHeaders(200, 0); in handle()
50 OutputStream os = exchange.getResponseBody(); in handle()
/art/compiler/utils/
Datomic_dex_ref_map-inl.h84 *out = (*array)[ref.index].exchange(nullptr, std::memory_order_seq_cst); in Remove()
/art/compiler/utils/mips/
Dassembler_mips.cc942 bool exchange = (last_instruction != 0 && in Jalr() local
945 if (exchange) { in Jalr()
951 if (exchange) { in Jalr()
4374 bool exchange = CanExchangeWithSlt(rs, rt); in GenerateSltForCondBranch() local
4375 if (exchange) { in GenerateSltForCondBranch()
4385 if (exchange) { in GenerateSltForCondBranch()
4840 bool exchange = IsInt<16>(static_cast<int32_t>(frame_size)); in RemoveFrame() local
4842 if (exchange) { in RemoveFrame()
/art/runtime/mirror/
Dobject-inl.h751 uint32_t old_ref = atomic_addr->exchange(new_ref, std::memory_order_seq_cst); in ExchangeFieldObject()
Dvar_handle.cc503 T old_value = atom->exchange(new_value_, MO); in Access()
/art/runtime/
Druntime.cc2513 std::string* cur_msg = fault_message_.exchange(new_msg); in SetFaultMessage()
2520 std::string* cur_msg = fault_message_.exchange(nullptr); in GetFaultMessage()
Dthread.cc400 if (tls32_.park_state_.exchange(kPermitAvailable, std::memory_order_relaxed) in Unpark()
/art/runtime/gc/
Dheap.cc1266 return storage->exchange(new_value); in GetAndOverwriteAllocationListener()
/art/compiler/optimizing/
Dcode_generator_mips.cc1387 bool exchange = IsInt<16>(static_cast<int32_t>(frame_size)); in GenerateFrameExit() local
1389 if (exchange) { in GenerateFrameExit()