Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DHost.cpp513 host_basic_info_data_t hostInfo; in getHostCPUName() local
517 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, in getHostCPUName()
520 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; in getHostCPUName()
522 switch(hostInfo.cpu_subtype) { in getHostCPUName()
/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/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/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.java251 JSONArray hostInfo = cloneObject.get("hosts").isArray(); in cloneJob() local
253 for (JSONObject host : new JSONArrayList<JSONObject>(hostInfo)) { in cloneJob()