Lines Matching refs:m_sync

102 	EGLSyncKHR						m_sync;  member in deqp::egl::__anon1d42b1460111::SyncTest
114 , m_sync (EGL_NO_SYNC_KHR) in SyncTest()
237 if (m_sync != EGL_NO_SYNC_KHR) in deinit()
239 EGLU_CHECK_CALL(egl, destroySyncKHR(m_eglDisplay, m_sync)); in deinit()
240 m_sync = EGL_NO_SYNC_KHR; in deinit()
278 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
279 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
305 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, attribList); in iterate()
306 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
327 m_sync = egl.createSyncKHR(EGL_NO_DISPLAY, m_syncType, NULL); in iterate()
328 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(EGL_NO_DISPLAY, " << getSyncTypeName(m_s… in iterate()
340 TCU_CHECK(m_sync == EGL_NO_SYNC_KHR); in iterate()
360 m_sync = egl.createSyncKHR(m_eglDisplay, EGL_NONE, NULL); in iterate()
361 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", EGL_NONE, NULL)"… in iterate()
373 TCU_CHECK(m_sync == EGL_NO_SYNC_KHR); in iterate()
398 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, attribs); in iterate()
399 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
411 TCU_CHECK(m_sync == EGL_NO_SYNC_KHR); in iterate()
434 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
435 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
447 TCU_CHECK(m_sync == EGL_NO_SYNC_KHR); in iterate()
467 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
468 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
471 EGLint status = egl.clientWaitSyncKHR(m_eglDisplay, m_sync, 0, 0); in iterate()
472 …log << TestLog::Message << status << " = eglClientWaitSyncKHR(" << m_eglDisplay << ", " << m_sync in iterate()
500 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
501 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
506 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in iterate()
507 …log << TestLog::Message << ret << " = eglSignalSyncKHR(" << m_eglDisplay << ", " << m_sync << ", E… in iterate()
518 EGLint status = egl.clientWaitSyncKHR(m_eglDisplay, m_sync, 0, EGL_FOREVER_KHR); in iterate()
519 …log << TestLog::Message << status << " = eglClientWaitSyncKHR(" << m_eglDisplay << ", " << m_sync in iterate()
542 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
543 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
549 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in iterate()
550 …log << TestLog::Message << ret << " = eglSignalSyncKHR(" << m_eglDisplay << ", " << m_sync << ", E… in iterate()
564 EGLint result = egl.clientWaitSyncKHR(m_eglDisplay, m_sync, 0, EGL_FOREVER_KHR); in iterate()
565 …log << TestLog::Message << result << " = eglClientWaitSyncKHR(" << m_eglDisplay << ", " << m_sync in iterate()
587 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
588 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
593 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in iterate()
594 …log << TestLog::Message << ret << " = eglSignalSyncKHR(" << m_eglDisplay << ", " << m_sync << ", E… in iterate()
598 …EGLint status = egl.clientWaitSyncKHR(m_eglDisplay, m_sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, EGL_F… in iterate()
599 …log << TestLog::Message << status << " = eglClientWaitSyncKHR(" << m_eglDisplay << ", " << m_sync in iterate()
621 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
622 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
625 …EGLint status = egl.clientWaitSyncKHR(EGL_NO_DISPLAY, m_sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, EGL… in iterate()
626 …log << TestLog::Message << status << " = eglClientWaitSyncKHR(EGL_NO_DISPLAY, " << m_sync << ", EG… in iterate()
691 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
692 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
696 EGLU_CHECK_CALL(egl, getSyncAttribKHR(m_eglDisplay, m_sync, EGL_SYNC_TYPE_KHR, &type)); in iterate()
697 …log << TestLog::Message << "eglGetSyncAttribKHR(" << m_eglDisplay << ", " << m_sync << ", EGL_SYNC… in iterate()
719 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
720 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
724 EGLU_CHECK_CALL(egl, getSyncAttribKHR(m_eglDisplay, m_sync, EGL_SYNC_STATUS_KHR, &status)); in iterate()
725 …log << TestLog::Message << "eglGetSyncAttribKHR(" << m_eglDisplay << ", " << m_sync << ", EGL_SYNC… in iterate()
750 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
751 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
756 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in iterate()
757 …log << TestLog::Message << ret << " = eglSignalSyncKHR(" << m_eglDisplay << ", " << m_sync << ", E… in iterate()
769 …EGLint status = egl.clientWaitSyncKHR(m_eglDisplay, m_sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, EGL_F… in iterate()
770 …ssage << status << " = eglClientWaitSyncKHR(" << m_eglDisplay << ", " << m_sync << ", EGL_SYNC_FLU… in iterate()
775 EGLU_CHECK_CALL(egl, getSyncAttribKHR(m_eglDisplay, m_sync, EGL_SYNC_STATUS_KHR, &status)); in iterate()
776 …log << TestLog::Message << "eglGetSyncAttribKHR(" << m_eglDisplay << ", " << m_sync << ", EGL_SYNC… in iterate()
798 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
799 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
803 EGLU_CHECK_CALL(egl, getSyncAttribKHR(m_eglDisplay, m_sync, EGL_SYNC_CONDITION_KHR, &condition)); in iterate()
804 …log << TestLog::Message << "eglGetSyncAttribKHR(" << m_eglDisplay << ", " << m_sync << ", EGL_SYNC… in iterate()
826 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
827 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
831 …EGLBoolean result = egl.getSyncAttribKHR(EGL_NO_DISPLAY, m_sync, EGL_SYNC_CONDITION_KHR, &conditio… in iterate()
832 …log << TestLog::Message << result << " = eglGetSyncAttribKHR(EGL_NO_DISPLAY, " << m_sync << ", EGL… in iterate()
900 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
901 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
905 EGLBoolean result = egl.getSyncAttribKHR(m_eglDisplay, m_sync, EGL_NONE, &condition); in iterate()
906 …log << TestLog::Message << result << " = eglGetSyncAttribKHR(" << m_eglDisplay << ", " << m_sync <… in iterate()
939 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
940 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
943 EGLBoolean result = egl.getSyncAttribKHR(m_eglDisplay, m_sync, EGL_SYNC_TYPE_KHR, NULL); in iterate()
944 …log << TestLog::Message << result << " = eglGetSyncAttribKHR(" << m_eglDisplay << ", " << m_sync <… in iterate()
976 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
980 …log << TestLog::Message << "eglDestroySyncKHR(" << m_eglDisplay << ", " << m_sync << ")" << TestLo… in iterate()
981 EGLU_CHECK_CALL(egl, destroySyncKHR(m_eglDisplay, m_sync)); in iterate()
982 m_sync = EGL_NO_SYNC_KHR; in iterate()
1002 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
1006 EGLBoolean result = egl.destroySyncKHR(EGL_NO_DISPLAY, m_sync); in iterate()
1007 …log << TestLog::Message << result << " = eglDestroySyncKHR(EGL_NO_DISPLAY, " << m_sync << ")" << T… in iterate()
1072 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
1073 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
1076 EGLint status = egl.waitSyncKHR(m_eglDisplay, m_sync, 0); in iterate()
1077 …log << TestLog::Message << status << " = eglWaitSyncKHR(" << m_eglDisplay << ", " << m_sync << ", … in iterate()
1102 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
1103 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
1106 EGLint status = egl.waitSyncKHR(EGL_NO_DISPLAY, m_sync, 0); in iterate()
1107 …log << TestLog::Message << status << " = eglWaitSyncKHR(EGL_NO_DISPLAY, " << m_sync << ", 0)" << T… in iterate()
1172 m_sync = egl.createSyncKHR(m_eglDisplay, m_syncType, NULL); in iterate()
1173 …log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncType… in iterate()
1176 EGLint status = egl.waitSyncKHR(m_eglDisplay, m_sync, 0xFFFFFFFF); in iterate()
1177 …log << TestLog::Message << status << " = eglWaitSyncKHR(" << m_eglDisplay << ", " << m_sync << ", … in iterate()