Searched defs:host (Results 26 - 50 of 59) sorted by relevance

123

/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...]
H A Dtcpip.c510 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/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.h109 /** Returns the copy of VirtualBox host-object wrapper. */
110 CHost host() const { return m_host; } function in class:VBoxGlobal
349 /** X11: Performs mapping of the passed @a pWidget to host-screen with passed @a uScreenId. */
451 /** Holds the copy of VirtualBox host-object wrapper. */
H A DUIMessageCenter.cpp942 tr("<p>Deleting this host-only network will remove "
943 "the host-only interface this network is based on. Do you want to "
944 "remove the (host-only network) interface <nobr><b>%1</b>?</nobr></p>"
985 void UIMessageCenter::cannotCreateHostInterface(const CHost &host, QWidget *pParent /* = 0*/) argument
988 tr("Failed to create the host network interface."),
989 formatErrorInfo(host));
995 tr("Failed to create the host network interface."),
999 void UIMessageCenter::cannotRemoveHostInterface(const CHost &host, const QString &strInterfaceName, QWidget *pParent /* = 0*/) argument
1002 tr("Failed to remove the host network interface <b>%1</b>.")
1004 formatErrorInfo(host));
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
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 DVBoxManageList.cpp97 * 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 DVBoxManageModifyVM.cpp1122 /* host drive? */
1123 else if (!RTStrNICmp(ValueUnion.psz, RT_STR_TUPLE("host:")))
1125 ComPtr<IHost> host; local
1126 CHECK_ERROR(a->virtualBox, COMGETTER(Host)(host.asOutParam()));
1127 rc = host->FindHostDVDDrive(Bstr(ValueUnion.psz + 5).raw(),
1135 errorArgument("Invalid host DVD drive name \"%s\"", ValueUnion.psz + 5);
1139 rc = host->FindHostDVDDrive(Bstr(szPathReal).raw(),
1143 errorArgument("Invalid host DVD drive name \"%s\"", ValueUnion.psz + 5);
1200 /* host drive? */
1201 else if (!RTStrNICmp(ValueUnion.psz, RT_STR_TUPLE("host
1203 ComPtr<IHost> host; local
[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/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 Dnanoftp.c123 char *hostname; /* the host name */
254 * @host: the proxy host name
266 xmlNanoFTPProxy(const char *host, int port, const char *user, argument
280 if (host)
281 proxy = xmlMemStrdup(host);
296 * the protocol host port and path it indicates.
365 * Returns 0 if Ok, -1 in case of error (other host).
420 * the protocol host port it indicates.
1111 /* USER user@host comman
[all...]
H A Dnanohttp.c134 char *hostname; /* the host name */
273 * the protocol host port and path it indicates.
328 * the protocol host port it indicates.
798 * the host to answer.
936 __xmlIOErr(XML_FROM_HTTP, 0, "Error connecting to remote host");
953 * @host: the host name
956 * Attempt a connection to the given host:port endpoint. It tries
963 xmlNanoHTTPConnectHost(const char *host, int port) argument
1003 status = getaddrinfo (host, NUL
[all...]
/vbox/src/VBox/Main/src-server/
H A DPerformance.cpp742 ComPtr<IHost> host = getObject(); local
743 HRESULT hrc = host->FindHostNetworkInterfaceByName(com::Bstr(mInterfaceName).raw(), networkInterface.asOutParam());
760 /* We do not collect host network metrics for unplugged interfaces! */
H A DApplianceImplImport.cpp1268 "Also check that your host clock is properly synced"),
1908 "Make sure that your credentials are right. Also check that your host clock is "
1946 "Also check that your host clock is properly synced"),
2819 ComPtr<IHost> host; local
2820 rc = mVirtualBox->COMGETTER(Host)(host.asOutParam());
2823 rc = host->COMGETTER(NetworkInterfaces)(ComSafeArrayAsOutParam(nwInterfaces));
2825 // We search for the first host network interface which
2846 /* Next test for host only interfaces */
2852 ComPtr<IHost> host; local
2853 rc = mVirtualBox->COMGETTER(Host)(host
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dhttpcore.c639 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 )
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dcltsrv.c1092 PRHostEnt host; local
1103 rv = PR_GetHostByName(serverName, buffer, BUFFER_SIZE, &host);
1128 0, &host, DEFAULT_PORT, &client[index].serverAddress);
H A Dprovider.c1305 PRHostEnt host; local
1316 rv = PR_GetHostByName(serverName, buffer, BUFFER_SIZE, &host);
1337 0, &host, DEFAULT_PORT, &client[index].serverAddress);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUISession.cpp678 "Supports multi-touch: %s, Needs host cursor: %s\n",
1076 /* Get host: */
1077 const CHost host = vboxGlobal().host(); local
1143 host.GetVideoInputDevices();
1144 const bool fWebCamsEnabled = host.isOk() && !machine().GetUSBControllers().isEmpty();
1785 * adapters are present on the host. This check makes sense
1793 /* Create host network interface names list */
1794 foreach (const CHostNetworkInterface &iface, vboxGlobal().host().GetNetworkInterfaces())
1854 bool fVTxAMDVSupported = vboxGlobal().host()
[all...]
H A DUIMachineLogic.cpp640 /* Here we have to update host LED lock states using values provided by UISession:
646 /* Check if we accidentally trying to manipulate LEDs when host LEDs state was deallocated. */
662 LogRelFlow(("UIMachineLogic::sltKeyboardLedsChanged: Updating host LED lock states does not supported on this platform.\n"));
1286 /* On Windows host we should do that only in case if sync
1790 /* Get current host: */
1791 CHost host = vboxGlobal().host(); local
1792 /* Search the host for the corresponding USB device: */
1793 CHostUSBDevice hostDevice = host.FindUSBDeviceById(target.id);
1794 /* Get USB device from host US
2195 const CHost host = vboxGlobal().host(); local
2241 const CHost host = vboxGlobal().host(); local
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_printf.c565 struct hostent *host, res; local
576 if ((host = gethostbyaddr_r(inetaddr, NS_INADDRSZ,
578 return (dt_printf(dtp, fp, format, host->h_name));
580 if ((host = getipnodebyaddr(inetaddr, NS_IN6ADDRSZ,
582 return (dt_printf(dtp, fp, format, host->h_name));
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dglx.c508 * Never return just ":0.0". In that case, prefix with our host name.
514 char host[1000]; local
518 crGetHostname(host, 1000);
523 host[0] = 0;
525 if (crStrlen(host) + crStrlen(dpyName) >= maxResult - 1)
528 crWarning("Very long host / display name string in stubDisplayString!");
533 /* return host concatenated with dpyName */
534 crStrcpy(nameResult, host);
568 #ifndef VBOX_NO_NATIVEGL /* We only care about the host capabilities, not the guest. */
2369 * Note that we're making empty texture by passing NULL as pixels pointer, so there's no overhead transferring data to host
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmacsockotpt.c2137 InetHost host; local
2141 err = OTInetStringToHost((char*) cp, &host);
2145 return host;
2227 * On a Macintosh, we don't have the concept of a local host name.
/vbox/src/recompiler/
H A Dcpu-all.h44 * WORDS_ALIGNED : if defined, the host cpu can only make word aligned
47 * HOST_WORDS_BIGENDIAN : if defined, the host cpu is big endian and
219 * raw : host memory access
772 /* On some host systems the guest address space is reserved on the host.
1039 uint8_t *host; member in struct:RAMBlock
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-win.cpp2321 int vmsvga3dSurfaceDMA(PVGASTATE pThis, SVGA3dGuestImage guest, SVGA3dSurfaceImageId host, SVGA3dTransferType transfer, argument
2327 uint32_t sid = host.sid;
2335 AssertReturn(pSurface->faces[0].numMipLevels > host.mipmap, VERR_INVALID_PARAMETER);
2336 pMipLevel = &pSurface->pMipmapLevels[host.mipmap];
2339 Log(("vmsvga3dSurfaceDMA TEXTURE guestptr gmr=%x offset=%x pitch=%x host sid=%x face=%d mipmap=%d transfer=%s cCopyBoxes=%d\n", guest.ptr.gmrId, guest.ptr.offset, guest.pitch, host.sid, host.face, host.mipmap, (transfer == SVGA3D_WRITE_HOST_VRAM) ? "READ" : "WRITE", cCopyBoxes));
2341 Log(("vmsvga3dSurfaceDMA guestptr gmr=%x offset=%x pitch=%x host sid=%x face=%d mipmap=%d transfer=%s cCopyBoxes=%d\n", guest.ptr.gmrId, guest.ptr.offset, guest.pitch, host
[all...]
H A DDevVGA-SVGA3d-ogl.cpp22 /* Enable to disassemble defined shaders. (Windows host only) */
3128 exposing random host memory to the guest and helps a with the fedora 21 surface
3393 int vmsvga3dSurfaceDMA(PVGASTATE pThis, SVGA3dGuestImage guest, SVGA3dSurfaceImageId host, SVGA3dTransferType transfer, argument
3399 uint32_t sid = host.sid;
3407 AssertReturn(pSurface->faces[0].numMipLevels > host.mipmap, VERR_INVALID_PARAMETER);
3408 pMipLevel = &pSurface->pMipmapLevels[host.mipmap];
3411 Log(("vmsvga3dSurfaceDMA TEXTURE guestptr gmr=%x offset=%x pitch=%x host sid=%x face=%d mipmap=%d transfer=%s cCopyBoxes=%d\n", guest.ptr.gmrId, guest.ptr.offset, guest.pitch, host.sid, host.face, host
[all...]
/vbox/include/VBox/
H A Dsettings.h114 USBDeviceFilterAction_T action; // only used with host USB filters
115 com::Utf8Str strRemote; // irrelevant for host USB objects
116 uint32_t ulMaskedInterfaces; // irrelevant for host USB objects
427 Host host; member in class:settings::MainConfigFile
1034 // for DVDs and floppies, the attachment can also be a host device:

Completed in 227 milliseconds

123