/openbsd-src/gnu/llvm/lldb/source/Host/android/ |
H A D | HostInfoAndroid.cpp | 34 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 D | lldb_module_utils.py | 58 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 D | performance.py | 120 for module_path in module: 122 lldb.SBFileSpec(module_path, False))
|
/openbsd-src/gnu/usr.bin/perl/dist/XSLoader/t/ |
H A D | XSLoader.t | 201 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 D | asan_symbolize.py | 711 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 730 …module_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 D | GDBRemoteCommunicationServerCommon.h | 139 virtual FileSpec FindModuleFile(const std::string &module_path, 148 ModuleSpec GetModuleInfo(llvm::StringRef module_path, llvm::StringRef triple);
|
H A D | GDBRemoteCommunicationServerCommon.cpp | 1100 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 D | GDBRemoteCommunicationServerLLGS.h | 278 FileSpec FindModuleFile(const std::string &module_path,
|
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/scripts/ |
H A D | sancov.py | 165 (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 D | DynamicLoaderHexagonDYLD.cpp | 475 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 D | common_interface_defs.h | 431 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
|
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_interface_internal.h | 90 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Windows/ |
H A D | PlatformWindows.cpp | 403 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 D | FuzzerExtFunctions.def | 43 (void *pc, char *module_path,
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/ |
H A D | NativeProcessOpenBSD.h | 79 Status GetLoadedModuleFileSpec(const char *module_path,
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeProcessNetBSD.h | 79 Status GetLoadedModuleFileSpec(const char *module_path,
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeProcessFreeBSD.h | 80 Status GetLoadedModuleFileSpec(const char *module_path,
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 100 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 D | Syslog.pm | 921 (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 D | PlatformDarwinDevice.cpp | 376 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 D | Cpan.pm | 1504 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 D | NativeProcessWindows.h | 91 Status GetLoadedModuleFileSpec(const char *module_path,
|
H A D | NativeProcessWindows.cpp | 366 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 D | NativeProcessLinux.h | 100 Status GetLoadedModuleFileSpec(const char *module_path,
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangModulesDeclVendor.cpp | 201 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()
|