Lines Matching defs:aText

168                                          Utf8Str aText,
176 LogRel(("%s [COM]: aRC=%Rhrc (%#08x) aIID={%RTuuid} aComponent={%s} aText={%s}, preserve=%RTbool\n",
182 aText.c_str(),
197 if (aText.isEmpty())
202 case E_INVALIDARG: aText = "A parameter has an invalid value"; break;
203 case E_POINTER: aText = "A parameter is an invalid pointer"; break;
204 case E_UNEXPECTED: aText = "The result of the operation is unexpected"; break;
205 case E_ACCESSDENIED: aText = "The access to an object is not allowed"; break;
206 case E_OUTOFMEMORY: aText = "The allocation of new memory failed"; break;
207 case E_NOTIMPL: aText = "The requested operation is not implemented"; break;
208 case E_NOINTERFACE: aText = "The requested interface is not implemented"; break;
209 case E_FAIL: aText = "A general error occurred"; break;
210 case E_ABORT: aText = "The operation was canceled"; break;
211 case VBOX_E_OBJECT_NOT_FOUND: aText = "Object corresponding to the supplied arguments does not exist"; break;
212 case VBOX_E_INVALID_VM_STATE: aText = "Current virtual machine state prevents the operation"; break;
213 case VBOX_E_VM_ERROR: aText = "Virtual machine error occurred attempting the operation"; break;
214 case VBOX_E_FILE_ERROR: aText = "File not accessible or erroneous file contents"; break;
215 case VBOX_E_IPRT_ERROR: aText = "Runtime subsystem error"; break;
216 case VBOX_E_PDM_ERROR: aText = "Pluggable Device Manager error"; break;
217 case VBOX_E_INVALID_OBJECT_STATE: aText = "Current object state prohibits operation"; break;
218 case VBOX_E_HOST_ERROR: aText = "Host operating system related error"; break;
219 case VBOX_E_NOT_SUPPORTED: aText = "Requested operation is not supported"; break;
220 case VBOX_E_XML_ERROR: aText = "Invalid XML found"; break;
221 case VBOX_E_INVALID_SESSION_STATE: aText = "Current session state prohibits operation"; break;
222 case VBOX_E_OBJECT_IN_USE: aText = "Object being in use prohibits operation"; break;
223 default: aText = "Unknown error"; break;
261 rc = info->init(aResultCode, aIID, pcszComponent, aText, curInfo);
305 rc = info->init(aResultCode, aIID, pcszComponent, Bstr(aText), curInfo);