Home
last modified time | relevance | path

Searched refs:DebugInfoImpl (Results 1 – 3 of 3) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DDebugInfo.java74 return new DebugInfoImpl(dexFile, debugInfoOffset, methodImpl); in newOrEmpty()
95 private static class DebugInfoImpl extends DebugInfo { class in DebugInfo
100 public DebugInfoImpl(@Nonnull DexBackedDexFile dexFile, in DebugInfoImpl() method in DebugInfo.DebugInfoImpl
/external/v8/src/wasm/
Dwasm-debug.h31 class DebugInfoImpl; variable
190 std::unique_ptr<DebugInfoImpl> impl_;
Dwasm-debug.cc246 class DebugInfoImpl { class
248 explicit DebugInfoImpl(NativeModule* native_module) in DebugInfoImpl() function in v8::internal::wasm::DebugInfoImpl
251 DebugInfoImpl(const DebugInfoImpl&) = delete;
252 DebugInfoImpl& operator=(const DebugInfoImpl&) = delete;
619 FrameInspectionScope(DebugInfoImpl* debug_info, Address pc) in FrameInspectionScope()
839 : impl_(std::make_unique<DebugInfoImpl>(native_module)) {} in DebugInfo()