OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SetTriple
(Results
1 - 19
of
19
) sorted by null
/external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.cpp
737
case 0: arch.
SetTriple
("armv7-apple-ios"); return true;
738
case 1: arch.
SetTriple
("armv7f-apple-ios"); return true;
739
case 2: arch.
SetTriple
("armv7k-apple-ios"); return true;
740
case 3: arch.
SetTriple
("armv7s-apple-ios"); return true;
741
case 4: arch.
SetTriple
("armv7m-apple-ios"); return true;
742
case 5: arch.
SetTriple
("armv7em-apple-ios"); return true;
743
case 6: arch.
SetTriple
("armv6-apple-ios"); return true;
744
case 7: arch.
SetTriple
("armv5-apple-ios"); return true;
745
case 8: arch.
SetTriple
("armv4-apple-ios"); return true;
746
case 9: arch.
SetTriple
("arm-apple-ios"); return true
[
all
...]
/external/lldb/include/lldb/Core/
ArchSpec.h
353
SetTriple
(const llvm::Triple &triple);
356
SetTriple
(const char *triple_cstr);
359
SetTriple
(const char *triple_cstr,
/external/lldb/source/Interpreter/
OptionGroupArchitecture.cpp
54
arch.
SetTriple
(m_arch_str.c_str(), platform);
OptionValueArch.cpp
59
if (m_current_value.
SetTriple
(value_cstr))
/external/lldb/scripts/Python/interface/
SBModuleSpec.i
81
SetTriple
(const char *triple);
/external/lldb/include/lldb/API/
SBModuleSpec.h
90
SetTriple
(const char *triple);
/external/lldb/source/API/
SBModuleSpec.cpp
117
SBModuleSpec::
SetTriple
(const char *triple)
119
m_opaque_ap->GetArchitecture().
SetTriple
(triple);
SBTarget.cpp
[
all
...]
/external/lldb/source/Core/
ArchSpec.cpp
336
SetTriple
(triple_cstr, platform);
346
SetTriple
(triple_cstr);
354
SetTriple
(triple);
475
ArchSpec::
SetTriple
(const llvm::Triple &triple)
544
ArchSpec::
SetTriple
(const char *triple_cstr)
566
SetTriple
(llvm::Triple (triple_stref));
575
ArchSpec::
SetTriple
(const char *triple_cstr, Platform *platform)
647
SetTriple
(normalized_triple);
[
all
...]
Disassembler.cpp
912
arch.
SetTriple
(llvm::Triple (value_sp->GetStringValue()));
[
all
...]
/external/lldb/source/Commands/
CommandObjectDisassemble.cpp
153
if (!arch.
SetTriple
(option_arg, m_interpreter.GetPlatform (true).get()))
154
arch.
SetTriple
(option_arg);
CommandObjectPlatform.cpp
673
match_info.GetProcessInfo().GetArchitecture().
SetTriple
(option_arg, m_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform().get());
[
all
...]
/external/lldb/source/Host/common/
Host.cpp
369
g_host_arch_32.
SetTriple
(triple);
374
g_host_arch_64.
SetTriple
(triple);
376
g_host_arch_32.
SetTriple
(triple.get32BitArchVariant());
382
g_host_arch_64.
SetTriple
(triple);
[
all
...]
/external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
ObjectContainerUniversalMachO.cpp
221
arch.
SetTriple
(LLDB_ARCH_DEFAULT);
/external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp
300
arch.
SetTriple
("i386", m_target.GetPlatform().get());
/external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp
[
all
...]
GDBRemoteCommunicationServer.cpp
402
match_info.GetProcessInfo().GetArchitecture().
SetTriple
(value.c_str(), NULL);
/external/lldb/source/Host/macosx/
Symbols.cpp
605
module_spec.GetArchitecture().
SetTriple
(str.c_str());
[
all
...]
/external/lldb/source/Target/
Process.cpp
799
if (!launch_info.GetArchitecture().
SetTriple
(option_arg, m_interpreter.GetPlatform(true).get()))
800
launch_info.GetArchitecture().
SetTriple
(option_arg);
[
all
...]
Completed in 183 milliseconds