Searched defs:aRC (Results 1 - 2 of 2) sorted by relevance

/vbox/include/VBox/com/
H A DMultiResult.h74 FWResult (HRESULT aRC = E_FAIL) : mRC (aRC) {}
76 FWResult &operator= (HRESULT aRC) argument
78 if ((FAILED (aRC) && !FAILED (mRC)) ||
79 (mRC == S_OK && aRC != S_OK))
80 mRC = aRC;
174 MultiResult (HRESULT aRC = E_FAIL) : FWResult (aRC) { incCounter(); }
187 MultiResult &operator= (HRESULT aRC) argument
189 FWResult::operator= (aRC);
231 MultiResultRef(HRESULT &aRC) argument
235 operator =(HRESULT aRC) argument
[all...]
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp148 EIPRTFailure::EIPRTFailure(int aRC, const char *pcszContext, ...) argument
150 mRC(aRC)
157 RTStrAPrintf(&newMsg, "%s: %d(%s)", pszContext2, aRC, RTErrGetShort(aRC));

Completed in 36 milliseconds