Home
last modified time | relevance | path

Searched refs:module_path (Results 1 – 25 of 34) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/source/Host/android/
H A DHostInfoAndroid.cpp34 FileSpec HostInfoAndroid::ResolveLibraryPath(const std::string &module_path, in ResolveLibraryPath() argument
42 if (module_path.empty() || module_path[0] == '/') { in ResolveLibraryPath()
43 FileSpec file_spec(module_path.c_str()); in ResolveLibraryPath()
73 file_candidate.AppendPathComponent(module_path.c_str()); in ResolveLibraryPath()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dlldb_module_utils.py58 for module_path in args:
59 module = target.module[module_path]
61 result.SetError('no module found that matches "%s".' % (module_path))
160 for module_path in args:
161 module = target.module[module_path]
163 result.SetError('no module found that matches "%s".' % (module_path))
H A Dperformance.py120 for module_path in module:
122 lldb.SBFileSpec(module_path, False))
/openbsd-src/gnu/usr.bin/perl/dist/XSLoader/t/
H A DXSLoader.t201 my $module_path;
204 $module_path = "$dir/Not/Devel/Peek.pm";
210 unless $module_path;
218 #line 1 "$module_path"
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py711 def __init__(self, name, arch, start_addr, end_addr, module_path, uuid): argument
717 self.module_path = module_path
719 self.module_path_for_symbolization = module_path
730module_path=self.module_path if self.module_path == self.module_path_for_symbolization else '{} ({…
747 if not isinstance(self.module_path, str):
749 if not os.path.isabs(self.module_path):
895 module_path = m_obj.group('path')
898 name=os.path.basename(module_path),
902 module_path=module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h139 virtual FileSpec FindModuleFile(const std::string &module_path,
148 ModuleSpec GetModuleInfo(llvm::StringRef module_path, llvm::StringRef triple);
H A DGDBRemoteCommunicationServerCommon.cpp1100 std::string module_path; in Handle_qModuleInfo() local
1101 packet.GetHexByteStringTerminatedBy(module_path, ';'); in Handle_qModuleInfo()
1102 if (module_path.empty()) in Handle_qModuleInfo()
1111 ModuleSpec matched_module_spec = GetModuleInfo(module_path, triple); in Handle_qModuleInfo()
1309 const std::string &module_path, const ArchSpec &arch) { in FindModuleFile() argument
1311 return HostInfoAndroid::ResolveLibraryPath(module_path, arch); in FindModuleFile()
1313 FileSpec file_spec(module_path); in FindModuleFile()
1320 GDBRemoteCommunicationServerCommon::GetModuleInfo(llvm::StringRef module_path, in GetModuleInfo() argument
1324 FileSpec req_module_path_spec(module_path); in GetModuleInfo()
H A DGDBRemoteCommunicationServerLLGS.h278 FileSpec FindModuleFile(const std::string &module_path,
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py165 (start, end, base, module_path) = mem_map[map_idx]
172 for ((start, end, base, module_path), pc_list) in zip(mem_map, mem_map_pcs):
175 dst_path = module_path + '.' + os.path.basename(path)[:-4]
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp475 const char *module_path = I->path.c_str(); in LoadAllCurrentModules() local
476 FileSpec file(module_path); in LoadAllCurrentModules()
486 __FUNCTION__, module_path, I->base_addr); in LoadAllCurrentModules()
/openbsd-src/gnu/llvm/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h431 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_interface_internal.h90 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp403 std::string module_path; in DoLoadImage() local
404 process->ReadCStringFromMemory(injected_module_path, module_path, status); in DoLoadImage()
412 loaded_image->SetFile(module_path, llvm::sys::path::Style::native); in DoLoadImage()
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctions.def43 (void *pc, char *module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeProcessOpenBSD.h79 Status GetLoadedModuleFileSpec(const char *module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h79 Status GetLoadedModuleFileSpec(const char *module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.h80 Status GetLoadedModuleFileSpec(const char *module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp100 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec() local
107 __FUNCTION__, module_path.c_str(), in GetModuleSpec()
117 __FUNCTION__, module_path.c_str(), in GetModuleSpec()
/openbsd-src/gnu/usr.bin/perl/cpan/Sys-Syslog/
H A DSyslog.pm921 (my $module_path = __FILE__) =~ s:Syslog.pm$:Syslog/Win32.pm:;
922 my $loaded = eval { require $module_path } ? 1 : 0;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinDevice.cpp376 std::string module_path(module_spec.GetFileSpec().GetPath()); in GetSharedModuleWithLocalCache() local
377 cache_path.append(module_path); in GetSharedModuleWithLocalCache()
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/App/
H A DCpan.pm1504 my $module_path = substr( $path, length $inc );
1505 $module_path =~ s/\.pm\z//;
1508 my @dirs = grep { ! /\W/ } File::Spec->splitdir( $module_path );
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.h91 Status GetLoadedModuleFileSpec(const char *module_path,
H A DNativeProcessWindows.cpp366 Status NativeProcessWindows::GetLoadedModuleFileSpec(const char *module_path, in GetLoadedModuleFileSpec() argument
372 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.h100 Status GetLoadedModuleFileSpec(const char *module_path,
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp201 const auto &module_path = info.getArgStdStr(1); in HandleModuleRemark() local
202 LLDB_LOG(log, "Building Clang module {0} as {1}", module_name, module_path); in HandleModuleRemark()

12