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

/external/libxml2/
H A Dtestchar.c15 int lastError; variable
18 if ((unused == NULL) && (err != NULL) && (lastError == 0)) {
19 lastError = err->code;
32 lastError = 0;
40 if ((lastError == 0) || (res != NULL))
47 if ((lastError == 0) || (res != NULL))
53 if ((lastError != XML_ERR_INVALID_CHAR) && (res != NULL))
73 lastError = 0;
83 if ((lastError == 0) || (res != NULL))
94 if ((lastError
[all...]
H A DparserInternals.c1809 if (ctxt->lastError.message != NULL)
1810 xmlFree(ctxt->lastError.message);
1811 if (ctxt->lastError.file != NULL)
1812 xmlFree(ctxt->lastError.file);
1813 if (ctxt->lastError.str1 != NULL)
1814 xmlFree(ctxt->lastError.str1);
1815 if (ctxt->lastError.str2 != NULL)
1816 xmlFree(ctxt->lastError.str2);
1817 if (ctxt->lastError.str3 != NULL)
1818 xmlFree(ctxt->lastError
[all...]
H A Derror.c518 to = &ctxt->lastError;
920 if (ctxt->lastError.code == XML_ERR_OK)
922 return (&ctxt->lastError);
940 if (ctxt->lastError.code == XML_ERR_OK)
942 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.c644 ctxt->lastError.message = (char *) xmlStrdup(buf);
646 ctxt->lastError.message = (char *)
649 ctxt->lastError.domain = XML_FROM_XPATH;
650 ctxt->lastError.code = XML_ERR_NO_MEMORY;
652 ctxt->error(ctxt->userData, &ctxt->lastError);
721 xmlResetError(&ctxt->context->lastError);
723 ctxt->context->lastError.domain = XML_FROM_XPATH;
724 ctxt->context->lastError.code = error + XML_XPATH_EXPRESSION_OK -
726 ctxt->context->lastError.level = XML_ERR_ERROR;
727 ctxt->context->lastError
[all...]
H A Dtestrecurse.c692 if ((doc != NULL) || (ctxt->lastError.code != XML_ERR_ENTITY_LOOP)) {
H A Dparser.c131 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
217 if (((ctxt->lastError.code != XML_ERR_UNDECLARED_ENTITY) &&
218 (ctxt->lastError.code != XML_WAR_UNDECLARED_ENTITY)) ||
2786 if ((ctxt->lastError.code == XML_ERR_ENTITY_LOOP) ||
2787 (ctxt->lastError.code == XML_ERR_INTERNAL_ERROR))
2839 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
13351 if (ctxt->lastError.code != XML_ERR_OK)
13352 xmlCopyError(&ctxt->lastError, &oldctxt->lastError);
13605 if (ctxt->lastError
[all...]
/external/webrtc/src/modules/audio_processing/aecm/
H A Decho_control_mobile.c77 int lastError; member in struct:__anon17077
120 aecm->lastError = 0;
175 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
183 aecm->lastError = AECM_UNSPECIFIED_ERROR;
190 aecm->lastError = AECM_UNSPECIFIED_ERROR;
219 aecm->lastError = AECM_UNSPECIFIED_ERROR;
239 aecm->lastError = AECM_NULL_POINTER_ERROR;
245 aecm->lastError = AECM_UNINITIALIZED_ERROR;
251 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
299 aecm->lastError
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c93 int lastError; member in struct:__anon17069
138 aecpc->lastError = 0;
209 aecpc->lastError = AEC_BAD_PARAMETER_ERROR;
215 aecpc->lastError = AEC_BAD_PARAMETER_ERROR;
222 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
227 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
232 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
276 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
282 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
310 aecpc->lastError
[all...]
/external/deqp/framework/platform/null/
H A DtcuNullRenderContext.cpp96 GLenum lastError; member in class:tcu::null::Context
122 , lastError (GL_NO_ERROR)
205 const GLenum lastErr = ctx->lastError;
207 ctx->lastError = GL_NO_ERROR;
328 ctx->lastError = GL_INVALID_ENUM;
343 ctx->lastError = GL_INVALID_VALUE;
349 ctx->lastError = GL_INVALID_ENUM;
491 if (ctx->lastError == GL_NO_ERROR)
492 ctx->lastError = GL_INVALID_OPERATION;
515 if (ctx->lastError
[all...]
/external/deqp/framework/delibs/deutil/
H A DdeProcess.c53 char* lastError; member in struct:deProcess_s
173 deFree(process->lastError);
179 return process->lastError ? process->lastError : "No error";
189 if (process->lastError)
191 deFree(process->lastError);
192 process->lastError = DE_NULL;
195 process->lastError = deStrdup(error);
196 return process->lastError != DE_NULL;
519 char* lastError; member in struct:deProcess_s
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dwinnmtst.cpp190 DWORD lastError = GetLastError(); local
192 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
204 DWORD lastError = GetLastError(); local
206 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
/external/libxml2/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")
/external/webrtc/src/modules/audio_processing/agc/
H A Danalog_agc.h59 WebRtc_Word16 lastError; member in struct:__anon17080
H A Danalog_agc.c1408 stt->lastError = AGC_UNINITIALIZED_ERROR;
1414 stt->lastError = AGC_BAD_PARAMETER_ERROR;
1421 stt->lastError = AGC_BAD_PARAMETER_ERROR;
1464 stt->lastError = AGC_NULL_POINTER_ERROR;
1470 stt->lastError = AGC_UNINITIALIZED_ERROR;
1503 stt->lastError = 0;
1539 stt->lastError = AGC_UNINITIALIZED_ERROR;
1673 stt->lastError = AGC_UNSPECIFIED_ERROR;
/external/freetype/src/cff/
H A Dcf2intrp.c411 * even if continuing would be safe. In this case, `lastError' is
431 /* lastError is used for errors that are immediately tested */
432 FT_Error lastError = FT_Err_Ok; local
533 lastError = FT_THROW( Out_Of_Memory );
574 lastError = FT_THROW( Invalid_Glyph_Format );
758 lastError = FT_THROW( Invalid_Glyph_Format );
782 lastError = FT_THROW( Invalid_Glyph_Format );
797 lastError = FT_THROW( Invalid_Glyph_Format );
812 lastError = FT_THROW( Invalid_Glyph_Format );
1107 lastError
[all...]
H A Dcf2font.c437 FT_Error lastError = FT_Err_Ok; local
506 cf2_setError( &font->error, lastError );
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2intrp.c410 * even if continuing would be safe. In this case, `lastError' is
430 /* lastError is used for errors that are immediately tested */
431 FT_Error lastError = FT_Err_Ok; local
532 lastError = FT_THROW( Out_Of_Memory );
573 lastError = FT_THROW( Invalid_Glyph_Format );
757 lastError = FT_THROW( Invalid_Glyph_Format );
778 lastError = FT_THROW( Invalid_Glyph_Format );
791 lastError = FT_THROW( Invalid_Glyph_Format );
806 lastError = FT_THROW( Invalid_Glyph_Format );
1100 lastError
[all...]
H A Dcf2font.c437 FT_Error lastError = FT_Err_Ok; local
506 cf2_setError( &font->error, lastError );
/external/lzma/CPP/7zip/Common/
H A DFileStreams.cpp23 DWORD lastError = ::GetLastError();
24 if (lastError == 0)
26 return HRESULT_FROM_WIN32(lastError);
/external/icu/icu4c/source/i18n/
H A Dwinnmfmt.cpp312 DWORD lastError = GetLastError(); local
314 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
/external/libxml2/include/libxml/
H A Dxpath.h345 xmlError lastError; /* the last error */ member in struct:_xmlXPathContext
H A Dparser.h301 xmlError lastError; member in struct:_xmlParserCtxt
/external/icu/icu4c/source/common/
H A Dputil.cpp2173 DWORD lastError = GetLastError(); local
2174 if(lastError == ERROR_PROC_NOT_FOUND) {
/external/libxml2/xstc/
H A Dxstc.py287 err = libxml2.lastError()

Completed in 7384 milliseconds