Searched defs:lrc (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Main/glue/
H A DErrorInfo.cpp239 LONG lrc, lrd; local
241 rc = info->COMGETTER(ResultCode)(&lrc); mResultCode = lrc;
/vbox/src/VBox/Main/src-server/win/
H A DHostDnsServiceWin.cpp71 LONG lrc; local
73 lrc = RegOpenKeyExW(HKEY_LOCAL_MACHINE,
78 if (lrc != ERROR_SUCCESS)
80 LogRel(("HostDnsServiceWin: failed to open key Tcpip\\Parameters (error %d)\n", lrc));
135 LONG lrc = RegNotifyChangeKeyValue(hKey, local
140 AssertMsgReturn(lrc == ERROR_SUCCESS,
239 LONG lrc; local
252 lrc = RegEnumValueA(m->hKeyTcpipParameters, regIndex,
256 if (lrc == ERROR_NO_MORE_ITEMS)
259 if (lrc
[all...]
/vbox/src/VBox/Runtime/r3/linux/
H A Dsemevent-linux.cpp300 long lrc = sys_futex(&pThis->fSignalled, FUTEX_WAIT, 0, pTimeout, NULL, 0); local
308 if (RT_LIKELY(lrc == 0 || lrc == -EWOULDBLOCK))
314 else if (lrc == -ETIMEDOUT)
319 else if (lrc == -EINTR)
330 AssertMsgFailed(("rc=%ld errno=%d\n", lrc, errno));
331 rc = RTErrConvertFromErrno(lrc);
/vbox/src/VBox/Devices/Network/
H A DDevINIP.cpp229 err_t lrc; local
233 lrc = lwip_etharp_output(netif, ipaddr, p);
235 lrc = lwip_etharp_output(netif, p, ipaddr);
237 LogFlow(("%s: return %d\n", __FUNCTION__, lrc));
238 return lrc;
307 err_t lrc = ERR_OK; local
309 lrc = ERR_IF;
310 LogFlow(("%s: return %d (vbox: %Rrc)\n", __FUNCTION__, rc, lrc));
311 return lrc;
455 err_t lrc; local
[all...]
/vbox/src/VBox/Frontends/VBoxHeadless/
H A DVBoxHeadless.cpp473 HRESULT lrc; local
474 rc = progress->COMGETTER(ResultCode)(&lrc);
476 lrc = ~0;
477 if (!lrc)
483 RTPrintf("-- Error saving state, lrc=%d (%#x)\n", lrc, lrc);
/vbox/src/VBox/Frontends/VBoxSDL/
H A DVBoxSDL.cpp4314 LONG lrc; local
4315 rc = gpProgress->COMGETTER(ResultCode)(&lrc);
4317 lrc = ~0;
4318 if (!lrc)
4325 RTPrintf("Error saving state, lrc=%d (%#x)\n", lrc, lrc);

Completed in 50 milliseconds