HomeSort by relevance Sort by last modified time
    Searched defs:exe_module (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/chrome/common/
child_process_logging_win.cc 33 HMODULE exe_module = GetModuleHandle(chrome::kBrowserProcessExecutableName); local
34 if (!exe_module)
37 GetProcAddress(exe_module, "SetCrashKeyValueImpl"));
49 HMODULE exe_module = GetModuleHandle(chrome::kBrowserProcessExecutableName); local
50 if (!exe_module)
53 GetProcAddress(exe_module, "ClearCrashKeyValueImpl"));
  /external/lldb/source/Core/
ValueObjectRegister.cpp 313 Module *exe_module = target->GetExecutableModulePointer(); local
314 if (exe_module)
316 m_clang_type = exe_module->GetClangASTContext().GetBuiltinTypeForEncodingAndBitSize (m_reg_info.encoding,
Debugger.cpp 1899 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Static/
DynamicLoaderStatic.cpp 40 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); local
41 if (exe_module)
43 ObjectFile *object_file = exe_module->GetObjectFile();
  /external/lldb/source/Target/
TargetList.cpp 371 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()))
ThreadPlanCallFunction.cpp 77 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());
ThreadPlanTracer.cpp 135 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));
Target.cpp 133 Module *exe_module = GetExecutableModulePointer(); local
134 if (exe_module)
135 s->PutCString (exe_module->GetFileSpec().GetFilename().GetCString());
    [all...]
  /external/lldb/source/Commands/
CommandObjectPlatform.cpp 409 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();
    [all...]
CommandObjectProcess.cpp 193 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();
    [all...]
CommandObjectTarget.cpp 65 Module *exe_module = target->GetExecutableModulePointer(); local
68 if (exe_module)
69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path));
    [all...]
  /external/lldb/source/API/
SBProcess.cpp 174 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();
    [all...]
SBTarget.cpp 693 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());
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 142 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->GetUUID().IsValid()
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 102 Module* exe_module = process->GetTarget().GetExecutableModulePointer(); local
103 if (exe_module)
105 ObjectFile *object_file = exe_module->GetObjectFile();
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARFDebugMap.cpp 1527 Module *exe_module = GetObjectFile()->GetModule().get(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
browser_options_handler.cc 1555 HMODULE exe_module = GetModuleHandle(chrome::kBrowserProcessExecutableName); local
    [all...]

Completed in 370 milliseconds