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

1 2 3

  /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...]
  /art/test/901-hello-ti-agent/src/art/
Test901.java 51 String lastError = null;
61 if (lastError != null &&
62 (errorName != null || (error != null && !lastError.equals(error)))) {
63 System.out.println(consecutiveErrors + " times " + lastError);
64 lastError = null;
71 lastError = error;
76 System.out.println(consecutiveErrors + " times " + lastError);
  /frameworks/base/libs/hwui/debug/
GlesErrorCheckWrapper.cpp 27 GLenum lastError = GL_NO_ERROR;
30 lastError = status;
53 LOG_ALWAYS_FATAL_IF(lastError != GL_NO_ERROR,
54 "%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...]
  /frameworks/av/media/libmedia/include/media/
SharedLibrary.h 32 const char *lastError() const;
PluginLoader.h 74 library->lastError());
  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
IControlsTethering.java 53 * @param lastError one of ConnectivityManager.TETHER_ERROR_*
55 public void updateInterfaceState(TetherInterfaceStateMachine who, int state, int lastError) {}
  /hardware/interfaces/cas/1.0/default/
SharedLibrary.h 37 const char *lastError() const;
SharedLibrary.cpp 56 const char *SharedLibrary::lastError() const {
  /hardware/interfaces/drm/1.0/default/include/
SharedLibrary.h 36 const char* lastError() const;
PluginLoader.h 78 library->lastError());
  /system/libvintf/include/vintf/
parse_xml.h 30 virtual const std::string &lastError() const = 0;
  /frameworks/av/drm/libmediadrm/
SharedLibrary.cpp 52 const char *SharedLibrary::lastError() const {
  /hardware/interfaces/drm/1.0/default/
SharedLibrary.cpp 54 const char* SharedLibrary::lastError() const {
  /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/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 120 DWORD lastError = ::GetLastError();
121 if (lastError == 0)
123 return HRESULT_FROM_WIN32(lastError);
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.js 35 console.log(chrome.runtime.lastError);
42 if (chrome.runtime.lastError) {
43 console.log('Scan failed: ' + chrome.runtime.lastError.message);
  /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/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
OGLES2HelloAPI_OSX.mm 79 GLenum lastError = glGetError();
80 if (lastError != GL_NO_ERROR)
82 NSLog(@"%s failed (%x).\n", functionLastCalled, lastError);
101 EGLint lastError = eglGetError();
102 if (lastError != EGL_SUCCESS)
104 NSLog(@"%s failed (%x).\n", functionLastCalled, lastError);
OGLES2HelloAPI_LinuxX11.cpp 58 EGLint lastError = eglGetError();
59 if (lastError != EGL_SUCCESS)
61 printf("%s failed (%x).\n", functionLastCalled, lastError);
102 GLenum lastError = glGetError();
103 if (lastError != GL_NO_ERROR)
105 printf("%s failed (%x).\n", functionLastCalled, lastError);
    [all...]
  /system/libvintf/test/
main.cpp 323 << gHalManifestConverter.lastError();
332 EXPECT_TRUE(gHalManifestConverter.lastError().find(
    [all...]
  /external/icu/icu4c/source/test/intltest/
winnmtst.cpp 191 DWORD lastError = GetLastError();
193 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
205 DWORD lastError = GetLastError();
207 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 65 "%s", path.c_str(), library->lastError());

Completed in 871 milliseconds

1 2 3