/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/tooling/ |
H A D | test_debug_info.cpp | 41 TEST_F(DebugInfoTest, GetSourceFile) in TEST_F() 47 auto sourceFilePath = extractor.GetSourceFile(methods[0]); in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | js_debugger.cpp | 37 auto [_, success] = breakpoints_.emplace(location.GetSourceFile(), ptMethod.release(), in SetBreakpoint() 61 auto [_, success] = smartBreakpoints_.emplace(location.GetSourceFile(), ptMethod.release(), in SetSmartBreakpoint() 98 if (bp.GetSourceFile() == url) { in RemoveBreakpointsByUrl() 145 smartBreakpoint.value().GetSourceFile()}; in HandleBreakpoint() 157 breakpoint.value().GetSourceFile()}; in HandleBreakpoint()
|
H A D | js_debugger.h | 34 const std::string &GetSourceFile() const in GetSourceFile() function in panda::ecmascript::tooling::JSBreakpoint 53 sourceFile_ == bpoint.GetSourceFile() && in operator ==() 88 return (std::hash<std::string>()(bpoint.GetSourceFile())) ^ in operator ()()
|
H A D | js_pt_location.h | 41 const std::string &GetSourceFile() const in GetSourceFile() function in panda::ecmascript::tooling::JSPtLocation
|
H A D | hot_reload_manager.cpp | 77 const std::string &url = patchExtractor->GetSourceFile(mainMethodIndex); in ExtractPatch()
|
/arkcompiler/runtime_core/static_core/disassembler/ |
H A D | disasm_backed_debug_info_extractor.cpp | 66 const char *DisasmBackedDebugInfoExtractor::GetSourceFile(panda_file::File::EntityId methodId) const in GetSourceFile() function in ark::disasm::DisasmBackedDebugInfoExtractor 72 return DebugInfoExtractor::GetSourceFile(methodId); in GetSourceFile() 94 auto sourceFile = std::string(DebugInfoExtractor::GetSourceFile(methodId)); in GetDisassemblySourceName()
|
H A D | disasm_backed_debug_info_extractor.h | 32 const char *GetSourceFile(panda_file::File::EntityId methodId) const override;
|
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | debug_info_cache.cpp | 42 sourceFile = debugInfo.GetSourceFile(method->GetFileId()); in GetSourceLocation() 93 [sourceFile](auto, auto &debugInfo, auto methodId) { return debugInfo.GetSourceFile(methodId) == sourceFile; }, in GetContinueToLocations() 130 return sourceFileFilter(debugInfo.GetSourceFile(methodId)); in GetBreakpointLocations() 135 sourceFiles.insert(debugInfo.GetSourceFile(methodId)); in GetBreakpointLocations() 159 return (debugInfo.GetSourceFile(methodId) == sourceFile); in GetValidLineNumbers() 166 if (debugInfo.GetSourceFile(methodId) != sourceFile) { in GetValidLineNumbers()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | ir_module.cpp | 30 std::string url = debugExtractor->GetSourceFile(methodId); in GetFuncName()
|
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/ |
H A D | test_extractor.cpp | 48 auto srcName = PandaString(langExtractor_->GetSourceFile(method)); in GetBreakpointAddress() 146 return SourceLocation {langExtractor_->GetSourceFile(methodId), line.value()}; in GetSourceLocation()
|
/arkcompiler/runtime_core/static_core/disassembler/tests/ |
H A D | extractor_test.cpp | 60 ASSERT_EQ(extractor.GetSourceFile(id), sourceName); in TEST()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | debug_info_extractor.h | 90 const std::string &GetSourceFile(const panda_file::File::EntityId methodId); 132 const std::string &sourceFile = GetSourceFile(methodId); in MatchWithLocation()
|
H A D | debug_info_extractor.cpp | 229 const std::string &DebugInfoExtractor::GetSourceFile(const panda_file::File::EntityId methodId) in GetSourceFile() function in panda::ecmascript::DebugInfoExtractor
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | debug_info_extractor.h | 74 const char *GetSourceFile(File::EntityId method_id) const;
|
H A D | debug_info_extractor.cpp | 319 const char *DebugInfoExtractor::GetSourceFile(File::EntityId method_id) const in GetSourceFile() function in panda::panda_file::DebugInfoExtractor
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | debug_info_extractor.h | 86 virtual const char *GetSourceFile(File::EntityId methodId) const;
|
H A D | debug_info_extractor.cpp | 300 const char *DebugInfoExtractor::GetSourceFile(File::EntityId methodId) const in GetSourceFile() function in ark::panda_file::DebugInfoExtractor
|
/arkcompiler/runtime_core/libpandafile/tests/ |
H A D | debug_info_extractor_test.cpp | 254 if (extractor.GetSourceFile(method) == source_location.path || extractor.GetSourceFile(method) == name) { in GetBreakpointAddressWrapper() 297 return SourcePairLocation {extractor.GetSourceFile(method_id), line.value()}; in GetSourcePairLocationWrapper()
|
/arkcompiler/runtime_core/static_core/libpandafile/tests/ |
H A D | debug_info_extractor_test.cpp | 261 if (extractor.GetSourceFile(method) == sourceLocation.path || extractor.GetSourceFile(method) == name) { in GetBreakpointAddressWrapper() 304 return SourcePairLocation {extractor.GetSourceFile(methodId), line.value()}; in GetSourcePairLocationWrapper()
|
/arkcompiler/runtime_core/abc2program/ |
H A D | abc_method_processor.cpp | 120 function_.source_file = debug_info_extractor_.GetSourceFile(entity_id_); in FillSourceFile()
|
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
H A D | js_stackgetter.cpp | 110 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in ParseMethodInfo() 263 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in GetNativeMethodCallPos()
|
H A D | js_stackinfo.cpp | 71 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildMethodTrace() 304 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildJsStackInfo() 599 std::string url = debugExtractor->GetSourceFile(methodId);
|
/arkcompiler/ets_frontend/ets2panda/evaluate/ |
H A D | debugInfoStorage.cpp | 157 util::UString sourceFilePath(std::string_view(context.extractor->GetSourceFile(methodId)), allocator_); in FillEvaluateContext()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 94 const std::string &url = extractor->GetSourceFile(mainMethodIndex); in NotifyScriptParsed() 174 const std::string &url = extractor->GetSourceFile(methodId); in SendableMethodEntry() 318 if (!MatchScripts(scriptFunc, location->GetSourceFile(), ScriptMatchType::URL) || in NotifyPaused() 321 LOG_DEBUGGER(ERROR) << "NotifyPaused: unknown file " << location->GetSourceFile(); in NotifyPaused() 1687 std::string url = extractor->GetSourceFile(methodId); in GenerateCallFrame() 1791 if (MatchScripts(scriptFunc, extractor->GetSourceFile(methodId), ScriptMatchType::URL)) { in GetLocalScopeChain() 1879 if (MatchScripts(scriptFunc, extractor->GetSourceFile(methodId), ScriptMatchType::URL)) { in GetClosureScopeChains()
|
/arkcompiler/runtime_core/static_core/static_linker/ |
H A D | linker_context.cpp | 179 ni->SetSourceFile(StringFromOld(oi->GetSourceFile())); in MergeClass()
|