Searched refs:evs (Results 1 - 8 of 8) sorted by relevance
/third_party/libinput/tools/ |
H A D | libinput-replay.py | 155 def print_events(devnode, indent, evs): 157 for e in evs: 172 evs = [] 182 evs.append(e) 186 if events_skipped and all(e for e in evs if e.matches(libevdev.EV_SYN.SYN_REPORT)): 189 return evs 215 evs = collect_events(evdev) 216 if not evs: 219 evtime = evs[0].sec + evs[ [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | event.cpp | 42 std::vector<intrusive_ref<event>> evs; in trigger_self() local 45 std::swap(_chain, evs); in trigger_self() 48 return evs; in trigger_self() 65 std::vector<intrusive_ref<event>> evs; in abort_self() local 69 std::swap(_chain, evs); in abort_self() 72 return evs; in abort_self() 121 std::vector<intrusive_ref<event>> evs; in wait() local 122 std::swap(deps, evs); in wait() 124 for (event &ev : evs) in wait()
|
/third_party/nghttp2/src/ |
H A D | shrpx_dns_resolver.cc | 110 const std::vector<std::unique_ptr<ev_io>> &evs) { in stop_ev() 111 for (auto &w : evs) { in stop_ev() 240 void start_ev(std::vector<std::unique_ptr<ev_io>> &evs, struct ev_loop *loop, in start_ev() argument 242 for (auto &w : evs) { in start_ev() 247 for (auto &w : evs) { in start_ev() 259 evs.emplace_back(std::move(w)); in start_ev() 264 void stop_ev(std::vector<std::unique_ptr<ev_io>> &evs, struct ev_loop *loop, in stop_ev() argument 266 for (auto &w : evs) { in stop_ev() 109 stop_ev(struct ev_loop *loop, const std::vector<std::unique_ptr<ev_io>> &evs) stop_ev() argument
|
/third_party/libinput/src/ |
H A D | util-prop-parsers.c | 372 struct input_event evs[32]; in parse_evcode_property() local 374 memset(evs, 0, sizeof evs); in parse_evcode_property() 378 if (!strv || ncodes == 0 || ncodes > ARRAY_LENGTH(evs)) in parse_evcode_property() 411 evs[idx].type = type; in parse_evcode_property() 412 evs[idx].code = code; in parse_evcode_property() 413 evs[idx].value = enable; in parse_evcode_property() 416 memcpy(events, evs, ncodes * sizeof *events); in parse_evcode_property()
|
/third_party/mesa3d/src/gallium/frontends/clover/api/ |
H A D | event.cpp | 63 auto evs = objs(d_evs, num_evs); in clWaitForEvents() local 65 for (auto &ev : evs) { in clWaitForEvents() 66 if (ev.context() != evs.front().context()) in clWaitForEvents() 75 auto sev = create<soft_event>(evs.front().context(), evs, true); in clWaitForEvents()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_vs_exec.c | 69 struct exec_vertex_shader *evs = exec_vertex_shader(shader); in vs_exec_prepare() local 75 if (evs->machine->Tokens != shader->state.tokens) { in vs_exec_prepare() 76 tgsi_exec_machine_bind_shader(evs->machine, in vs_exec_prepare() 102 struct exec_vertex_shader *evs = exec_vertex_shader(shader); in vs_exec_run_linear() local 103 struct tgsi_exec_machine *machine = evs->machine; in vs_exec_run_linear()
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 1539 struct epoll_event *evs = NULL; in select_epoll_poll_impl() local 1588 evs = PyMem_New(struct epoll_event, maxevents); in select_epoll_poll_impl() 1589 if (evs == NULL) { in select_epoll_poll_impl() 1597 nfds = epoll_wait(self->epfd, evs, maxevents, (int)ms); in select_epoll_poll_impl() 1629 etuple = Py_BuildValue("iI", evs[i].data.fd, evs[i].events); in select_epoll_poll_impl() 1638 PyMem_Free(evs); in select_epoll_poll_impl()
|
/third_party/curl/lib/ |
H A D | easy.c | 651 static struct events evs = {2, FALSE, 0, NULL, 0}; in easy_events() local 654 events_setup(multi, &evs); in easy_events() 656 return wait_or_timeout(multi, &evs); in easy_events()
|
Completed in 8 milliseconds