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

1 2

  /external/deqp/framework/platform/lnx/wayland/
tcuLnxWayland.cpp 82 throw ResourceError("Failed to open display", name, __FILE__, __LINE__);
86 throw ResourceError("Failed to get registry", name, __FILE__, __LINE__);
91 throw ResourceError("Failed to bind compositor", name, __FILE__, __LINE__);
93 throw ResourceError("Failed to bind shell", name, __FILE__, __LINE__);
139 throw ResourceError("Failed to create ", "surface", __FILE__, __LINE__);
143 throw ResourceError("Failed to create ", "shell_surface", __FILE__, __LINE__);
156 throw ResourceError("Failed to create ", "window", __FILE__, __LINE__);
  /external/deqp/framework/common/
tcuDefs.hpp 95 class ResourceError : public TestException
98 ResourceError (const char* message, const char* expr, const char* file, int line);
99 ResourceError (const std::string& message);
100 virtual ~ResourceError (void) throw() {}
tcuResource.cpp 53 throw ResourceError("Failed to open file", filename, __FILE__, __LINE__);
tcuTestLog.cpp 34 class LogWriteFailedError : public ResourceError
37 LogWriteFailedError (void) : ResourceError("Writing to test log failed") {}
187 throw ResourceError(std::string("Failed to open test log file '") + fileName + "'");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
resource.c 22 static PyObject *ResourceError;
77 PyErr_SetFromErrno(ResourceError);
129 PyErr_SetFromErrno(ResourceError);
189 PyErr_SetFromErrno(ResourceError);
239 if (ResourceError == NULL) {
240 ResourceError = PyErr_NewException("resource.error",
243 Py_INCREF(ResourceError);
244 PyModule_AddObject(m, "error", ResourceError);
  /external/deqp/framework/opengl/
gluDefs.cpp 52 : tcu::ResourceError(message, expr, file, line)
57 : tcu::ResourceError(message)
gluDefs.hpp 61 class OutOfMemoryError : public tcu::ResourceError
  /external/python/cpython2/Modules/
resource.c 22 static PyObject *ResourceError;
77 PyErr_SetFromErrno(ResourceError);
129 PyErr_SetFromErrno(ResourceError);
201 PyErr_SetFromErrno(ResourceError);
256 if (ResourceError == NULL) {
257 ResourceError = PyErr_NewException("resource.error",
260 Py_INCREF(ResourceError);
261 PyModule_AddObject(m, "error", ResourceError);
  /external/deqp/framework/platform/android/
tcuAndroidAssets.cpp 52 throw ResourceError("Failed to open asset resource", name, __FILE__, __LINE__);
tcuAndroidPlatform.cpp 169 throw ResourceError("Native window is not available", DE_NULL, __FILE__, __LINE__);
257 TCU_THROW(ResourceError, "Native window is not available");
  /external/deqp/framework/platform/win32/
tcuWGL.cpp 203 throw ResourceError("Failed to load core WGL functions");
217 throw ResourceError("Failed to set pixel format for temporary context creation");
226 throw ResourceError("Failed to create temporary WGL context");
244 throw ResourceError("Failed to load WGL extension functions");
271 throw ResourceError("Failed to query number of WGL pixel formats");
327 throw ResourceError("Pixel format query failed");
406 throw ResourceError("DescribePixelFormat() failed");
409 throw ResourceError("Failed to set pixel format");
416 throw ResourceError("Failed to create WGL context");
421 throw ResourceError("wglMakeCurrent() failed")
    [all...]
tcuWin32Window.cpp 72 TCU_THROW(ResourceError, "Failed to create Win32 window");
tcuWin32GLES3Platform.cpp 103 throw ResourceError("Failed to create GLES3 wrapper context");
  /external/deqp/external/vulkancts/framework/vulkan/
vkDefs.cpp 60 : tcu::ResourceError(message, expr, file, line)
67 : tcu::ResourceError(message)
vkBinaryRegistry.hpp 59 class ProgramNotFoundException : public tcu::ResourceError
63 : tcu::ResourceError("Program " + id.testCasePath + " / '" + id.programName + "' not found: " + reason)
vkDefs.hpp 212 class OutOfMemoryError : public tcu::ResourceError
  /external/deqp/framework/egl/
egluDefs.cpp 68 : tcu::ResourceError(errStr)
73 : tcu::ResourceError(message, expr, file, line)
egluNativeWindow.hpp 67 class WindowDestroyedError : public tcu::ResourceError
70 WindowDestroyedError (const std::string& message) : tcu::ResourceError(message) {}
egluDefs.hpp 51 class BadAllocError : public tcu::ResourceError
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.mm 51 throw ResourceError("View is already is in use");
126 throw ResourceError("Failed to create EAGL context");
131 throw ResourceError("Failed to set current EAGL context");
239 throw ResourceError("Failed to allocate color renderbuffer");
290 throw ResourceError("presentRenderbuffer() failed");
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBase.cpp 76 TCU_THROW(ResourceError, "Device reports an empty set of queue family properties");
84 TCU_THROW(ResourceError, "Device reports an empty set of queue family properties");
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.cpp 133 throw ResourceError("Failed to create CGL context");
136 throw ResourceError("Failed to set current CGL context");
  /external/deqp/modules/gles31/
tes31TestPackage.cpp 84 catch (const tcu::ResourceError& e)
  /external/deqp/modules/gles2/
tes2TestPackage.cpp 99 catch (const tcu::ResourceError& e)
  /external/deqp/modules/gles3/
tes3TestPackage.cpp 98 catch (const tcu::ResourceError& e)

Completed in 747 milliseconds

1 2