Searched defs:req (Results 1 - 3 of 3) sorted by relevance

/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 Dthread.cc3532 void Thread::SetDebugInvokeReq(DebugInvokeReq* req) { argument
3534 CHECK(GetInvokeReq() == nullptr) << "Debug invoke req already active in thread " << *this;
3536 CHECK(req != nullptr);
3537 tlsPtr_.debug_invoke_req = req;
3541 CHECK(GetInvokeReq() != nullptr) << "Debug invoke req not active in thread " << *this;
3543 DebugInvokeReq* req = tlsPtr_.debug_invoke_req; local
3545 delete req;
H A Ddebugger.cc3192 void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { argument
3193 if (req.GetKind() == DeoptimizationRequest::kNothing) {
3198 RequestDeoptimizationLocked(req);
3201 void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { argument
3202 switch (req.GetKind()) {
3204 DCHECK_NE(req.InstrumentationEvent(), 0u);
3205 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
3207 req.InstrumentationEvent());
3210 deoptimization_requests_.size(), req.InstrumentationEvent());
3211 deoptimization_requests_.push_back(req);
3402 WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) argument
3437 UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) argument
4018 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m, local
[all...]

Completed in 2025 milliseconds