Searched refs:lastError (Results 1 - 16 of 16) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dplerror.c133 PRIntn lastError = PR_NSPR_ERROR_BASE + thoseIKnowAbout; local
136 if ((error < PR_NSPR_ERROR_BASE) || (error >= lastError))
/vbox/src/libs/xpcom18a4/xpcom/tools/windows/
H A Drebasedlls.cpp54 DWORD lastError = ::GetLastError(); local
58 printf(" (failed: error=%d/0x%x)", lastError, lastError);
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A DtstLastError.py25 when the exception is raised, check the libxml2.lastError for
32 e = libxml2.lastError()
34 self.fail("lastError not set")
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DVBoxGlobalSettings.h138 QString lastError() const { return last_err; } function in class:VBoxGlobalSettings
/vbox/src/libs/libxml2-2.6.31/
H A DparserInternals.c1747 if (ctxt->lastError.message != NULL)
1748 xmlFree(ctxt->lastError.message);
1749 if (ctxt->lastError.file != NULL)
1750 xmlFree(ctxt->lastError.file);
1751 if (ctxt->lastError.str1 != NULL)
1752 xmlFree(ctxt->lastError.str1);
1753 if (ctxt->lastError.str2 != NULL)
1754 xmlFree(ctxt->lastError.str2);
1755 if (ctxt->lastError.str3 != NULL)
1756 xmlFree(ctxt->lastError
[all...]
H A Derror.c511 to = &ctxt->lastError;
911 if (ctxt->lastError.code == XML_ERR_OK)
913 return (&ctxt->lastError);
930 if (ctxt->lastError.code == XML_ERR_OK)
932 xmlResetError(&ctxt->lastError);
H A Dxpointer.c102 ctxt->context->lastError.domain = XML_FROM_XPOINTER;
103 ctxt->context->lastError.code = error;
104 ctxt->context->lastError.level = XML_ERR_ERROR;
105 ctxt->context->lastError.str1 = (char *) xmlStrdup(ctxt->base);
106 ctxt->context->lastError.int1 = ctxt->cur - ctxt->base;
107 ctxt->context->lastError.node = ctxt->context->debugNode;
110 &ctxt->context->lastError);
H A Dxpath.c277 ctxt->lastError.message = (char *) xmlStrdup(buf);
279 ctxt->lastError.message = (char *)
282 ctxt->lastError.domain = XML_FROM_XPATH;
283 ctxt->lastError.code = XML_ERR_NO_MEMORY;
285 ctxt->error(ctxt->userData, &ctxt->lastError);
354 xmlResetError(&ctxt->context->lastError);
356 ctxt->context->lastError.domain = XML_FROM_XPATH;
357 ctxt->context->lastError.code = error + XML_XPATH_EXPRESSION_OK -
359 ctxt->context->lastError.level = XML_ERR_ERROR;
360 ctxt->context->lastError
[all...]
H A Dparser.c120 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
2370 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
2423 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
11784 if (ctxt->lastError.code != XML_ERR_OK)
11785 xmlCopyError(&ctxt->lastError, &oldctxt->lastError);
12025 if (ctxt->lastError.code != XML_ERR_OK)
12026 xmlCopyError(&ctxt->lastError, &oldctxt->lastError);
13357 if (ctxt->lastError
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dshaderapi.c673 GLenum lastError; local
731 lastError = glGetError(); \
732 AssertMsgReturn(lastError == GL_NO_ERROR, ("%s (%d): last error 0x%x\n", __FUNCTION__, __LINE__, lastError), VERR_INTERNAL_ERROR);
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxpath.h341 xmlError lastError; /* the last error */ member in struct:_xmlXPathContext
H A Dparser.h298 xmlError lastError; member in struct:_xmlParserCtxt
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-ogl.cpp246 * Gets the last OpenGL error, stores it in a_pContext->lastError and returns
254 #define VMSVGA3D_GET_GL_ERROR(a_pContext) ((a_pContext)->lastError = glGetError())
259 * Will call glGetError() and store the result in a_pContext->lastError.
267 #define VMSVGA3D_GL_IS_SUCCESS(a_pContext) RT_LIKELY((((a_pContext)->lastError = glGetError()) == GL_NO_ERROR))
270 * Complains about one or more OpenGL errors (first in a_pContext->lastError).
275 * All GL errors will be cleared after invocation. Assumes lastError
294 AssertMsgFailed(("first error: %#x (idActiveContext=%#x)\n", (a_pContext)->lastError, (a_pContext)->id)); \
299 LogRelMax(32, ("VMSVGA3d: OpenGL error %#x (idActiveContext=%#x) on line %u ", (a_pContext)->lastError, (a_pContext)->id)); \
406 (pContext)->lastError = glGetError(); \
407 AssertMsgReturn((pContext)->lastError
666 GLenum lastError; member in struct:__anon13181
[all...]
/vbox/src/libs/libxml2-2.6.31/xstc/
H A Dxstc.py287 err = libxml2.lastError()
/vbox/src/VBox/Frontends/VirtualBox/src/extradata/
H A DUIExtraDataManager.cpp132 strVetoReason = gs.lastError();
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.cpp3908 msgCenter().cannotLoadGlobalConfig(m_vbox, gset.lastError());

Completed in 696 milliseconds