Home
last modified time | relevance | path

Searched refs:mEvents (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuANGLEPlatform.cpp69 d3d11Attribs, &mEvents); in ANGLEPlatform()
79 "angle-d3d11-ref", "ANGLE D3D11 Reference Display", d3d11Attribs, &mEvents); in ANGLEPlatform()
88 d3d9Attribs, &mEvents); in ANGLEPlatform()
99 glesAttribs, &mEvents); in ANGLEPlatform()
108 new ANGLENativeDisplayFactory("angle-gl", "ANGLE OpenGL Display", glAttribs, &mEvents); in ANGLEPlatform()
117 vkAttribs, &mEvents); in ANGLEPlatform()
127 "angle-swiftshader", "ANGLE SwiftShader Display", swsAttribs, &mEvents)); in ANGLEPlatform()
136 mtlAttribs, &mEvents); in ANGLEPlatform()
145 nullAttribs, &mEvents); in ANGLEPlatform()
160 return !mEvents.quitSignaled(); in processEvents()
DtcuANGLENativeDisplayFactory.cpp158 EventState *mEvents; member in tcu::__anon5d5b10250111::NativeWindowFactory
181 EventState *mEvents; member in tcu::__anon5d5b10250111::NativeWindow
262 mEvents(eventState), in NativeWindowFactory()
279 return new NativeWindow(dynamic_cast<ANGLENativeDisplay *>(nativeDisplay), params, mEvents, in createWindow()
291 mEvents(eventState), in NativeWindow()
365 mEvents->signalQuitEvent(); in processEvents()
DtcuANGLEPlatform.h62 EventState mEvents; variable
/third_party/flutter/glfw/deps/
Dtinycthread.c149 cond->mEvents[_CONDITION_EVENT_ONE] = CreateEvent(NULL, FALSE, FALSE, NULL); in cnd_init()
150 if (cond->mEvents[_CONDITION_EVENT_ONE] == NULL) in cnd_init()
152 cond->mEvents[_CONDITION_EVENT_ALL] = NULL; in cnd_init()
155 cond->mEvents[_CONDITION_EVENT_ALL] = CreateEvent(NULL, TRUE, FALSE, NULL); in cnd_init()
156 if (cond->mEvents[_CONDITION_EVENT_ALL] == NULL) in cnd_init()
158 CloseHandle(cond->mEvents[_CONDITION_EVENT_ONE]); in cnd_init()
159 cond->mEvents[_CONDITION_EVENT_ONE] = NULL; in cnd_init()
172 if (cond->mEvents[_CONDITION_EVENT_ONE] != NULL) in cnd_destroy()
174 CloseHandle(cond->mEvents[_CONDITION_EVENT_ONE]); in cnd_destroy()
176 if (cond->mEvents[_CONDITION_EVENT_ALL] != NULL) in cnd_destroy()
[all …]
Dtinycthread.h245 HANDLE mEvents[2]; /* Signal and broadcast event HANDLEs. */ member
/third_party/flutter/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuANGLEPlatform.cpp47 d3d11Attribs, &mEvents); in ANGLEPlatform()
56 d3d9Attribs, &mEvents); in ANGLEPlatform()
66 "angle-d3d11-fl93", "ANGLE D3D11 FL9_3 Display", d3d1193Attribs, &mEvents); in ANGLEPlatform()
77 glesAttribs, &mEvents); in ANGLEPlatform()
86 new ANGLENativeDisplayFactory("angle-gl", "ANGLE OpenGL Display", glAttribs, &mEvents); in ANGLEPlatform()
95 vkAttribs, &mEvents); in ANGLEPlatform()
104 nullAttribs, &mEvents); in ANGLEPlatform()
119 return !mEvents.quitSignaled(); in processEvents()
DtcuANGLENativeDisplayFactory.cpp146 EventState *mEvents; member in tcu::__anon8e4d825a0111::NativeWindowFactory
167 EventState *mEvents; member in tcu::__anon8e4d825a0111::NativeWindow
251 : eglu::NativeWindowFactory("window", "ANGLE Window", kWindowCapabilities), mEvents(eventState) in NativeWindowFactory()
267 return new NativeWindow(dynamic_cast<ANGLENativeDisplay *>(nativeDisplay), params, mEvents); in createWindow()
275 : eglu::NativeWindow(kWindowCapabilities), mWindow(OSWindow::New()), mEvents(eventState) in NativeWindow()
331 mEvents->signalQuitEvent(); in processEvents()
DtcuANGLEPlatform.h62 EventState mEvents; variable
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DRefBaseTests.cpp60 explicit constexpr RefTracker(nullptr_t) : mId(0), mEvents(nullptr) { in RefTracker()
65 RefTracker(Id id, Events* events) : mId(id), mEvents(events) { in RefTracker()
69 mEvents->emplace_back(Event{Action::kReference, mId}); in Reference()
73 mEvents->emplace_back(Event{Action::kRelease, mId}); in Release()
77 if (mEvents || other.mEvents) { in operator =()
78 Events* events = mEvents ? mEvents : other.mEvents; in operator =()
82 mEvents = other.mEvents; in operator =()
95 Events* mEvents; member
/third_party/flutter/skia/third_party/externals/angle2/util/
DOSWindow.cpp381 if (mEvents.size() > 0 && event) in popEvent()
383 *event = mEvents.front(); in popEvent()
384 mEvents.pop_front(); in popEvent()
409 mEvents.push_back(event); in pushEvent()
DOSWindow.h76 std::list<Event> mEvents; variable
/third_party/skia/third_party/externals/angle2/util/
DOSWindow.cpp394 if (mEvents.size() > 0 && event) in popEvent()
396 *event = mEvents.front(); in popEvent()
397 mEvents.pop_front(); in popEvent()
422 mEvents.push_back(event); in pushEvent()
DOSWindow.h84 std::list<Event> mEvents; variable