Searched defs:rcVBox (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dvfsmod.c574 int rcVBox; local
597 rcVBox = vboxInit();
598 if (RT_FAILURE(rcVBox))
600 LogRelFunc(("vboxInit failed, rc=%d\n", rcVBox));
605 rcVBox = vboxConnect(&client_handle);
606 if (RT_FAILURE(rcVBox))
608 LogRelFunc(("vboxConnect failed, rc=%d\n", rcVBox));
613 rcVBox = vboxCallSetUtf8(&client_handle);
614 if (RT_FAILURE(rcVBox))
616 LogRelFunc(("vboxCallSetUtf8 failed, rc=%d\n", rcVBox));
[all...]
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp2506 int rcVBox = VMR3ReqCallWaitU(ptrVM.rawUVM(), VMCPUID_ANY, (PFNRT)Display::i_drawToScreenEMT, 7, local
2514 if (rcVBox == VERR_NOT_SUPPORTED || rcVBox == VERR_NOT_IMPLEMENTED)
2519 else if (RT_FAILURE(rcVBox))
2521 tr("Could not draw to the screen (%Rrc)"), rcVBox);
2647 int rcVBox = VMR3ReqCallNoWaitU(ptrVM.rawUVM(), VMCPUID_ANY, (PFNRT)Display::i_InvalidateAndUpdateEMT, local
2651 if (RT_FAILURE(rcVBox))
2653 tr("Could not invalidate and update the screen (%Rrc)"), rcVBox);
2669 int rcVBox = VMR3ReqCallNoWaitU(ptrVM.rawUVM(), VMCPUID_ANY, (PFNRT)Display::i_InvalidateAndUpdateEMT, local
2671 if (RT_FAILURE(rcVBox))
[all...]
H A DConsoleImpl.cpp8821 int rcVBox = RTFileOpen(&maTapFD[slot], "/dev/net/tun", local
8823 if (RT_SUCCESS(rcVBox))
8847 rcVBox = ioctl(RTFileToNative(maTapFD[slot]), TUNSETIFF, &IfReq);
8848 if (rcVBox != 0)
8870 rcVBox = VINF_SUCCESS;
8877 rcVBox = VERR_HOSTIF_BLOCKING;
8886 LogRel(("Configuration error: Failed to open /dev/net/tun rc=%Rrc\n", rcVBox));
8887 switch (rcVBox)
8891 rc = rcVBox;
8896 rcVBox);
8923 int rcVBox = RTFileOpen(&maTapFD[slot], szTapdev, local
9001 int rcVBox = RTFileClose(maTapFD[slot]); local
9009 int rcVBox = RTFileClose(maTapFD[slot]); local
[all...]
/vbox/src/VBox/Additions/WINNT/Mouse/NT4/
H A DVBoxPS2NT.cpp2139 int rcVBox = VbglInit(); local
2140 if (RT_FAILURE(rcVBox))
2142 Log(("VBoxMouseNT::DriverEntry: could not initialize guest library, rc = %Rrc\n", rcVBox));
2149 rcVBox = VbglGRAlloc((VMMDevRequestHeader**)&pReq, sizeof(VMMDevReqMouseStatus), VMMDevReq_SetMouseStatus);
2150 if (RT_SUCCESS(rcVBox))
2156 rcVBox = VbglGRPerform(&pReq->header);
2157 if (RT_FAILURE(rcVBox))
2158 Log(("VBoxMouseNT::DriverEntry: ERROR communicating new mouse capabilities to VMMDev. rc = %Rrc\n", rcVBox));
2169 Log(("VBoxMouseNT::DriverEntry: could not allocate request buffer, rc = %Rrc\n", rcVBox));

Completed in 73 milliseconds