Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A Dadd_new_check.py22 def adapt_cmake(module_path, check_name_camel): argument
23 filename = os.path.join(module_path, 'CMakeLists.txt')
161 def get_module_filename(module_path, module): argument
164 os.listdir(module_path)))[0]
165 return os.path.join(module_path, modulecpp)
170 filename = get_module_filename(module_path, module)
335 if not os.path.isdir(module_path):
502 def write_docs(module_path, module, check_name): argument
574 if not adapt_cmake(module_path, check_name_camel):
586 add_release_notes(module_path, module, check_name)
[all …]
H A Drename_check.py109 def adapt_cmake(module_path, check_name_camel): argument
110 filename = os.path.join(module_path, 'CMakeLists.txt')
137 def adapt_module(module_path, module, check_name, check_name_camel): argument
140 os.listdir(module_path))))
141 filename = os.path.join(module_path, modulecpp)
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/examples/python/
H A Dlldb_module_utils.py59 for module_path in args:
60 module = target.module[module_path]
62 result.SetError('no module found that matches "%s".' % (module_path))
161 for module_path in args:
162 module = target.module[module_path]
164 result.SetError('no module found that matches "%s".' % (module_path))
H A Dperformance.py122 for module_path in module:
124 lldb.SBFileSpec(module_path, False))
/llvm-project-15.0.7/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,
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DReproducerProvider.h209 void AddSymbolFile(const UUID *uuid, const FileSpec &module_path,
216 Entry(std::string uuid, std::string module_path, std::string symbol_path) in Entry()
217 : uuid(std::move(uuid)), module_path(std::move(module_path)), in Entry()
224 std::string module_path; member
409 io.mapRequired("module-path", entry.module_path); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/
H A Dstack_core_scripted_process.py46 module_path = os.path.join(corefile_module.GetFileSpec().GetDirectory(),
48 if not os.path.exists(module_path):
52 self.loaded_images.append({"path": module_path,
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h140 virtual FileSpec FindModuleFile(const std::string &module_path,
149 ModuleSpec GetModuleInfo(llvm::StringRef module_path, llvm::StringRef triple);
H A DGDBRemoteCommunicationServerCommon.cpp1101 std::string module_path; in Handle_qModuleInfo() local
1102 packet.GetHexByteStringTerminatedBy(module_path, ';'); in Handle_qModuleInfo()
1103 if (module_path.empty()) in Handle_qModuleInfo()
1112 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,
/llvm-project-15.0.7/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]
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h358 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_interface_internal.h77 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp400 std::string module_path; in DoLoadImage() local
401 process->ReadCStringFromMemory(injected_module_path, module_path, status); in DoLoadImage()
409 loaded_image->SetFile(module_path, llvm::sys::path::Style::native); in DoLoadImage()
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctions.def43 (void *pc, char *module_path,
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h79 Status GetLoadedModuleFileSpec(const char *module_path,
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.h80 Status GetLoadedModuleFileSpec(const char *module_path,
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp98 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec() local
105 __FUNCTION__, module_path.c_str(), in GetModuleSpec()
115 __FUNCTION__, module_path.c_str(), in GetModuleSpec()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinDevice.cpp366 std::string module_path(module_spec.GetFileSpec().GetPath()); in GetSharedModuleWithLocalCache() local
367 cache_path.append(module_path); in GetSharedModuleWithLocalCache()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Utility/
H A DReproducerProvider.cpp168 return std::make_pair<FileSpec, FileSpec>(FileSpec(it->module_path), in GetPaths()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.h100 Status GetLoadedModuleFileSpec(const char *module_path,

12