Home
last modified time | relevance | path

Searched refs:events (Results 451 - 475 of 788) sorted by relevance

1...<<11121314151617181920>>...32

/third_party/python/Lib/xml/etree/
H A DElementTree.py1222 def iterparse(source, events=None, parser=None):
1226 *events* it is initialized with. The supported events are the strings
1227 "start", "end", "start-ns" and "end-ns" (the "ns" events are used to get
1228 detailed namespace information). If *events* is omitted, only
1229 "end" events are reported.
1231 *source* is a filename or file object containing XML data, *events* is
1232 a list of events to report back, *parser* is an optional parser instance.
1239 pullparser = XMLPullParser(events=events, _parse
[all...]
/third_party/python/Modules/
H A Dselectmodule.c445 self->ufds[i].events = (short)(unsigned short)PyLong_AsLong(value); in update_ufd_array()
459 an optional bitmask describing the type of events to check for
501 a bitmask describing the type of events to check for
589 Returns a list containing any descriptors that have events or errors to
811 unsigned short events, int remove) in internal_devpoll_register()
818 self->fds[self->n_fds].events = POLLREMOVE; in internal_devpoll_register()
827 self->fds[self->n_fds].events = (signed short)events; in internal_devpoll_register()
844 an optional bitmask describing the type of events to check for
865 an optional bitmask describing the type of events t
810 internal_devpoll_register(devpollObject *self, int fd, unsigned short events, int remove) internal_devpoll_register() argument
1424 pyepoll_internal_ctl(int epfd, int op, int fd, unsigned int events) pyepoll_internal_ctl() argument
[all...]
/test/xts/acts/notification/ces_standard/actsCommonEventSubscribeNDKTest/entry/src/main/cpp/
H A Dsubscribe.cpp140 const char *events[length]; in CreateSubscribeInfo() local
151 events[i] = str; in CreateSubscribeInfo()
154 information = OH_CommonEvent_CreateSubscribeInfo(events, length); in CreateSubscribeInfo()
/third_party/ffmpeg/libavcodec/
H A Dlibjxldec.c50 JxlDecoderStatus events; member
58 ctx->events = JXL_DEC_BASIC_INFO | JXL_DEC_FULL_IMAGE | JXL_DEC_COLOR_ENCODING; in libjxl_init_jxl_decoder()
59 if (JxlDecoderSubscribeEvents(ctx->decoder, ctx->events) != JXL_DEC_SUCCESS) { in libjxl_init_jxl_decoder()
60 av_log(avctx, AV_LOG_ERROR, "Error subscribing to JXL events\n"); in libjxl_init_jxl_decoder()
/third_party/ffmpeg/tests/fate/
H A Dsubtitles.mak77 FATE_SUBTITLES-$(call ALLYES, SRT_DEMUXER SUBRIP_DECODER SRT_MUXER) += fate-sub-srt-empty-events
78 fate-sub-srt-empty-events: CMD = fmtstdout srt -i $(TARGET_SAMPLES)/sub/empty-events-2167.srt -c:s copy
/third_party/alsa-lib/src/hwdep/
H A Dhwdep.c273 pfds->events = POLLOUT|POLLERR|POLLNVAL; in snd_hwdep_poll_descriptors()
276 pfds->events = POLLIN|POLLERR|POLLNVAL; in snd_hwdep_poll_descriptors()
279 pfds->events = POLLOUT|POLLIN|POLLERR|POLLNVAL; in snd_hwdep_poll_descriptors()
290 * \brief get returned events from poll descriptors
294 * \param revents returned events
/third_party/alsa-lib/src/timer/
H A Dtimer.c39 events. In this buffer is recorded count of ticks and current tick resolution
61 This example shows opening a timer device and reading of timer events.
365 pfds->events = POLLOUT|POLLERR|POLLNVAL; in snd_timer_poll_descriptors()
368 pfds->events = POLLIN|POLLERR|POLLNVAL; in snd_timer_poll_descriptors()
371 pfds->events = POLLOUT|POLLIN|POLLERR|POLLNVAL; in snd_timer_poll_descriptors()
382 * \brief get returned events from poll descriptors
386 * \param revents returned events
/third_party/libwebsockets/lib/event-libs/libevent/
H A Dlibevent.c126 eventfd.events = 0; in lws_event_cb()
129 eventfd.events |= LWS_POLLIN; in lws_event_cb()
133 eventfd.events |= LWS_POLLOUT; in lws_event_cb()
/third_party/libwebsockets/lib/core-net/
H A Dservice.c535 pfd.events = LWS_POLLIN; in lws_service_do_ripe_rxflow()
617 (pt->fds[wsi->position_in_fds_table].events & in lws_service_flag_pending()
693 if (!(pollfd->revents & pollfd->events & LWS_POLLIN)) { in lws_service_fd_tsi()
/third_party/libwebsockets/lib/event-libs/libev/
H A Dlibev.c102 eventfd.events = 0; in lws_accept_cb()
106 eventfd.events |= LWS_POLLIN; in lws_accept_cb()
110 eventfd.events |= LWS_POLLOUT; in lws_accept_cb()
/third_party/python/Lib/test/
H A Dtest_telnetlib.py131 def register(self, fileobj, events, data=None):
132 key = selectors.SelectorKey(fileobj, 0, events, data)
148 return [(key, key.events) for key in self.keys.values()]
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H A Dsyscalls.rs611 events: *mut epoll_event,
620 events,
630 events,
/third_party/libcoap/src/
H A Dcoap_net.c512 event.events = EPOLLIN; in coap_new_context()
2107 coap_io_do_epoll(coap_context_t *ctx, struct epoll_event *events, size_t nevents) { in coap_io_do_epoll() argument
2110 (void)events; in coap_io_do_epoll()
2119 coap_socket_t *sock = (coap_socket_t *)events[j].data.ptr; in coap_io_do_epoll()
2127 (events[j].events & EPOLLIN)) { in coap_io_do_epoll()
2133 (events[j].events & EPOLLOUT)) { in coap_io_do_epoll()
2145 (events[j].events in coap_io_do_epoll()
[all...]
/test/xts/hats/distributedhardware/distributedcameratest/
H A Ddcameraprovidercase.h77 int32_t CameraEventNotify(std::shared_ptr<DCameraEvent>& events) in CameraEventNotify() argument
/test/xts/hats/distributedhardware/distributedcameratest_additional/
H A Ddcameraprovidercase.h50 int32_t CameraEventNotify(std::shared_ptr<DCameraEvent> &events) { return DCAMERA_OK; } in CameraEventNotify() argument
/third_party/FreeBSD/sys/kern/
H A Dkern_condvar.c37 extern UINT32 OsEventWriteOnce(EVENT_CB_S *eventCb, UINT32 events);
/third_party/libuv/test/
H A Dtest-poll-close-doesnt-corrupt-stack.c45 static void poll_cb(uv_poll_t* h, int status, int events) { in poll_cb() argument
/third_party/libdrm/
H A Dlibsync.h67 fds.events = POLLIN; in sync_wait()
/third_party/ltp/include/
H A Dtime64_variants.h43 struct io_event *events, void *timeout, sigset_t *sigmask);
/third_party/node/test/parallel/
H A Dtest-file-write-stream2.js45 console.log(' Test callback events missing or out of order:');
50 `events missing or out of order: "${cb_occurred}" !== "${cb_expected}"`);
/third_party/node/test/async-hooks/
H A Dtest-pipewrap.js80 // 2 events without any IO and at least one more for the node version data.
82 assert.ok(ioEvents >= 3, `at least 3 stdout io events, got ${ioEvents}`);
/third_party/nghttp2/src/
H A Dshrpx_upstream.h55 virtual int downstream_error(DownstreamConnection *dconn, int events) = 0;
/third_party/libinput/test/
H A Dlitest-int.h48 * the information in name, id, events, absinfo is used to
72 int *events; member
98 * Set of of events to execute on touch down, terminated by a .type
103 * These events are only used if touch_down is NULL.
110 * Tablet events, LITEST_AUTO_ASSIGN is allowed on event values for
133 * Pad events, LITEST_AUTO_ASSIGN is allowed on event values
141 * Pad events, LITEST_AUTO_ASSIGN is allowed on event values
/third_party/ltp/testcases/kernel/tracing/ftrace_test/
H A Dftrace_lib.sh102 echo 0 > events/enable
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/
H A Dcpuhotplug06.sh17 Desc: Does top work properly when CPU hotplug events occur?

Completed in 18 milliseconds

1...<<11121314151617181920>>...32