Searched defs:triple_cstr (Results 1 - 2 of 2) sorted by relevance
/external/lldb/source/Target/ |
H A D | TargetList.cpp | 65 const char *triple_cstr, 73 // This is purposely left empty unless it is specified by triple_cstr. 74 // If not initialized via triple_cstr, then the currently selected platform 76 const ArchSpec arch(triple_cstr); 77 if (triple_cstr && triple_cstr[0]) 81 error.SetErrorStringWithFormat("invalid triple '%s'", triple_cstr); 63 CreateTarget(Debugger &debugger, const char *user_exe_path, const char *triple_cstr, bool get_dependent_files, const OptionGroupPlatform *platform_options, TargetSP &target_sp) argument
|
/external/lldb/source/Core/ |
H A D | ArchSpec.cpp | 330 ArchSpec::ArchSpec (const char *triple_cstr, Platform *platform) : argument 335 if (triple_cstr) 336 SetTriple(triple_cstr, platform); 340 ArchSpec::ArchSpec (const char *triple_cstr) : argument 345 if (triple_cstr) 346 SetTriple(triple_cstr); 499 ParseMachCPUDashSubtypeTriple (const char *triple_cstr, ArchSpec &arch) argument 502 if (isdigit(triple_cstr[0])) 506 uint32_t cpu = (uint32_t)::strtoul (triple_cstr, &end, 0); 544 ArchSpec::SetTriple (const char *triple_cstr) argument 575 SetTriple(const char *triple_cstr, Platform *platform) argument [all...] |
Completed in 139 milliseconds