Searched refs:host (Results 26 - 50 of 132) sorted by relevance

123456

/vbox/src/VBox/RDP/client-1.8.3/
H A Dlicence.c113 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);
/vbox/src/libs/libxml2-2.6.31/
H A Duri.c1263 * hostport = host [ ":" port ]
1264 * host = hostname | IPv4address | IPv6reference
1281 const char *host, *tmp; local
1314 host = cur;
1326 * host part of hostport can denote an IPV4 address, an IPV6 address
1359 uri->server = (char *)xmlStrndup((xmlChar *)host+1,
1360 (cur-host)-1);
1378 if ((host[0] != '[') && (oct < IPV4max || (*cur == '.' && cur++) ||
1406 do --tmp; while (tmp >= host && IS_ALPHANUM(*tmp));
1407 if ((++tmp == host || tm
[all...]
H A Dltmain.sh376 case $host in
522 $echo "host: $host"
1106 case $host in
1552 case $with_gcc/$host in
1583 case $host in
1601 case $host in
1629 case $host in
1701 case $host in
1705 $echo "$modename: warning: \`-no-install' is ignored for $host"
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dthruput.c179 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 Dtmocon.c278 * -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/Devices/PC/ipxe/src/include/ipxe/
H A Duri.h31 * 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/Frontends/VirtualBox/src/widgets/
H A DVBoxGuestRAMSlider.cpp74 ulong fullSize = vboxGlobal().host().GetMemorySize();
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dlibteac.c92 static host_t* hosts= NULL; /* this one ends up sorted by host name */
206 perror("Error reading host table");
276 /* Sort the host table alphabetically by host name for faster lookup */
489 perror("Can't get my own host name");
985 msg->host = vp;
1104 result->from= tcomm->mbuff[id][iBuf].host;
1113 elan3_remote_cookie(tcomm->ctx, vp, tcomm->mbuff[id][iBuf].host);
1115 elan3_local_cookie(tcomm->ctx, vp, tcomm->mbuff[id][iBuf].host);
1143 "<vp= %d, host rang
1162 teac_getConnId(Tcomm *c, const char* host, int rank) argument
1172 teac_getHostInfo(Tcomm *c, char* host, const int hostLength, int* railMask, int *nodeId, long* sdramBaseAddr, long* elanBaseAddr) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/ipv4/lwip/
H A Dip4_addr.h106 On subnets, host and network parts are found according to
127 #define IP_CLASSD_NSHIFT 28 /* net and host fields, but */
174 * from host- to network-order. */
183 /** Get the network address by combining host address with netmask */
184 #define ip_addr_get_network(target, host, netmask) ((target)->addr = ((host)->addr) & ((netmask)->addr))
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dftp.c428 if ( ! uri->host )
450 uri->host, NULL ) ) != 0 )
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcnetdb.cpp63 RCNetAddr::RCNetAddr(RCNetAddr::HostValue host, PRUint16 port): RCBase() argument
66 switch (host)
/vbox/tools/bin/
H A Dgen-slickedit-workspace.cmd38 kmk_ash %MY_SCRIPT% --windows-host %MY_ARGS%
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageMetrics.cpp71 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 DVBoxManageControlVM.cpp988 ComPtr<IHost> host; local
989 CHECK_ERROR_BREAK(a->virtualBox, COMGETTER(Host)(host.asOutParam()));
991 CHECK_ERROR_BREAK(host, COMGETTER(USBDevices)(ComSafeArrayAsOutParam(coll)));
993 CHECK_ERROR_BREAK(host, FindUSBDeviceByAddress(Bstr(a->argv[2]).raw(),
1146 /* host drive? */
1147 else if (!strncmp(a->argv[2], "host:", 5))
1149 ComPtr<IHost> host;
1150 CHECK_ERROR(a->virtualBox, COMGETTER(Host)(host.asOutParam()));
1152 rc = host->FindHostDVDDrive(Bstr(a->argv[2] + 5), dvdMedium.asOutParam());
1155 errorArgument("Invalid host DV
[all...]
H A DVBoxManageStorageController.cpp145 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/src/VBox/NetworkServices/DHCP/
H A DVBoxNetDHCP.cpp572 ComHostPtr host; local
573 if (SUCCEEDED(virtualbox->COMGETTER(Host)(host.asOutParam())))
584 rc = hostDnsServers(host, networkid(address, netmask), mapIp4Addr2Off, nameservers);
589 rc = hostDnsDomain(host, domain);
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibClipboard.cpp50 strcpy(Info.Loc.u.host.achName, "VBoxSharedClipboard");
86 * Get a host message.
133 * Reads data from the host clipboard.
142 * @param pcb The actual size of the host clipboard data. May be larger than cb.
178 * Advertises guest clipboard formats to the host.
202 * Send guest clipboard data to the host.
205 * from the host.
/vbox/src/recompiler/
H A Dcpu-common.h45 ram_addr_t size, void *host);
H A Dexec.c222 /* offset in host memory of the page + io_index in the low bits */
557 the host cpu and OS */
1338 /* force the host page as non writable (writes will have a
1848 "show generated host assembly code for each compiled TB" },
3029 fprintf(stderr, "host lacks kvm mmu notifiers, -mem-path unsupported\n");
3115 ram_addr_t size, void *host)
3139 new_block->host = host;
3152 kvm_setup_guest_memory(new_block->host, size);
3183 new_block->host
3114 qemu_ram_alloc_from_ptr(DeviceState *dev, const char *name, ram_addr_t size, void *host) argument
3284 uint8_t *host = ptr; local
[all...]
/vbox/src/VBox/Main/testcase/
H A DtstVBoxAPI.cpp149 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/net/
H A Dudp.c433 if ( ! uri->host )
440 uri->host, NULL );
/vbox/src/VBox/Frontends/VBoxShell/
H A Dvboxshell.py596 print "Use host:port format for teleport target"
598 (host, port) = args[0].split(":")
610 print "Teleporting to %s:%d..." % (host, port)
611 progress = console.teleport(host, port, passwd, maxDowntime)
669 print " name=%s host=%s %s %s" % (sf.name, colPath(ctx, sf.hostPath), cond(sf.accessible, "accessible", "not accessible"), cond(sf.writable, "writable", "read-only"))
1000 print " Audio [via audioAdapter]: chip %s; host driver %s" % (asEnumElem(ctx, "AudioControllerType", mach.audioAdapter.audioController), asEnumElem(ctx, "AudioDriverType", mach.audioAdapter.audioDriver))
1177 print "Copying host %s to guest %s" % (src, dst)
1335 print "usage: teleport name host:port <password>"
1538 host = vbox.host
[all...]
/vbox/src/VBox/VMM/VMMR0/
H A DCPUMR0A.asm150 ; Saves the host state.
220 ; Loads the host state.
491 ; Saves the host FPU/SSE/AVX state and restores the guest FPU/SSE/AVX state.
528 ; Restore the non-volatile xmm registers. ASSUMING 64-bit host.
560 ; Saves the host FPU/SSE/AVX state.
626 ; Saves the guest FPU/SSE/AVX state and restores the host FPU/SSE/AVX state.
685 ; Restores the host's FPU/SSE/AVX state from pCpumCpu->Host.
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsSystem.cpp92 systemData.m_fSupportedPAE = vboxGlobal().host().GetProcessorFeature(KProcessorFeature_PAE);
93 systemData.m_fSupportedHwVirtEx = vboxGlobal().host().GetProcessorFeature(KProcessorFeature_HWVirtEx);
309 ulong uFullSize = vboxGlobal().host().GetMemorySize();
313 "More than <b>%1%</b> of the host computer's memory (<b>%2</b>) is assigned to the virtual machine. "
314 "Not enough memory is left for the host operating system. Please select a smaller amount.")
322 "More than <b>%1%</b> of the host computer's memory (<b>%2</b>) is assigned to the virtual machine. "
323 "There might not be enough memory left for the host operating system. Please consider selecting a smaller amount.")
358 int cTotalCPUs = vboxGlobal().host().GetProcessorOnlineCoreCount();
363 "of physical CPUs on the host (<b>%1</b>). Please reduce the number of virtual CPUs.")
370 "More virtual CPUs are assigned to the virtual machine than the number of physical CPUs on the host syste
[all...]
/vbox/src/VBox/Main/src-server/win/
H A DNetIf-win.cpp1125 ComPtr<IHost> host;
1126 HRESULT rc = pVirtualBox->COMGETTER(Host)(host.asOutParam());
1129 rc = progress->init(pVirtualBox, host,
1130 Bstr(_T("Creating host only network interface")).raw(),
1137 /* create a new uninitialized host interface object */
1177 ComPtr<IHost> host;
1178 HRESULT rc = pVirtualBox->COMGETTER(Host)(host.asOutParam());
1181 rc = progress->init(pVirtualBox, host,
1182 Bstr(_T("Removing host network interface")).raw(),
1231 // ComPtr<IHost> host;
[all...]

Completed in 208 milliseconds

123456