Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducerProvider.h228 void AddSymbolFile(const UUID *uuid, const FileSpec &module_path,
235 Entry(std::string uuid, std::string module_path, std::string symbol_path) in Entry()
236 : uuid(std::move(uuid)), module_path(std::move(module_path)), in Entry()
243 std::string module_path; member
428 io.mapRequired("module-path", entry.module_path); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-13.1/stand/lua/
H A Dconfig.lua622 local module_path = loader.getenv("module_path")
626 return module_path
633 return module_path:gsub(kernel_path, '')
664 local module_path = getModulePath()
681 if module_path ~= nil then
683 module_path)
/freebsd-13.1/contrib/llvm-project/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.cpp1038 std::string module_path; in Handle_qModuleInfo() local
1039 packet.GetHexByteStringTerminatedBy(module_path, ';'); in Handle_qModuleInfo()
1040 if (module_path.empty()) in Handle_qModuleInfo()
1049 ModuleSpec matched_module_spec = GetModuleInfo(module_path, triple); in Handle_qModuleInfo()
1246 const std::string &module_path, const ArchSpec &arch) { in FindModuleFile() argument
1248 return HostInfoAndroid::ResolveLibraryPath(module_path, arch); in FindModuleFile()
1250 FileSpec file_spec(module_path); in FindModuleFile()
1257 GDBRemoteCommunicationServerCommon::GetModuleInfo(llvm::StringRef module_path, in GetModuleInfo() argument
1261 FileSpec req_module_path_spec(module_path); in GetModuleInfo()
H A DGDBRemoteCommunicationServerLLGS.h233 FileSpec FindModuleFile(const std::string &module_path,
H A DGDBRemoteCommunicationServerLLGS.cpp3710 GDBRemoteCommunicationServerLLGS::FindModuleFile(const std::string &module_path, in FindModuleFile() argument
3715 ->GetLoadedModuleFileSpec(module_path.c_str(), file_spec) in FindModuleFile()
3722 return GDBRemoteCommunicationServerCommon::FindModuleFile(module_path, arch); in FindModuleFile()
H A DGDBRemoteCommunicationClient.cpp3643 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo() local
3644 if (module_path.empty()) in GetModuleInfo()
3649 packet.PutStringAsRawHex8(module_path); in GetModuleInfo()
/freebsd-13.1/libexec/rc/rc.d/
H A Dkldxref23 MODULE_PATHS=`sysctl -n kern.module_path`
/freebsd-13.1/stand/defaults/
H A Dloader.conf107 module_path="/boot/modules;/boot/dtb;/boot/dtb/overlays" # Set the module search path
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DReproducer.cpp318 if (!entry.module_path.empty() && !vfs->exists(entry.module_path)) { in Verify()
319 warning_callback("'" + entry.module_path + "': module path for " + in Verify()
H A DReproducerProvider.cpp195 return std::make_pair<FileSpec, FileSpec>(FileSpec(it->module_path), in GetPaths()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_interface_internal.h78 __sanitizer::uptr pc, char *module_path,
/freebsd-13.1/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h349 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp485 const char *module_path = I->path.c_str(); in LoadAllCurrentModules() local
486 FileSpec file(module_path); in LoadAllCurrentModules()
496 __FUNCTION__, module_path, I->base_addr); in LoadAllCurrentModules()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctions.def43 (void *pc, char *module_path,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h79 Status GetLoadedModuleFileSpec(const char *module_path,
H A DNativeProcessNetBSD.cpp736 Status NativeProcessNetBSD::GetLoadedModuleFileSpec(const char *module_path, in GetLoadedModuleFileSpec() argument
742 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.h80 Status GetLoadedModuleFileSpec(const char *module_path,
H A DNativeProcessFreeBSD.cpp695 Status NativeProcessFreeBSD::GetLoadedModuleFileSpec(const char *module_path, in GetLoadedModuleFileSpec() argument
701 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp172 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec() local
178 __FUNCTION__, module_path.c_str(), in GetModuleSpec()
188 __FUNCTION__, module_path.c_str(), in GetModuleSpec()
/freebsd-13.1/stand/common/
H A Dhelp.common153 filenames, each of which will be searched for in the module_path
271 set module_path=<path>[;<path>...]
275 default module_path is "/boot/modules" with the kernel directory
/freebsd-13.1/stand/forth/
H A Dsupport.4th1279 : modulepath s" module_path" ;
1281 \ Functions used to save and restore module_path's value.
1349 s" echo Module_path: ${module_path}" evaluate
1374 \ The kernel gets loaded from the current module_path.
1415 \ The module_path variable is overridden if load is successful, by
1427 \ Set the environment variable module_path, and try loading
1500 \ directories pointed by module_path.
1502 \ The module_path variable is overridden if load is successful, by
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h237 virtual Status GetLoadedModuleFileSpec(const char *module_path,
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectReproducer.cpp465 entry.module_path.c_str()); in DoExecute()
/freebsd-13.1/sys/kern/
H A Dkern_linker.c1822 SYSCTL_STRING(_kern, OID_AUTO, module_path, CTLFLAG_RWTUN, linker_path,

12