Lines Matching refs:jdwp

348       VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];  in IsBreakpoint()
543 VLOG(jdwp) << "Sending heap info to DDM"; in GcDidFinish()
548 VLOG(jdwp) << "Dumping heap to DDM"; in GcDidFinish()
553 VLOG(jdwp) << "Dumping native heap to DDM"; in GcDidFinish()
580 VLOG(jdwp) << "JDWP has attached"; in Connected()
1652 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", in OutputVariableTable()
2381 … VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; in GetThreadFrames()
2591 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; in GetLocalValues()
2635 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; in GetLocalValue()
2645 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; in GetLocalValue()
2656 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal; in GetLocalValue()
2666 VLOG(jdwp) << "get int local " << vreg << " = " << intVal; in GetLocalValue()
2676 VLOG(jdwp) << "get float local " << vreg << " = " << intVal; in GetLocalValue()
2693 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o; in GetLocalValue()
2710 VLOG(jdwp) << "get double local " << vreg << " = " << longVal; in GetLocalValue()
2720 VLOG(jdwp) << "get long local " << vreg << " = " << longVal; in GetLocalValue()
2763 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; in SetLocalValues()
2829 VLOG(jdwp) << tag << " object " << o << " is an invalid object"; in SetLocalValue()
3072 VLOG(jdwp) << "SS new method"; in UpdateDebugger()
3075 VLOG(jdwp) << "SS new instruction"; in UpdateDebugger()
3078 VLOG(jdwp) << "SS new line"; in UpdateDebugger()
3092 VLOG(jdwp) << "SS method pop"; in UpdateDebugger()
3097 VLOG(jdwp) << "SS new instruction"; in UpdateDebugger()
3100 VLOG(jdwp) << "SS new line"; in UpdateDebugger()
3115 VLOG(jdwp) << "SS method pop"; in UpdateDebugger()
3154 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", in ProcessDeoptimizationRequest()
3160 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", in ProcessDeoptimizationRequest()
3167 VLOG(jdwp) << "Deoptimize the world ..."; in ProcessDeoptimizationRequest()
3169 VLOG(jdwp) << "Deoptimize the world DONE"; in ProcessDeoptimizationRequest()
3172 VLOG(jdwp) << "Undeoptimize the world ..."; in ProcessDeoptimizationRequest()
3174 VLOG(jdwp) << "Undeoptimize the world DONE"; in ProcessDeoptimizationRequest()
3177 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; in ProcessDeoptimizationRequest()
3179 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; in ProcessDeoptimizationRequest()
3182 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; in ProcessDeoptimizationRequest()
3184 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; in ProcessDeoptimizationRequest()
3209 … VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x", in RequestDeoptimizationLocked()
3223 … VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x", in RequestDeoptimizationLocked()
3232 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() in RequestDeoptimizationLocked()
3244 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() in RequestDeoptimizationLocked()
3252 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() in RequestDeoptimizationLocked()
3259 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() in RequestDeoptimizationLocked()
3293 VLOG(jdwp) << "Process deoptimization request #" << req_index++; in ManageDeoptimization()
3351 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method " in GetRequiredDeoptimizationKind()
3370 VLOG(jdwp) << "Need full deoptimization because of copying of method " in GetRequiredDeoptimizationKind()
3377 VLOG(jdwp) << "Need selective deoptimization for compiled method " in GetRequiredDeoptimizationKind()
3382 VLOG(jdwp) << "No need for deoptimization for non-compiled method " in GetRequiredDeoptimizationKind()
3390 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required"; in GetRequiredDeoptimizationKind()
3430 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " in WatchLocation()
3444 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; in UnwatchLocation()
3838 if (VLOG_IS_ON(jdwp)) { in ConfigureStep()
3839 VLOG(jdwp) << "Single-step thread: " << *thread; in ConfigureStep()
3840 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize(); in ConfigureStep()
3841 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth(); in ConfigureStep()
3842 VLOG(jdwp) << "Single-step current method: " in ConfigureStep()
3844 VLOG(jdwp) << "Single-step current line: " << line_number; in ConfigureStep()
3845 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth(); in ConfigureStep()
3846 VLOG(jdwp) << "Single-step dex_pc values:"; in ConfigureStep()
3848 VLOG(jdwp) << StringPrintf(" %#x", dex_pc); in ConfigureStep()
4035 VLOG(jdwp) << " Resuming all threads"; in PrepareInvokeMethod()
4038 VLOG(jdwp) << " Resuming event thread only"; in PrepareInvokeMethod()
4097 VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m) in ExecuteMethodWithoutPendingException()
4102 VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m) in ExecuteMethodWithoutPendingException()
4131 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get() in ExecuteMethodWithoutPendingException()
4138 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; in ExecuteMethodWithoutPendingException()
4178 VLOG(jdwp) << " Suspending all threads"; in ExecuteMethodWithoutPendingException()
4182 VLOG(jdwp) << " --> returned " << result_tag in ExecuteMethodWithoutPendingException()
4189 if (VLOG_IS_ON(jdwp)) { in ExecuteMethodWithoutPendingException()
4193 VLOG(jdwp) << " string '" << result_string << "'"; in ExecuteMethodWithoutPendingException()
4196 VLOG(jdwp) << " string (null)"; in ExecuteMethodWithoutPendingException()
4240 VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)", in FinishInvokeMethod()
4245 VLOG(jdwp) << "Not sending invoke reply because debugger detached"; in FinishInvokeMethod()
4318 …VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.g… in DdmHandlePacket()
4336 …VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(r… in DdmHandlePacket()
4341 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; in DdmBroadcast()
4460 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; in DdmSendChunkV()