HomeSort by relevance Sort by last modified time
    Searched refs:Dbg (Results 1 - 25 of 37) sorted by null

1 2

  /art/test/909-attach-agent/
disallow_debugging.cc 23 Dbg::SetJdwpAllowed(val);
  /external/elfutils/libdw/
memory-access.h 168 # define read_2ubyte_unaligned(Dbg, Addr) \
169 (unlikely ((Dbg)->other_byte_order) \
172 # define read_2sbyte_unaligned(Dbg, Addr) \
173 (unlikely ((Dbg)->other_byte_order) \
179 # define read_4ubyte_unaligned(Dbg, Addr) \
180 (unlikely ((Dbg)->other_byte_order) \
183 # define read_4sbyte_unaligned(Dbg, Addr) \
184 (unlikely ((Dbg)->other_byte_order) \
190 # define read_8ubyte_unaligned(Dbg, Addr) \
191 (unlikely ((Dbg)->other_byte_order)
    [all...]
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 40 Dbg::SetAllocTrackingEnabled(enable);
45 return Dbg::GetRecentAllocations();
134 JDWP::Append1BE(bytes, Dbg::ToJdwpThreadStatus(t->GetState()));
167 return Dbg::DdmHandleHpifChunk(static_cast<Dbg::HpifWhen>(when));
171 return Dbg::DdmHandleHpsgNhsgChunk(static_cast<Dbg::HpsgWhen>(when), static_cast<Dbg::HpsgWhat>(what), native);
175 Dbg::DdmSetThreadNotification(enable);
dalvik_system_ZygoteHooks.cc 179 Dbg::SetJdwpAllowed((runtime_flags & DEBUG_ENABLE_JDWP) != 0);
dalvik_system_VMDebug.cc 175 return Dbg::IsDebuggerActive();
184 return Dbg::LastDebuggerActivity();
576 if (!Dbg::IsJdwpAllowed()) {
dalvik_system_VMRuntime.cc 183 return Dbg::IsDebuggerActive();
  /art/runtime/jdwp/
jdwp_handler.cc 46 return StringPrintf("%#" PRIx64 " (%s)", field_id, Dbg::GetFieldName(field_id).c_str());
50 return StringPrintf("%#" PRIx64 " (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
55 Dbg::GetSignature(ref_type_id, &signature);
62 JdwpError rc = Dbg::GetObjectTag(object_id, &tag);
99 class_id, method_id, Dbg::GetClassName(class_id).c_str(),
100 Dbg::GetMethodName(method_id).c_str());
107 size_t width = Dbg::GetTagWidth(argTypes[i]);
118 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id,
158 Dbg::FindLoadedClassBySignature(classDescriptor.c_str(), &ids);
166 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, nullptr)
    [all...]
jdwp_event.cc 142 if (!Dbg::RequiresDeoptimization()) {
209 Dbg::WatchLocation(&pMod->locationOnly.loc, &req);
215 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
226 Dbg::RequestDeoptimization(req);
233 Dbg::RequestDeoptimization(req);
249 Dbg::ManageDeoptimization();
270 Dbg::GetObjectRegistry()->Get<art::mirror::Class*>(loc.class_id, &error));
325 Dbg::UnwatchLocation(&pMod->locationOnly.loc, &req);
330 Dbg::UnconfigureStep(pMod->step.threadId);
338 Dbg::RequestDeoptimization(req)
    [all...]
jdwp_main.cc 620 Dbg::Connected();
624 while (!Dbg::IsDisposed()) {
644 debug_thread_id_ = Dbg::GetThreadSelfId();
660 Dbg::DdmDisconnected();
670 Dbg::Disconnected();
673 Dbg::UndoDebuggerSuspensions();
692 Dbg::DdmConnected();
727 if (!Dbg::IsDebuggerActive()) {
756 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id
    [all...]
  /art/runtime/
debugger.cc 174 Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr);
188 uint32_t events = Dbg::kMethodExit;
192 events |= Dbg::kMethodEntry;
195 Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value);
224 events = Dbg::kMethodEntry;
227 Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr);
237 Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field);
247 Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value);
253 Dbg::PostException(exception_object.Get())
    [all...]
thread_list.cc     [all...]
runtime.cc     [all...]
debugger.h 233 class Dbg {
    [all...]
thread.cc     [all...]
art_method.cc 327 Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
    [all...]
  /art/openjdkjvmti/
ti_ddms.cc 68 if (!art::Dbg::DdmHandleChunk(self->GetJniEnv(),
ti_redefine.cc     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/
DIATable.cpp 60 return PDB_TableType::Dbg;
  /art/adbconnection/
adbconnection.cc 83 return art::Dbg::IsJdwpAllowed();
301 art::Dbg::DdmConnected();
303 art::Dbg::DdmDisconnected();
683 CHECK(art::Dbg::IsJdwpAllowed());
764 if (!art::Dbg::DdmHandleChunk(self->GetJniEnv(),
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 91 Dbg
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 807 (self->IsForceInterpreter() || Dbg::IsForcedInterpreterNeededForUpcall(self, caller)))) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 190 <! WARNING. bug in ST: this is cut-n-paste into Dbg.stg !>
    [all...]
  /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg 230 <! WARNING. bug in ST: this is cut-n-paste into Dbg.stg !>
    [all...]

Completed in 836 milliseconds

1 2