/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/ |
H A D | inet_makeaddr.c | 2 Formulate an Internet address from network + host. 55 * Formulate an Internet address from network + host. Used in 59 inet_makeaddr(in_addr_t net, in_addr_t host) 65 addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST); 67 addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST); 69 addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST); 71 addr = net | host;
|
/vbox/src/libs/xpcom18a4/nsprpub/config/ |
H A D | nfspwd.pl | 48 chop($host = `hostname`); 49 print("/h/$host$_\n");
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | gethostbyht.c | 83 static struct hostent host; variable in typeref:struct:hostent 151 host.h_addr_list = h_addr_ptrs; 152 host.h_length = len; 153 host.h_addrtype = af; 156 host.h_name = cp; 157 q = host.h_aliases = host_aliases; 172 return (&host);
|
H A D | gethostbydns.c | 137 static struct hostent host; variable in typeref:struct:hostent 213 host.h_name = NULL; 257 host.h_name = bp; 261 qname = host.h_name; 265 host.h_aliases = host_aliases; 268 host.h_addr_list = h_addr_ptrs; 325 host.h_name = bp; 385 host.h_name = bp; 401 host.h_name = bp; 410 _map_v4v6_hostent(&host, [all...] |
/vbox/include/VBox/ |
H A D | VMMDev2.h | 51 VMMDev_Seamless_Host_Window = 2 /**< windowed mode; each top-level guest window is represented in a host window. */ 84 * HGCM host service location. 104 HGCMServiceLocationHost host; member in union:HGCMSERVICELOCATION::__anon217
|
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageHostonly.cpp | 56 ComPtr<IHost> host; local 57 CHECK_ERROR_RET(a->virtualBox, COMGETTER(Host)(host.asOutParam()), 1); 62 CHECK_ERROR_RET(host, CreateHostOnlyNetworkInterface (hif.asOutParam(), progress.asOutParam()), 1); 66 CHECK_PROGRESS_ERROR_RET(progress, ("Failed to create the host-only adapter"), 1); 88 ComPtr<IHost> host; local 89 CHECK_ERROR_RET(a->virtualBox, COMGETTER(Host)(host.asOutParam()), 1); 92 CHECK_ERROR_RET(host, FindHostNetworkInterfaceByName(name.raw(), hif.asOutParam()), 1); 98 CHECK_ERROR_RET(host, RemoveHostOnlyNetworkInterface(guid.raw(), progress.asOutParam()), 1); 102 CHECK_PROGRESS_ERROR_RET(progress, ("Failed to remove the host-only adapter"), 1); 213 ComPtr<IHost> host; [all...] |
H A D | VBoxManageList.cpp | 97 * List network interfaces information (bridged/host only). 101 * @param fIsBridged Selects between listing host interfaces (for 102 * use with bridging) or host only interfaces. 108 ComPtr<IHost> host; local 109 CHECK_ERROR(pVirtualBox, COMGETTER(Host)(host.asOutParam())); 113 CHECK_ERROR(host, FindHostNetworkInterfacesOfType(HostNetworkInterfaceType_Bridged, 116 CHECK_ERROR(host, FindHostNetworkInterfacesOfType(HostNetworkInterfaceType_HostOnly, 119 CHECK_ERROR(host, COMGETTER(NetworkInterfaces)(ComSafeArrayAsOutParam(hostNetworkInterfaces))); 173 * List host information. 363 * List USB devices attached to the host 505 ComPtr<IHost> host; local 775 ComPtr<IHost> host; local 968 ComPtr<IHost> host; local 990 ComPtr<IHost> host; local [all...] |
H A D | VBoxManageUSB.cpp | 390 ComPtr<IHost> host; local 393 CHECK_ERROR_RET(a->virtualBox, COMGETTER(Host)(host.asOutParam()), 1); 411 CHECK_ERROR_BREAK(host, CreateUSBDeviceFilter(f.mName.raw(), 432 CHECK_ERROR_BREAK(host, InsertUSBDeviceFilter(cmd.mIndex, flt)); 466 CHECK_ERROR_BREAK(host, COMGETTER(USBDeviceFilters)(ComSafeArrayAsOutParam(coll))); 523 CHECK_ERROR_BREAK(host, RemoveUSBDeviceFilter(cmd.mIndex));
|
H A D | VBoxManageDHCPServer.cpp | 342 ComPtr<IHost> host; local 343 CHECK_ERROR(a->virtualBox, COMGETTER(Host)(host.asOutParam())); 346 CHECK_ERROR(host, FindHostNetworkInterfaceByName(Bstr(pIfName).mutableRaw(), hif.asOutParam()));
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR0LibCrOgl.cpp | 91 RTStrCopy(info.Loc.u.host.achName, sizeof (info.Loc.u.host.achName), "VBoxSharedCrOpenGL");
|
/vbox/src/libs/xpcom18a4/nsprpub/tools/ |
H A D | httpget.c | 239 PRStatus ParseURL(char *url, char *host, PRUint32 hostSize, argument 258 dst = host; 259 hostEnd = host + hostSize; 262 fprintf(stderr, "httpget: host name too long\n"); 321 char host[HOST_SIZE]; local 361 if (ParseURL(url, host, sizeof(host), port, sizeof(port), 366 if (PR_GetHostByName(host, buf, sizeof(buf), &hostentry) 368 fprintf(stderr, "httpget: unknown host name: %s\n", host); [all...] |
/vbox/src/VBox/NetworkServices/NetLib/ |
H A D | ComHostUtils.cpp | 124 int hostDnsServers(const ComHostPtr& host, const RTNETADDRIPV4& networkid, argument 130 if (SUCCEEDED(host->COMGETTER(NameServers)(ComSafeArrayAsOutParam(strs)))) 163 int hostDnsSearchList(const ComHostPtr& host, std::vector<std::string>& strings) argument 168 if (SUCCEEDED(host->COMGETTER(SearchStrings)(ComSafeArrayAsOutParam(strs)))) 182 int hostDnsDomain(const ComHostPtr& host, std::string& domainStr) argument 185 if (SUCCEEDED(host->COMGETTER(DomainName)(domain.asOutParam())))
|
/vbox/src/VBox/Main/src-server/generic/ |
H A D | NetIf-generic.cpp | 193 ComPtr<IHost> host; local 194 HRESULT hrc = pVirtualBox->COMGETTER(Host)(host.asOutParam()); 197 hrc = progress->init(pVirtualBox, host, 198 Bstr("Creating host only network interface").raw(), 265 /* create a new uninitialized host interface object */ 319 ComPtr<IHost> host; local 321 HRESULT hr = pVirtualBox->COMGETTER(Host)(host.asOutParam()); 326 if (FAILED(host->FindHostNetworkInterfaceById(Guid(aId).toUtf16().raw(), iface.asOutParam()))) 332 rc = progress->init(pVirtualBox, host, 333 Bstr("Removing host networ [all...] |
/vbox/src/VBox/Main/webservice/samples/java/jax-ws/ |
H A D | clienttest.java | 151 IHost host = vbox.getHost(); 152 long uProcCount = host.getProcessorCount(); 157 System.out.println("Processor #" + i + " speed: " + host.getProcessorSpeed(i) + "MHz"); 164 Arrays.asList(new IUnknown[]{host})); 181 Arrays.asList(new IUnknown[]{host}), 277 "\n list hostinfo list host info" +
|
/vbox/src/VBox/Main/testcase/ |
H A D | tstAPI.cpp | 334 ComPtr<IHost> host; 335 CHECK_ERROR_BREAK(virtualBox, COMGETTER(Host)(host.asOutParam())); 336 RTPrintf(" IHost(host)=%p\n", (IHost *)host); 337 ComPtr<IUnknown> unk = host; 338 RTPrintf(" IUnknown(host)=%p\n", (IUnknown *)unk); 361 unk = host; 362 RTPrintf(" IUnknown(host)=%p\n", (IUnknown *)unk); 436 IHost *host; 437 rc = virtualBox->GetHost(&host); 1157 ComPtr<IHost> host; local 1650 ComPtr<IHost> host = aObject; local [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | ipv6.c | 67 PR_fprintf(err, "\t<nul> Name of host to lookup (default: self)\n"); 116 PRHostEnt host; local 129 case 0: /* Name of host to lookup */ 212 rv = PR_GetHostByName(name, buffer, sizeof(buffer), &host); 226 index = PR_EnumerateHostEnt(index, &host, 0, &address);
|
H A D | writev.c | 75 * -h dns name of host serving the connection (default = self) 93 case 'h': /* the remote host */ 96 PRHostEnt host; local 98 (void)PR_GetHostByName(opt->value, buffer, sizeof(buffer), &host); 99 es = PR_EnumerateHostEnt(es, &host, BASE_PORT, &serverAddr);
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | ctrl.c | 217 _ctrl_create_hash(const char *user, const char *domain, const char *host, char *hash, size_t hsize) argument 224 /* version\0user\0domain\0host\0flags */ 244 if (host) 245 rdssl_sha1_update(&sha1, (uint8 *) host, strlen(host)); 259 ctrl_init(const char *user, const char *domain, const char *host) argument 277 _ctrl_create_hash(user, domain, host, hash, 41);
|
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/ |
H A D | UINameAndSystemEditor.cpp | 98 /* Check if host supports (AMD-V or VT-x) and long mode: */ 99 CHost host = vboxGlobal().host(); local 100 m_fSupportsHWVirtEx = host.GetProcessorFeature(KProcessorFeature_HWVirtEx); 101 m_fSupportsLongMode = host.GetProcessorFeature(KProcessorFeature_LongMode);
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | uri.c | 51 if ( uri->host ) 52 DBG ( " host \"%s\"", uri->host ); 161 /* Split authority into user[:password] and host[:port] portions */ 165 uri->host = tmp; 174 uri->host = authority; 177 /* Split host into host[:port] */ 178 if ( ( tmp = strchr ( uri->host, ':' ) ) ) { 226 /* host */ ' [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/ |
H A D | UIGlobalSettingsNetwork.cpp | 476 /* On Windows host that looks ugly, but 499 const CHostNetworkInterfaceVector &interfaces = vboxGlobal().host().GetNetworkInterfaces(); 671 m_pActionAddNetworkHost->setText(tr("&Add host-only network")); 672 m_pActionDelNetworkHost->setText(tr("&Remove host-only network")); 673 m_pActionEditNetworkHost->setText(tr("&Edit host-only network")); 783 CHost host = vboxGlobal().host(); local 787 CProgress progress = host.CreateHostOnlyNetworkInterface(iface); 788 if (!host.isOk()) 789 return msgCenter().cannotCreateHostInterface(host, thi 823 CHost host = vboxGlobal().host(); local 1087 CHost host = vboxGlobal().host(); local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/newvm/ |
H A D | UIWizardNewVMPageBasic1.cpp | 170 CHost host = vboxGlobal().host(); local 171 m_fSupportsHWVirtEx = host.GetProcessorFeature(KProcessorFeature_HWVirtEx); 172 m_fSupportsLongMode = host.GetProcessorFeature(KProcessorFeature_LongMode);
|
/vbox/src/libs/libxml2-2.6.31/include/libxml/ |
H A D | nanoftp.h | 90 xmlNanoFTPProxy (const char *host,
|
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | tcpip.c | 510 struct hostent *host; local 515 char host[NI_MAXHOST]; local 542 host = gethostbyaddr( (char *) &sin_addr, sizeof( sin_addr), AF_INET ); 543 if (host == NULL ) 550 host, sizeof( host), 555 host, sizeof( host), 560 conn->hostname = crStrdup( host ); 567 conn->hostname = crStrdup( host [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/ |
H A D | httpcore.c | 639 const char *host = http->uri->host; local 713 dynamic->request, host, 899 if ( ! uri->host ) 919 if ( ( rc = filter ( socket, uri->host, &socket ) ) != 0 ) 924 uri->host, NULL ) ) != 0 )
|