HomeSort by relevance Sort by last modified time
    Searched refs:pHost (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostname.c 80 char *pHost;
82 pHost = getenv ("HOSTNAME");
84 if ( pHost == NULL ) {
87 strncpy (name, pHost, namelen);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetHostByDns/
GetHostByDns.c 44 struct hostent * pHost;
56 pHost = _gethostbydnsname ( Argv[1], AF_INET );
57 if ( NULL == pHost ) {
61 pIpAddress = (UINT8 *)pHost->h_addr;
63 pHost->h_name,
64 pHost->h_addrtype,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetHostByName/
GetHostByName.c 42 struct hostent * pHost;
56 pHost = gethostbyname ( Argv[1]);
57 if ( NULL == pHost ) {
61 pIpAddress = (UINT8 *)pHost->h_addr;
67 pHost->h_addrtype,
68 pHost->h_name );
71 for ( Index = 1; NULL != pHost->h_addr_list[Index]; Index++ ) {
72 pIpAddress = (UINT8 *)pHost->h_addr_list[Index];
81 ppName = pHost->h_aliases;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetHostByAddr/
GetHostByAddr.c 45 struct hostent * pHost;
74 pHost = gethostbyaddr ( (const char *)&IpAddress[0], INADDRSZ, AF_INET );
75 if ( NULL == pHost ) {
79 pIpAddress = (UINT8 *)pHost->h_addr_list[ 0 ];
85 pHost->h_name );
90 for ( Index = 1; NULL != pHost->h_addr_list[Index]; Index++ ) {
91 pIpAddress = (UINT8 *)pHost->h_addr_list[Index];
102 ppName = pHost->h_aliases;
  /external/webrtc/webrtc/base/
win32socketserver.cc 684 hostent* pHost = reinterpret_cast<hostent*>(dns_->buffer);
685 uint32_t net_ip = *reinterpret_cast<uint32_t*>(pHost->h_addr_list[0]);
  /external/mdnsresponder/mDNSWindows/DLL.NET/
dnssd_NET.cpp 700 PString * pHost = new PString(host);
712 int err = DNSServiceRegister(&sdRef->m_impl->m_ref, flags, interfaceIndex, pName->c_str(), pType->c_str(), pDomain->c_str(), pHost->c_str(), htons(port), len, v, ServiceRef::ServiceRefImpl::RegisterCallback, sdRef->m_impl );
  /external/python/cpython2/Lib/plat-mac/Carbon/
AppleEvents.py 741 pHost = FOUR_CHAR_CODE('HOST')
    [all...]

Completed in 305 milliseconds