Searched defs:pHost (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgethostname.c80 char *pHost; local
82 pHost = getenv ("HOSTNAME");
84 if ( pHost == NULL ) {
87 strncpy (name, pHost, namelen);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByDns/
H A DGetHostByDns.c48 struct hostent * pHost; local
65 pHost = _gethostbydnsname ( Argv[1], AF_INET );
66 if ( NULL == pHost ) {
70 pIpAddress = (UINT8 *)pHost->h_addr;
72 pHost->h_name,
73 pHost->h_addrtype,
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByAddr/
H A DGetHostByAddr.c47 struct hostent * pHost; local
76 pHost = gethostbyaddr ( &IpAddress[0], INADDRSZ, AF_INET );
77 if ( NULL == pHost ) {
81 pIpAddress = (UINT8 *)pHost->h_addr_list[ 0 ];
87 pHost->h_name );
92 for ( Index = 1; NULL != pHost->h_addr_list[Index]; Index++ ) {
93 pIpAddress = (UINT8 *)pHost->h_addr_list[Index];
104 ppName = pHost->h_aliases;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByName/
H A DGetHostByName.c46 struct hostent * pHost; local
65 pHost = gethostbyname ( Argv[1]);
66 if ( NULL == pHost ) {
70 pIpAddress = (UINT8 *)pHost->h_addr;
76 pHost->h_addrtype,
77 pHost->h_name );
82 for ( Index = 1; NULL != pHost->h_addr_list[Index]; Index++ ) {
83 pIpAddress = (UINT8 *)pHost->h_addr_list[Index];
94 ppName = pHost->h_aliases;
/vbox/src/VBox/Main/testcase/
H A DtstVBoxAPIPerf.cpp107 IHost *pHost = NULL; local
108 HRESULT hrc = pVBox->COMGETTER(Host)(&pHost);
114 pHost->Release();
138 pHost = NULL;
139 hrc = pVBox->COMGETTER(Host)(&pHost);
151 pHost->Release();
158 pHost->Release();
168 IHost *pHost = NULL; local
169 HRESULT hrc = pVBox->COMGETTER(Host)(&pHost);
182 hrc = pHost
[all...]
/vbox/src/VBox/Additions/x11/VBoxClient/
H A Dseamless.cpp196 SeamlessMain *pHost = (SeamlessMain *)pvUser; local
200 rc = pHost->mX11Monitor.start();
203 while (!pHost->mX11MonitorThreadStopping)
204 pHost->mX11Monitor.nextConfigurationEvent();
205 pHost->mX11Monitor.stop();
/vbox/src/VBox/Main/src-server/
H A DUSBDeviceFiltersImpl.cpp53 pHost(pMachine->i_getVirtualBox()->i_host())
60 Host * const pHost; member in struct:USBDeviceFilters::Data
382 USBProxyService *pProxySvc = m->pHost->i_usbProxyService();
448 USBProxyService *pProxySvc = m->pHost->i_usbProxyService();
588 USBProxyService *pProxySvc = m->pHost->i_usbProxyService();
830 USBProxyService *pProxySvc = m->pHost->i_usbProxyService();
1028 USBProxyService *pProxySvc = m->pHost->i_usbProxyService();
H A DVirtualBoxImpl.cpp234 const ComObjPtr<Host> pHost; member in struct:VirtualBox::Data
422 unconst(m->pHost).createObject();
423 rc = m->pHost->init(this);
426 rc = m->pHost->i_loadSettings(m->pMainConfigFile->host);
748 if (m->pHost)
752 AutoMultiWriteLock2 multilock(this, m->pHost COMMA_LOCKVAL_SRC_POS);
777 if (m->pHost)
779 m->pHost->uninit();
780 unconst(m->pHost).setNull();
895 m->pHost
[all...]
/vbox/src/VBox/Frontends/Common/VBoxKeyboard/
H A Dkeyboard.c417 static int compKBMaps(const keyboard_type *pHost, const keyboard_type *pTarget) argument
419 if ( !pHost->lctrl && !pHost->capslock && !pHost->lshift && !pHost->tab
420 && !pHost->esc && !pHost->enter && !pHost->up && !pHost->down
421 && !pHost
451 findHostKBInList(const keyboard_type *pHost, const keyboard_type *pList, int cList) argument
[all...]
/vbox/src/VBox/Frontends/VBoxSDL/
H A DVBoxSDL.cpp1679 ComPtr<IHost> pHost; local
1680 CHECK_ERROR_BREAK(pVirtualBox, COMGETTER(Host)(pHost.asOutParam()));
1681 rc = pHost->FindHostFloppyDrive(bstrFdaFile.raw(),
1764 ComPtr<IHost> pHost; local
1765 CHECK_ERROR_BREAK(pVirtualBox, COMGETTER(Host)(pHost.asOutParam()));
1766 rc = pHost->FindHostDVDDrive(bstrCdromFile.raw(), pMedium.asOutParam());

Completed in 95 milliseconds