Searched defs:aResultCode (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Main/include/
H A DVFSExplorerImpl.h40 static HRESULT setErrorStatic(HRESULT aResultCode, argument
43 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true);
H A DVirtualBoxImpl.h338 static HRESULT i_setErrorStatic(HRESULT aResultCode, argument
341 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true);
H A DApplianceImpl.h80 static HRESULT i_setErrorStatic(HRESULT aResultCode, argument
83 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true);
H A DGuestImpl.h93 static HRESULT i_setErrorStatic(HRESULT aResultCode, const Utf8Str &aText) argument
95 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true);
/vbox/src/VBox/Main/src-all/
H A DVirtualBoxBase.cpp159 * @c true, then the highest (31) bit in the @a aResultCode value which
165 HRESULT VirtualBoxBase::setErrorInternal(HRESULT aResultCode, argument
178 aResultCode,
179 aResultCode,
187 AssertReturn((!aWarning && FAILED(aResultCode)) ||
188 (aWarning && aResultCode != S_OK),
193 aResultCode &= ~0x80000000;
200 switch (aResultCode)
261 rc = info->init(aResultCode, aIID, pcszComponent, aText, curInfo);
305 rc = info->init(aResultCode, aII
347 setError(HRESULT aResultCode) argument
365 setError(HRESULT aResultCode, const char *pcsz, ...) argument
511 setWarning(HRESULT aResultCode, const char *pcsz, ...) argument
531 setErrorNoLog(HRESULT aResultCode, const char *pcsz, ...) argument
[all...]
H A DVirtualBoxErrorInfoImpl.cpp26 HRESULT VirtualBoxErrorInfo::init(HRESULT aResultCode, argument
32 m_resultCode = aResultCode;
42 HRESULT VirtualBoxErrorInfo::initEx(HRESULT aResultCode, argument
49 HRESULT hr = init(aResultCode, aIID, pcszComponent, strText, aNext);
84 STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultCode)(LONG *aResultCode) argument
86 CheckComArgOutPointerValid(aResultCode);
88 *aResultCode = m_resultCode;
H A DProgressImpl.cpp342 * If the result code indicates a failure (|FAILED(@a aResultCode)|) then this
347 * If the result code indicates a success (|SUCCEEDED(@a aResultCode)|) then
353 * @param aResultCode Operation result code.
355 HRESULT Progress::i_notifyComplete(HRESULT aResultCode) argument
359 if (FAILED(aResultCode))
385 return i_notifyCompleteEI(aResultCode, errorInfo);
391 HRESULT Progress::i_notifyComplete(HRESULT aResultCode, argument
399 HRESULT hrc = i_notifyCompleteV(aResultCode, aIID, pcszComponent, aText, va);
407 * @param aResultCode Operation result (error) code, must not be S_OK.
414 HRESULT Progress::i_notifyCompleteV(HRESULT aResultCode, argument
440 i_notifyCompleteEI(HRESULT aResultCode, const ComPtr<IVirtualBoxErrorInfo> &aErrorInfo) argument
446 aResultCode)); local
658 getResultCode(LONG *aResultCode) argument
[all...]
/vbox/src/VBox/Main/src-server/
H A DProgressProxyImpl.cpp152 HRESULT ProgressProxy::notifyComplete(HRESULT aResultCode) argument
158 hrc = Progress::i_notifyComplete(aResultCode);
164 HRESULT ProgressProxy::notifyComplete(HRESULT aResultCode, argument
178 hrc = Progress::i_notifyCompleteV(aResultCode, aIID, pcszComponent, aText, va);
524 STDMETHODIMP ProgressProxy::COMGETTER(ResultCode)(LONG *aResultCode) argument
527 return Progress::COMGETTER(ResultCode)(aResultCode);
H A DUSBProxyService.cpp1267 HRESULT USBProxyService::setError(HRESULT aResultCode, const char *aText, ...) argument
1271 HRESULT rc = VirtualBoxBase::setErrorInternal(aResultCode,
H A DMachineImpl.cpp14596 HRESULT Machine::i_setErrorStatic(HRESULT aResultCode, const char *pcszMsg, ...) argument
14600 HRESULT rc = setErrorInternal(aResultCode,
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl.cpp3233 HRESULT Console::i_setErrorStatic(HRESULT aResultCode, const char *pcsz, ...) argument
3237 HRESULT rc = setErrorInternal(aResultCode,

Completed in 118 milliseconds