Searched defs:aComponent (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Main/src-all/
H A DVirtualBoxErrorInfoImpl.cpp108 STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Component)(BSTR *aComponent) argument
110 CheckComArgOutPointerValid(aComponent);
112 m_strComponent.cloneTo(aComponent);
/vbox/src/libs/xpcom18a4/python/src/
H A DPyGModule.cpp239 /* boolean autoRegisterComponent (in long aWhen, in nsIFile aComponent); */
240 NS_IMETHODIMP PyG_nsIComponentLoader::AutoRegisterComponent(PRInt32 aWhen, nsIFile *aComponent, PRBool *_retval) argument
245 PyObject *c = PyObject_FromNSInterface(aComponent, NS_GET_IID(nsIFile));
257 /* boolean autoUnregisterComponent (in long aWhen, in nsIFile aComponent); */
258 NS_IMETHODIMP PyG_nsIComponentLoader::AutoUnregisterComponent(PRInt32 aWhen, nsIFile *aComponent, PRBool *_retval) argument
263 PyObject *c = PyObject_FromNSInterface(aComponent, NS_GET_IID(nsIFile));
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DCOMDefs.h541 explicit COMResult(const COMBase &aComponent) argument
542 : mRC(aComponent.lastRC()) {}
547 COMResult(const COMBaseWithEI &aComponent) argument
548 : mRC(aComponent.lastRC()),
549 mErrInfo(aComponent.errorInfo())
555 COMResult &operator=(const COMBase &aComponent) argument
557 mRC = aComponent.lastRC();
564 COMResult &operator=(const COMBaseWithEI &aComponent) argument
566 mRC = aComponent.lastRC();
567 mErrInfo = aComponent
[all...]

Completed in 53 milliseconds