Searched defs:exe_module (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/chrome/common/
H A Dchild_process_logging_win.cc31 HMODULE exe_module = GetModuleHandle(chrome::kBrowserProcessExecutableName); local
32 if (!exe_module)
35 GetProcAddress(exe_module, "SetCrashKeyValueImpl"));
47 HMODULE exe_module = GetModuleHandle(chrome::kBrowserProcessExecutableName); local
48 if (!exe_module)
51 GetProcAddress(exe_module, "ClearCrashKeyValueImpl"));
/external/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp40 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
41 if (exe_module)
43 ObjectFile *object_file = exe_module->GetObjectFile();
/external/lldb/source/Core/
H A DValueObjectRegister.cpp313 Module *exe_module = target->GetExecutableModulePointer(); local
314 if (exe_module)
316 m_clang_type = exe_module->GetClangASTContext().GetBuiltinTypeForEncodingAndBitSize (m_reg_info.encoding,
H A DDebugger.cpp1899 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
1900 if (exe_module)
1904 format_file_spec.GetFilename() = exe_module->GetFileSpec().GetFilename();
1909 format_file_spec = exe_module->GetFileSpec();
/external/lldb/source/Target/
H A DTargetList.cpp371 Module *exe_module = (*pos)->GetExecutableModulePointer(); local
373 if (exe_module)
375 if (FileSpec::Equal (exe_file_spec, exe_module->GetFileSpec(), full_match))
379 if (!exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()))
H A DThreadPlanCallFunction.cpp77 Module *exe_module = target_sp->GetExecutableModulePointer(); local
79 if (exe_module == NULL)
88 ObjectFile *objectFile = exe_module->GetObjectFile();
92 exe_module->GetFileSpec().GetFilename().AsCString());
103 exe_module->GetFileSpec().GetFilename().AsCString());
H A DThreadPlanTracer.cpp135 Module *exe_module = target_sp->GetExecutableModulePointer(); local
137 if (exe_module)
139 m_intptr_type = TypeFromUser(exe_module->GetClangASTContext().GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, target_sp->GetArchitecture().GetAddressByteSize() * 8));
H A DTarget.cpp133 Module *exe_module = GetExecutableModulePointer(); local
134 if (exe_module)
135 s->PutCString (exe_module->GetFileSpec().GetFilename().GetCString());
/external/lldb/source/Commands/
H A DCommandObjectPlatform.cpp409 Module *exe_module = target->GetExecutableModulePointer(); local
410 if (exe_module)
412 m_options.launch_info.GetExecutableFile () = exe_module->GetFileSpec();
416 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture();
H A DCommandObjectProcess.cpp193 const Module *exe_module = target->GetExecutableModulePointer(); local
195 if (exe_module == NULL)
210 exe_module->GetFileSpec().GetPath (filename, sizeof(filename));
215 m_options.launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), false);
219 m_options.launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
298 const char *archname = exe_module->GetArchitecture().GetArchitectureName();
H A DCommandObjectTarget.cpp65 Module *exe_module = target->GetExecutableModulePointer(); local
68 if (exe_module)
69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path));
/external/lldb/source/API/
H A DSBProcess.cpp174 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); local
175 if (exe_module)
176 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
1169 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); local
1171 if (exe_module)
1172 exe_name = exe_module->GetFileSpec().GetFilename().AsCString();
H A DSBTarget.cpp693 Module *exe_module = target_sp->GetExecutableModulePointer(); local
694 if (exe_module)
695 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
785 Module *exe_module = target_sp->GetExecutableModulePointer(); local
786 if (exe_module)
787 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
1204 Module *exe_module = target_sp->GetExecutableModulePointer(); local
1205 if (exe_module)
1206 exe_file_spec.SetFileSpec (exe_module->GetFileSpec());
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp142 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); local
143 if (exe_module)
145 ObjectFile *object_file = exe_module->GetObjectFile();
220 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
221 if (exe_module == NULL)
224 ObjectFile *exe_objfile = exe_module->GetObjectFile();
234 if (CheckForKernelImageAtAddress (exe_objfile->GetHeaderAddress().GetFileAddress(), process) == exe_module->GetUUID())
715 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); local
716 if (exe_module && exe_module
[all...]
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp144 Module *exe_module = target.GetExecutableModulePointer();
145 if (exe_module)
155 ObjectFile *exe_objfile = exe_module->GetObjectFile();
360 ProcessKDP::DoLaunch (Module *exe_module, argument
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp102 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); local
103 if (exe_module)
105 ObjectFile *object_file = exe_module->GetObjectFile();
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp1527 Module *exe_module = GetObjectFile()->GetModule().get(); local
1529 if (addr_module == exe_module)
1544 return exe_module->ResolveFileAddress(exe_file_addr, addr);
/external/lldb/include/lldb/Target/
H A DProcess.h2209 DoLaunch (Module *exe_module, argument

Completed in 330 milliseconds