HomeSort by relevance Sort by last modified time
    Searched defs:lastError (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/av/drm/libmediadrm/
SharedLibrary.cpp 49 const char *SharedLibrary::lastError() const {
  /frameworks/base/libs/hwui/debug/
wrap_gles.cpp 33 GLenum lastError = GL_NO_ERROR;
36 lastError = status;
59 LOG_ALWAYS_FATAL_IF(lastError != GL_NO_ERROR,
60 "%s error! %s (0x%x)", apicall, lastErrorName, lastError);
  /external/libxml2/
testchar.c 15 int lastError;
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 == 0) || (res != NULL)
    [all...]
  /external/freetype/src/cff/
cf2font.c 437 FT_Error lastError = FT_Err_Ok;
506 cf2_setError( &font->error, lastError );
cf2intrp.c 412 * even if continuing would be safe. In this case, `lastError' is
432 /* lastError is used for errors that are immediately tested */
433 FT_Error lastError = FT_Err_Ok;
538 lastError = FT_THROW( Out_Of_Memory );
579 lastError = FT_THROW( Invalid_Glyph_Format );
763 lastError = FT_THROW( Invalid_Glyph_Format );
787 lastError = FT_THROW( Invalid_Glyph_Format );
802 lastError = FT_THROW( Invalid_Glyph_Format );
817 lastError = FT_THROW( Invalid_Glyph_Format );
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cf2font.c 437 FT_Error lastError = FT_Err_Ok;
506 cf2_setError( &font->error, lastError );
cf2intrp.c 411 * 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;
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 );
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2font.c 437 FT_Error lastError = FT_Err_Ok;
506 cf2_setError( &font->error, lastError );
cf2intrp.c 411 * 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;
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 );
    [all...]
  /external/icu/icu4c/source/i18n/
winnmfmt.cpp 312 DWORD lastError = GetLastError();
314 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /external/icu/icu4c/source/test/intltest/
winnmtst.cpp 190 DWORD lastError = GetLastError();
192 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
204 DWORD lastError = GetLastError();
206 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /external/lzma/CPP/Windows/
FileFind.cpp 395 DWORD lastError = GetLastError();
396 if (lastError == ERROR_BAD_NETPATH ||
397 lastError == ERROR_FILE_NOT_FOUND ||
398 lastError == ERROR_INVALID_NAME // for "\\SERVER\shared" paths that are translated to "\\?\UNC\SERVER\shared"
428 ::SetLastError(lastError);
  /prebuilts/misc/windows/sdl2/test/
testautomation_platform.c 288 char *lastError;
294 lastError = (char *)SDL_GetError();
296 SDLTest_AssertCheck(lastError != NULL,
298 if (lastError != NULL)
300 len = SDL_strlen(lastError);
308 lastError = (char *)SDL_GetError();
309 SDLTest_AssertCheck(lastError != NULL,
311 if (lastError != NULL)
313 len = SDL_strlen(lastError);
318 SDLTest_AssertCheck(SDL_strcmp(lastError, testError) == 0
    [all...]
testautomation_sdltest.c 157 char *lastError;
226 lastError = (char *)SDL_GetError();
228 SDLTest_AssertCheck(lastError == NULL || lastError[0] == '\0', "Validate no error message was set");
236 lastError = (char *)SDL_GetError();
238 SDLTest_AssertCheck(lastError == NULL || lastError[0] == '\0', "Validate no error message was set");
246 lastError = (char *)SDL_GetError();
248 SDLTest_AssertCheck(lastError != NULL && SDL_strcmp(lastError, expectedError) == 0
    [all...]
testautomation_video.c 543 char *lastError;
551 lastError = (char *)SDL_GetError();
553 SDLTest_AssertCheck(lastError != NULL, "Verify error message is not NULL");
554 if (lastError != NULL) {
555 SDLTest_AssertCheck(SDL_strcmp(lastError, invalidWindowError) == 0,
558 lastError);
603 char *lastError;
605 lastError = (char *)SDL_GetError();
607 SDLTest_AssertCheck(lastError != NULL, "Verify error message is not NULL");
608 if (lastError != NULL)
    [all...]
  /external/deqp/framework/delibs/deutil/
deProcess.c 53 char* lastError;
174 deFree(process->lastError);
180 return process->lastError ? process->lastError : "No error";
190 if (process->lastError)
192 deFree(process->lastError);
193 process->lastError = DE_NULL;
196 process->lastError = deStrdup(error);
197 return process->lastError != DE_NULL;
522 char* lastError;
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/agc/legacy/
analog_agc.h 58 int16_t lastError;
  /libcore/ojluni/src/main/java/java/lang/
Runtime.java     [all...]
  /external/deqp/framework/platform/null/
tcuNullRenderContext.cpp 97 GLenum lastError;
123 , lastError (GL_NO_ERROR)
270 const GLenum lastErr = ctx->lastError;
272 ctx->lastError = GL_NO_ERROR;
459 ctx->lastError = GL_INVALID_ENUM;
474 ctx->lastError = GL_INVALID_VALUE;
480 ctx->lastError = GL_INVALID_ENUM;
622 if (ctx->lastError == GL_NO_ERROR)
623 ctx->lastError = GL_INVALID_OPERATION;
646 if (ctx->lastError == GL_NO_ERROR
    [all...]
  /external/libxml2/include/libxml/
xpath.h 345 xmlError lastError; /* the last error */
parser.h 301 xmlError lastError;
    [all...]
  /external/icu/icu4c/source/common/
putil.cpp     [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 

Completed in 1383 milliseconds

1 2