Searched refs:shouldBeNonNull (Results 1 – 1 of 1) sorted by relevance
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiVersionCheck.cpp | 237 …har* const firstParamName, const char* const secondParamName, deBool shouldBeNonNull, deUint32& fa… in reportFail() argument 241 …<< "returned " << (shouldBeNonNull ? "nullptr" : "non-null") << " should return " << (shouldBeNonN… in reportFail() 246 …void checkPlatformFunction (tcu::TestLog& log, const char* const name, deBool shouldBeNonNull, deU… in checkPlatformFunction() argument 248 if ((getInstanceProcAddr(DE_NULL, name) == DE_NULL) == shouldBeNonNull) in checkPlatformFunction() 249 reportFail(log, "vkGetInstanceProcAddr", "DE_NULL", name, shouldBeNonNull, failsQuantity); in checkPlatformFunction() 252 …void checkInstanceFunction (tcu::TestLog& log, const char* const name, deBool shouldBeNonNull, deU… in checkInstanceFunction() argument 254 if ((getInstanceProcAddr(*instance, name) == DE_NULL) == shouldBeNonNull) in checkInstanceFunction() 255 reportFail(log, "vkGetInstanceProcAddr", "instance", name, shouldBeNonNull, failsQuantity); in checkInstanceFunction() 258 …void checkDeviceFunction (tcu::TestLog& log, const char* const name, deBool shouldBeNonNull, deUin… in checkDeviceFunction() argument 260 if ((getDeviceProcAddr(*device, name) == DE_NULL) == shouldBeNonNull) in checkDeviceFunction() [all …]
|