OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:host_triple
(Results
1 - 5
of
5
) sorted by null
/external/lldb/source/Plugins/Platform/Linux/
PlatformLinux.cpp
220
const llvm::Triple &
host_triple
= Host::GetArchitecture (Host::eSystemDefaultArchitecture).GetTriple();
local
223
module_triple.setVendorName (
host_triple
.getVendorName());
225
module_triple.setOSName (
host_triple
.getOSName());
/external/lldb/source/Core/
ArchSpec.cpp
638
llvm::Triple
host_triple
(llvm::sys::getDefaultTargetTriple());
640
normalized_triple.setVendor(
host_triple
.getVendor());
642
normalized_triple.setOS(
host_triple
.getOS());
643
if (!env_specified &&
host_triple
.getEnvironmentName().size())
644
normalized_triple.setEnvironment(
host_triple
.getEnvironment());
[
all
...]
/external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationServer.cpp
214
const llvm::Triple &
host_triple
= host_arch.GetTriple();
216
response.PutCStringAsRawHex8(
host_triple
.getTriple().c_str());
GDBRemoteCommunicationClient.cpp
1277
llvm::Triple &
host_triple
= m_host_arch.GetTriple();
local
[
all
...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm
301
my $
host_triple
= `grep -E '^host = ' $configurationProductDir/GNUmakefile`;
302
if ($
host_triple
=~ m/^host = ([^-]+)-/) {
[
all
...]
Completed in 66 milliseconds