Lines Matching refs:result
537 // Run the test. Return whether validation can continue. If false then the test result must
646 EGLBoolean result;
652 result = egl.makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface,
655 if (!result || egl.getError() != EGL_SUCCESS)
1300 EGLint result = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, eglTime);
1301 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_CLIENT_WAIT_SYNC] <<
1305 TCU_CHECK(result == condSatisfied);
1883 EGLBoolean result = (egl.*getSyncAttribFunc)(EGL_NO_DISPLAY, m_sync, attribute, &condition);
1884 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_GET_SYNC_ATTRIB] <<
1899 TCU_CHECK(result == EGL_FALSE);
1952 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, syncValue,
1954 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_GET_SYNC_ATTRIB] <<
1969 TCU_CHECK(result == EGL_FALSE);
2028 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, EGL_NONE, &condition);
2029 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_GET_SYNC_ATTRIB] <<
2044 TCU_CHECK(result == EGL_FALSE);
2103 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, NULL, attribute, &value);
2104 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_GET_SYNC_ATTRIB] <<
2119 TCU_CHECK(result == EGL_FALSE);
2239 EGLBoolean result = (egl.*destroySyncFunc)(EGL_NO_DISPLAY, m_sync);
2240 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_DESTROY_SYNC] <<
2254 TCU_CHECK(result == EGL_FALSE);
2302 EGLBoolean result = (egl.*destroySyncFunc)(m_eglDisplay, syncValue);
2303 log << TestLog::Message << result << " = " << funcNames[FUNC_NAME_DESTROY_SYNC] <<
2317 TCU_CHECK(result == EGL_FALSE);