Lines Matching refs:executable
101 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress() argument
103 auto it = m_loaded_modules.find(executable); in GetLoadAddress()
111 FileSpec file_spec(executable->GetPlatformFileSpec()); in GetLoadAddress()
117 m_loaded_modules[executable] = load_addr; in GetLoadAddress()
128 ModuleSP executable = GetTargetExecutable(); in DidAttach() local
130 if (!executable.get()) in DidAttach()
135 lldb::addr_t load_addr = GetLoadAddress(executable); in DidAttach()
145 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false); in DidAttach()
148 module_list.Append(executable); in DidAttach()
158 ModuleSP executable = GetTargetExecutable(); in DidLaunch() local
159 if (!executable.get()) in DidLaunch()
162 lldb::addr_t load_addr = GetLoadAddress(executable); in DidLaunch()
165 UpdateLoadedSections(executable, LLDB_INVALID_ADDRESS, load_addr, false); in DidLaunch()
168 module_list.Append(executable); in DidLaunch()