Lines Matching refs:executable
97 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress() argument
99 auto it = m_loaded_modules.find(executable); in GetLoadAddress()
107 FileSpec file_spec(executable->GetPlatformFileSpec()); in GetLoadAddress()
113 m_loaded_modules[executable] = load_addr; in GetLoadAddress()
124 ModuleSP executable = GetTargetExecutable(); in DidAttach() local
126 if (!executable.get()) in DidAttach()
131 lldb::addr_t load_addr = GetLoadAddress(executable); in DidAttach()
141 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false); in DidAttach()
144 module_list.Append(executable); in DidAttach()
154 ModuleSP executable = GetTargetExecutable(); in DidLaunch() local
155 if (!executable.get()) in DidLaunch()
158 lldb::addr_t load_addr = GetLoadAddress(executable); in DidLaunch()
161 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false); in DidLaunch()
164 module_list.Append(executable); in DidLaunch()