/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/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/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/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 | 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()));
|
H A D | VBoxManageMetrics.cpp | 71 if (!strcmp(argv[0], "host")) 73 ComPtr<IHost> host; local 74 CHECK_ERROR(aVirtualBox, COMGETTER(Host)(host.asOutParam())); 76 host.queryInterfaceTo(&retObjects[0]); 127 ComPtr<IHost> host = aObject; local 128 if (!host.isNull()) 129 return Bstr("host");
|
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 | VBoxManageStorageController.cpp | 145 case 'm': // medium <none|emptydrive|additions|uuid|filename|host:<drive>|iSCSI> 553 /* host drive? */ 554 if (!RTStrNICmp(pszMedium, RT_STR_TUPLE("host:"))) 556 ComPtr<IHost> host; local 557 CHECK_ERROR(a->virtualBox, COMGETTER(Host)(host.asOutParam())); 561 rc = host->FindHostDVDDrive(Bstr(pszMedium + 5).raw(), 568 throw Utf8StrFmt("Invalid host DVD drive name \"%s\"", pszMedium + 5); 569 rc = host->FindHostDVDDrive(Bstr(szPathReal).raw(), 572 throw Utf8StrFmt("Invalid host DVD drive name \"%s\"", pszMedium + 5); 578 rc = 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/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/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcnetdb.cpp | 63 RCNetAddr::RCNetAddr(RCNetAddr::HostValue host, PRUint16 port): RCBase() argument 66 switch (host)
|
/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);
|
H A D | thruput.c | 179 PRHostEnt host; local 183 rv = PR_GetHostByName(server_name, buffer, sizeof(buffer), &host); 189 0, &host, PORT_NUMBER, &shared->server_address) < 0) 319 PR_fprintf(err, "\t\tIf <server> is not specified, this host will be\n");
|
H A D | tmocon.c | 278 * -h <n> dns name of host serving the connection (default = self) 335 PRHostEnt host; local 338 opt->value, buffer, sizeof(buffer), &host); 340 es, &host, BASE_PORT, &shared->serverAddress);
|
/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/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...] |
H A D | tstVBoxAPI.cpp | 149 ComPtr<IHost> host; local 150 RTTestSub(g_hTest, "IVirtualBox::host"); 151 CHECK_ERROR(pVBox, COMGETTER(Host)(host.asOutParam())); 155 RTTestPassed(g_hTest, "IVirtualBox::host"); 158 RTTestFailed(g_hTest, "%d: IVirtualBox::host failed", __LINE__);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | uri.h | 31 * scheme = "http", host = "www.ipxe.org", path = "/wiki" 44 * host = "insecure.org", port = "8081", path = "/hidden/path/to", 59 const char *host; member in struct:uri
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | licence.c | 113 licence_send_new_licence_request(uint8 * client_random, uint8 * rsa_data, char *user, char *host) argument 117 uint16 hostlen = strlen(host) + 1; 146 out_uint8p(s, host, hostlen);
|
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/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/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/settings/machine/ |
H A D | UIMachineSettingsUSB.cpp | 60 * This class provides the list of USB devices attached to the host. 94 CHost host = vboxGlobal().host(); local 96 bool fIsUSBEmpty = host.GetUSBDevices().size() == 0; 101 pAction->setToolTip(tr("No supported devices connected to the host PC", "USB device tooltip")); 105 CHostUSBDeviceVector devvec = host.GetUSBDevices(); 566 "device attached to the host PC.")); 664 /* The port property depends on the host computer rather than on the USB 865 /* Add the state field if it's a host USB device: */
|