Home
last modified time | relevance | path

Searched refs:Dbg (Results 1 – 18 of 18) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc41 return StringPrintf("%#x (%s)", field_id, Dbg::GetFieldName(field_id).c_str()); in DescribeField()
45 return StringPrintf("%#x (%s)", method_id, Dbg::GetMethodName(method_id).c_str()); in DescribeMethod()
50 Dbg::GetSignature(ref_type_id, signature); in DescribeRefTypeId()
68 JdwpError rc = Dbg::GetObjectTag(object_id, tag); in WriteTaggedObject()
104 method_id, Dbg::GetClassName(class_id).c_str(), in FinishInvoke()
105 Dbg::GetMethodName(method_id).c_str()); in FinishInvoke()
112 size_t width = Dbg::GetTagWidth(argTypes[i]); in FinishInvoke()
125 …JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.… in FinishInvoke()
138 size_t width = Dbg::GetTagWidth(resultTag); in FinishInvoke()
151 VLOG(jdwp) << " string '" << Dbg::StringToUtf8(resultValue) << "'"; in FinishInvoke()
[all …]
Djdwp_event.cc158 Dbg::WatchLocation(&pMod->locationOnly.loc); in RegisterEvent()
163 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); in RegisterEvent()
218 Dbg::UnwatchLocation(&pMod->locationOnly.loc); in UnregisterEvent()
222 Dbg::UnconfigureStep(pMod->step.threadId); in UnregisterEvent()
397 if (!Dbg::MatchType(basket->classId, pMod->classOnly.refTypeId)) { in ModsMatch()
417 …if (pMod->exceptionOnly.refTypeId != 0 && !Dbg::MatchType(basket->excepClassId, pMod->exceptionOnl… in ModsMatch()
425 …if (!Dbg::MatchType(basket->classId, pMod->fieldOnly.refTypeId) || pMod->fieldOnly.fieldId != bask… in ModsMatch()
503 Dbg::SuspendVM(); in SuspendByPolicy()
514 DebugInvokeReq* pReq = Dbg::GetInvokeReq(); in SuspendByPolicy()
517 Dbg::SuspendSelf(); in SuspendByPolicy()
[all …]
Djdwp_main.cc468 Dbg::Connected(); in Run()
472 while (!Dbg::IsDisposed()) { in Run()
495 debug_thread_id_ = Dbg::GetThreadSelfId(); in Run()
511 Dbg::DdmDisconnected(); in Run()
522 Dbg::Disconnected(); in Run()
525 Dbg::UndoDebuggerSuspensions(); in Run()
544 Dbg::DdmConnected(); in NotifyDdmsActive()
579 if (!Dbg::IsDebuggerActive()) { in LastDebuggerActivity()
608 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id) in operator <<()
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc30 Dbg::SetAllocTrackingEnabled(enable); in DdmVmInternal_enableRecentAllocations()
35 return Dbg::GetRecentAllocations(); in DdmVmInternal_getRecentAllocations()
39 return Dbg::IsAllocTrackingEnabled(); in DdmVmInternal_getRecentAllocationStatus()
117 JDWP::Append1BE(bytes, Dbg::ToJdwpThreadStatus(t->GetState())); in ThreadStatsGetterCallback()
150 return Dbg::DdmHandleHpifChunk(static_cast<Dbg::HpifWhen>(when)); in DdmVmInternal_heapInfoNotify()
154 …return Dbg::DdmHandleHpsgNhsgChunk(static_cast<Dbg::HpsgWhen>(when), static_cast<Dbg::HpsgWhat>(wh… in DdmVmInternal_heapSegmentNotify()
158 Dbg::DdmSetThreadNotification(enable); in DdmVmInternal_threadNotify()
Dorg_apache_harmony_dalvik_ddmc_DdmServer.cc29 Dbg::DdmSendChunk(type, length, reinterpret_cast<const uint8_t*>(&data[offset])); in DdmServer_nativeSendChunk()
Ddalvik_system_VMDebug.cc118 return Dbg::IsDebuggerActive(); in VMDebug_isDebuggerConnected()
122 return Dbg::IsJdwpConfigured(); in VMDebug_isDebuggingEnabled()
126 return Dbg::LastDebuggerActivity(); in VMDebug_lastDebuggerActivity()
Ddalvik_system_VMRuntime.cc99 return Dbg::IsDebuggerActive(); in VMRuntime_isDebuggerActive()
Ddalvik_system_Zygote.cc297 Dbg::SetJdwpAllowed((debug_flags & DEBUG_ENABLE_DEBUGGER) != 0); in EnableDebugFeatures()
/art/runtime/
Ddebugger.cc124 Dbg::PostLocationEvent(method, 0, this_object, Dbg::kMethodEntry); in MethodEntered()
136 Dbg::PostLocationEvent(method, dex_pc, this_object, Dbg::kMethodExit); in MethodExited()
149 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc); in DexPcMoved()
156 Dbg::PostException(thread, throw_location, catch_method, catch_dex_pc, exception_object); in ExceptionCaught()
178 static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
179 static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
180 static Dbg::HpsgWhat gDdmHpsgWhat;
181 static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
182 static Dbg::HpsgWhat gDdmNhsgWhat;
188 AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: Cir…
[all …]
Dthread_list.cc326 Thread* debug_thread = Dbg::GetDebugThread(); in SuspendAllForDebugger()
370 Thread* debug_thread = Dbg::GetDebugThread(); in SuspendSelfForDebugger()
390 Dbg::ClearWaitForEventThread(); in SuspendSelfForDebugger()
Druntime.cc125 Dbg::StopJdwp(); in ~Runtime()
415 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) { in Create()
801 Dbg::StartJdwp(); in DidForkFromZygote()
Dthread.h615 friend class Dbg; // F or SetStateUnsafe. variable
Dtrace.cc531 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2); in FinishTracing()
Ddebugger.h84 class Dbg {
Dthread.cc166 Dbg::PostThreadStart(self); in CreateCallback()
414 Dbg::DdmSendThreadNotification(this, CHUNK_TYPE("THNM")); in SetThreadName()
1039 Dbg::PostThreadDeath(self); in Destroy()
Dclass_linker.cc1459 Dbg::PostClassPrepare(klass.get()); in DefineClass()
/art/runtime/gc/
Dheap.cc596 if (Dbg::IsAllocTrackingEnabled()) { in AllocObject()
597 Dbg::RecordAllocation(c, byte_count); in AllocObject()
1312 Dbg::GcDidFinish(); in CollectGarbageInternal()
/art/runtime/hprof/
Dhprof.cc447 Dbg::DdmSendChunkV(CHUNK_TYPE("HPDS"), iov, 2); in Dump()