/third_party/glib/gio/tests/ |
D | gdbus-connection-loss.c | 52 on_timeout (gpointer user_data) in on_timeout() function 90 g_timeout_add (100 /* ms */, on_timeout, NULL); in test_connection_loss()
|
/third_party/grpc/src/core/ext/filters/client_channel/ |
D | channel_connectivity.cc | 69 grpc_closure on_timeout; member 205 &wa->w->on_timeout); in watcher_timer_init() 239 GRPC_CLOSURE_INIT(&w->on_timeout, timeout_complete, w, in grpc_channel_watch_connectivity_state()
|
/third_party/libuv/docs/code/uvwget/ |
D | main.c | 97 void on_timeout(uv_timer_t *req) { in on_timeout() function 106 uv_timer_start(&timeout, on_timeout, timeout_ms, 0); in start_timeout()
|
/third_party/curl/docs/examples/ |
D | multi-uv.c | 151 static void on_timeout(uv_timer_t *req) in on_timeout() function 168 uv_timer_start(&timeout, on_timeout, timeout_ms, 0); in start_timeout()
|
D | multi-event.c | 141 static void on_timeout(evutil_socket_t fd, short events, void *arg) in on_timeout() function 220 timeout = evtimer_new(base, on_timeout, NULL); in main()
|
/third_party/nghttp2/src/ |
D | shrpx_downstream_connection.h | 59 virtual int on_timeout() { return 0; } in on_timeout() function
|
D | shrpx_dns_resolver.h | 89 int on_timeout();
|
D | shrpx_http2_downstream_connection.h | 59 virtual int on_timeout();
|
D | shrpx_upstream.h | 45 virtual int on_timeout(Downstream *downstream) { return 0; }; in on_timeout() function
|
D | shrpx_dns_resolver.cc | 103 resolv->on_timeout(); in timeoutcb() 186 int DNSResolver::on_timeout() { in on_timeout() function in shrpx::DNSResolver
|
D | shrpx_http2_upstream.h | 54 virtual int on_timeout(Downstream *downstream);
|
D | shrpx_http2_session.h | 230 void on_timeout();
|
D | shrpx_downstream.cc | 63 upstream->on_timeout(downstream); in upstream_timeoutcb() 97 dconn->on_timeout(); in downstream_timeoutcb()
|
D | shrpx_http2_downstream_connection.cc | 606 int Http2DownstreamConnection::on_timeout() { in on_timeout() function in shrpx::Http2DownstreamConnection
|
/third_party/pulseaudio/src/modules/raop/ |
D | raop-sink.c | 421 bool canstream, sendstream, on_timeout; in thread_func() local 434 on_timeout = pa_rtpoll_timer_elapsed(u->rtpoll); in thread_func() 450 if (pollfd && u->oob && !on_timeout) { in thread_func() 497 if (u->oob && u->autoreconnect && on_timeout) { in thread_func() 596 if ((u->autonull && !canstream) || (u->oob && canstream && on_timeout)) { in thread_func()
|
/third_party/gstreamer/gstplugins_good/gst/rtsp/ |
D | gstrtpdec.h | 81 void (*on_timeout) (GstRTPDec *rtpdec, guint session, guint32 ssrc); member
|
/third_party/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/ |
D | grpc_ares_ev_driver.cc | 135 static void on_timeout(void* arg, grpc_error* error); 235 static void on_timeout(void* arg, grpc_error* error) { in on_timeout() function 468 GRPC_CLOSURE_INIT(&ev_driver->on_timeout_locked, on_timeout, ev_driver, in grpc_ares_ev_driver_start_locked()
|
D | grpc_ares_wrapper.cc | 283 static void on_timeout(void* arg, grpc_error* error) { in on_timeout() function 498 GRPC_CLOSURE_INIT(&ev_driver->on_timeout_locked, on_timeout, ev_driver, in grpc_ares_ev_driver_start_locked()
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | gstrtpsession.h | 75 void (*on_timeout) (GstRtpSession *sess, guint32 ssrc); member
|
D | gstrtpbin.h | 130 void (*on_timeout) (GstRtpBin *rtpbin, guint session, guint32 ssrc); member
|
D | rtpsession.h | 340 void (*on_timeout) (RTPSession *sess, RTPSource *source); member
|
/third_party/pulseaudio/src/modules/alsa/ |
D | alsa-source.c | 507 static size_t check_left_to_record(struct userdata *u, size_t n_bytes, bool on_timeout) { in check_left_to_record() argument 549 if (on_timeout) in check_left_to_record() 560 static int mmap_read(struct userdata *u, pa_usec_t *sleep_usec, bool polled, bool on_timeout) { in mmap_read() argument 594 left_to_record = check_left_to_record(u, n_bytes, on_timeout); in mmap_read() 595 on_timeout = false; in mmap_read() 735 static int unix_read(struct userdata *u, pa_usec_t *sleep_usec, bool polled, bool on_timeout) { in unix_read() argument 764 left_to_record = check_left_to_record(u, n_bytes, on_timeout); in unix_read() 765 on_timeout = false; in unix_read() 1647 bool on_timeout = pa_rtpoll_timer_elapsed(u->rtpoll); in thread_func() local 1659 work_done = mmap_read(u, &sleep_usec, revents & POLLIN, on_timeout); in thread_func() [all …]
|
D | alsa-sink.c | 535 static size_t check_left_to_play(struct userdata *u, size_t n_bytes, bool on_timeout) { in check_left_to_play() argument 581 if (on_timeout) in check_left_to_play() 593 static int mmap_write(struct userdata *u, pa_usec_t *sleep_usec, bool polled, bool on_timeout) { in mmap_write() argument 628 left_to_play = check_left_to_play(u, n_bytes, on_timeout); in mmap_write() 629 on_timeout = false; in mmap_write() 790 static int unix_write(struct userdata *u, pa_usec_t *sleep_usec, bool polled, bool on_timeout) { in unix_write() argument 822 left_to_play = check_left_to_play(u, n_bytes, on_timeout); in unix_write() 823 on_timeout = false; in unix_write() 1918 bool on_timeout = pa_rtpoll_timer_elapsed(u->rtpoll); in thread_func() local 1921 work_done = mmap_write(u, &sleep_usec, revents & POLLOUT, on_timeout); in thread_func() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/sdp/ |
D | gstsdpdemux.c | 695 on_timeout (GstElement * manager, guint session, guint32 ssrc, in on_timeout() function 735 g_signal_connect (demux->session, "on-bye-timeout", (GCallback) on_timeout, in gst_sdp_demux_configure_manager() 737 g_signal_connect (demux->session, "on-timeout", (GCallback) on_timeout, in gst_sdp_demux_configure_manager()
|
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/ |
D | gstrtmp2src.c | 556 on_timeout (GstRtmp2Src * self) in on_timeout() function 603 g_source_set_callback (timeout, (GSourceFunc) on_timeout, self, NULL); in gst_rtmp2_src_create()
|