Lines Matching +defs:process +defs:name
37 DynamicLoader *DynamicLoader::FindPlugin(Process *process,
45 create_callback(process, true));
56 create_callback(process, false));
64 DynamicLoader::DynamicLoader(Process *process) : m_process(process) {}
187 static ModuleSP ReadUnnamedMemoryModule(Process *process, addr_t addr,
188 llvm::StringRef name) {
190 if (name.empty()) {
192 name = namebuf;
194 return process->ReadModuleFromMemory(FileSpec(name), addr);
198 Process *process, llvm::StringRef name, UUID uuid, addr_t value,
203 PlatformSP platform_sp = process->GetTarget().GetPlatform();
204 Target &target = process->GetTarget();
208 if (!name.empty()) {
209 prog_str << name.str() << " ";
219 memory_module_sp = ReadUnnamedMemoryModule(process, value, name);
231 FileSpec name_filespec(name);
280 memory_module_sp = ReadUnnamedMemoryModule(process, value, name);
300 name.str().c_str(), uuid.GetAsString().c_str(),
309 name.str().c_str(), uuid.GetAsString().c_str());
318 name.str().c_str(), uuid.GetAsString().c_str(), value);
333 if (!name.empty())
334 s.Printf(" %s", name.str().c_str());
348 name.str().c_str(), uuid.GetAsString().c_str(),