Home
last modified time | relevance | path

Searched refs:hostInfo (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCSubtarget.cpp35 host_basic_info_data_t hostInfo; in GetCurrentPowerPCCPU() local
39 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, in GetCurrentPowerPCCPU()
42 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; in GetCurrentPowerPCCPU()
44 switch(hostInfo.cpu_subtype) { in GetCurrentPowerPCCPU()
/external/llvm/lib/Support/
DHost.cpp910 host_basic_info_data_t hostInfo; in getHostCPUName() local
914 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, in getHostCPUName()
917 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) in getHostCPUName()
920 switch (hostInfo.cpu_subtype) { in getHostCPUName()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugEventSocketProxy.cs96 System.Net.IPHostEntry hostInfo = System.Net.Dns.GetHostEntry("localhost"); in Handshake()
97 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugEventSocketProxy.cs103 System.Net.IPHostEntry hostInfo = System.Net.Dns.GetHostEntry( "localhost" ); in Handshake()
104 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DHost.cpp952 host_basic_info_data_t hostInfo; in getHostCPUName() local
956 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, in getHostCPUName()
959 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) in getHostCPUName()
962 switch (hostInfo.cpu_subtype) { in getHostCPUName()
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java927 String hostInfo = _cpu + " " + _os; in write() local
928 out.writeUTF(hostInfo, 0, hostInfo.length()); in write()
DJmDNSImpl.java441 private void openMulticastSocket(HostInfo hostInfo) throws IOException { in openMulticastSocket() argument
443 if (hostInfo.getInetAddress() instanceof Inet6Address) { in openMulticastSocket()
453 if ((hostInfo != null) && (hostInfo.getInterface() != null)) { in openMulticastSocket()
455 _socket.setNetworkInterface(hostInfo.getInterface()); in openMulticastSocket()
/external/autotest/frontend/client/src/autotest/afe/create/
DCreateJobViewPresenter.java261 JSONArray hostInfo = cloneObject.get("hosts").isArray(); in cloneJob() local
263 for (JSONObject host : new JSONArrayList<JSONObject>(hostInfo)) { in cloneJob()