Searched refs:req (Results 1 - 6 of 6) sorted by relevance

/art/test/1940-ddms-ext/src-art/art/
H A DTest1940.java62 public Chunk handleChunk(Chunk req) { argument
63 System.out.println("MyDdmHandler: Chunk received: " + printChunk(req));
64 if (req.type == MY_DDMS_TYPE) {
68 a.update(req.data, req.offset, req.length);
76 } else if (req.type == MY_EMPTY_DDMS_TYPE) {
78 } else if (req.type == MY_INVALID_DDMS_TYPE) {
82 throw new TestError("Unknown ddm request type: " + req.type);
/art/runtime/jdwp/
H A Djdwp_event.cc199 DeoptimizationRequest req; local
209 Dbg::WatchLocation(&pMod->locationOnly.loc, &req);
222 CHECK_EQ(req.GetKind(), DeoptimizationRequest::kNothing);
223 CHECK(req.Method() == nullptr);
224 req.SetKind(DeoptimizationRequest::kFullDeoptimization);
226 Dbg::RequestDeoptimization(req);
230 DeoptimizationRequest req; local
231 req.SetKind(DeoptimizationRequest::kRegisterForEvent);
232 req.SetInstrumentationEvent(instrumentation_event);
233 Dbg::RequestDeoptimization(req);
319 DeoptimizationRequest req; local
342 DeoptimizationRequest req; local
[all...]
/art/runtime/
H A Ddebugger.cc3278 void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { argument
3279 if (req.GetKind() == DeoptimizationRequest::kNothing) {
3284 RequestDeoptimizationLocked(req);
3287 void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { argument
3288 switch (req.GetKind()) {
3290 DCHECK_NE(req.InstrumentationEvent(), 0u);
3291 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
3293 req.InstrumentationEvent());
3296 deoptimization_requests_.size(), req.InstrumentationEvent());
3297 deoptimization_requests_.push_back(req);
3488 WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) argument
3523 UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) argument
4107 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m, local
[all...]
H A Ddebugger.h542 static void RequestDeoptimization(const DeoptimizationRequest& req)
551 static void WatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
553 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
775 static void RequestDeoptimizationLocked(const DeoptimizationRequest& req)
H A Dthread.cc3918 void Thread::SetDebugInvokeReq(DebugInvokeReq* req) { argument
3920 CHECK(GetInvokeReq() == nullptr) << "Debug invoke req already active in thread " << *this;
3922 CHECK(req != nullptr);
3923 tlsPtr_.debug_invoke_req = req;
3927 CHECK(GetInvokeReq() != nullptr) << "Debug invoke req not active in thread " << *this;
3929 DebugInvokeReq* req = tlsPtr_.debug_invoke_req; local
3931 delete req;
H A Dthread.h1000 void SetDebugInvokeReq(DebugInvokeReq* req);

Completed in 131 milliseconds