Home
last modified time | relevance | path

Searched refs:triple_cstr (Results 1 – 4 of 4) sorted by relevance

/external/lldb/source/Core/
DArchSpec.cpp330 ArchSpec::ArchSpec (const char *triple_cstr, Platform *platform) : in ArchSpec() argument
335 if (triple_cstr) in ArchSpec()
336 SetTriple(triple_cstr, platform); in ArchSpec()
340 ArchSpec::ArchSpec (const char *triple_cstr) : in ArchSpec() argument
345 if (triple_cstr) in ArchSpec()
346 SetTriple(triple_cstr); in ArchSpec()
499 ParseMachCPUDashSubtypeTriple (const char *triple_cstr, ArchSpec &arch) in ParseMachCPUDashSubtypeTriple() argument
502 if (isdigit(triple_cstr[0])) in ParseMachCPUDashSubtypeTriple()
506 uint32_t cpu = (uint32_t)::strtoul (triple_cstr, &end, 0); in ParseMachCPUDashSubtypeTriple()
544 ArchSpec::SetTriple (const char *triple_cstr) in SetTriple() argument
[all …]
/external/lldb/include/lldb/Core/
DArchSpec.h134 ArchSpec (const char *triple_cstr);
136 ArchSpec (const char *triple_cstr, Platform *platform);
356 SetTriple (const char *triple_cstr);
359 SetTriple (const char *triple_cstr,
/external/lldb/source/Target/
DTargetList.cpp65 const char *triple_cstr, in CreateTarget() argument
76 const ArchSpec arch(triple_cstr); in CreateTarget()
77 if (triple_cstr && triple_cstr[0]) in CreateTarget()
81 error.SetErrorStringWithFormat("invalid triple '%s'", triple_cstr); in CreateTarget()
/external/lldb/include/lldb/Target/
DTargetList.h102 const char *triple_cstr,