Home
last modified time | relevance | path

Searched refs:out (Results 1 – 25 of 31) sorted by relevance

12

/libevent-2.1.12/sample/
H A Dsignal-test.c63 goto out; in main()
70 goto out; in main()
76 out: in main()
H A Dhttp-server.c347 print_usage(FILE *out, const char *prog, int exit_code) in print_usage() argument
349 fprintf(out, in print_usage()
/libevent-2.1.12/
H A DMakefile.nmake57 lib $(LIBFLAGS) $(CORE_OBJS) $(WIN_OBJS) /out:libevent_core.lib
60 lib $(LIBFLAGS) $(EXTRA_OBJS) /out:libevent_extras.lib
63 lib $(LIBFLAGS) $(CORE_OBJS) $(EXTRA_OBJS) $(WIN_OBJS) /out:libevent.lib
66 lib $(LIBFLAGS) $(SSL_OBJS) /out:libevent_openssl.lib
H A Dkqueue.c180 kq_setup_kevent(struct kevent *out, evutil_socket_t fd, int filter, short change) in kq_setup_kevent() argument
182 memset(out, 0, sizeof(struct kevent)); in kq_setup_kevent()
183 out->ident = fd; in kq_setup_kevent()
184 out->filter = filter; in kq_setup_kevent()
187 out->flags = EV_ADD; in kq_setup_kevent()
190 out->udata = INT_TO_UDATA(ADD_UDATA); in kq_setup_kevent()
192 out->flags |= EV_CLEAR; in kq_setup_kevent()
196 out->fflags = NOTE_EOF; in kq_setup_kevent()
200 out->flags = EV_DELETE; in kq_setup_kevent()
H A Devthread_win32.c262 goto out; in evthread_win32_cond_wait()
267 goto out; in evthread_win32_cond_wait()
274 goto out; in evthread_win32_cond_wait()
285 out: in evthread_win32_cond_wait()
H A Devutil.c2046 struct in6_addr *out = dst; in evutil_inet_pton()
2126 out->s6_addr[2*i ] = words[i] >> 8; in evutil_inet_pton()
2127 out->s6_addr[2*i+1] = words[i] & 0xff; in evutil_inet_pton()
2219 memset(out, 0, *outlen); in evutil_parse_sockaddr_port()
2220 memcpy(out, &sin6, sizeof(sin6)); in evutil_parse_sockaddr_port()
2238 memset(out, 0, *outlen); in evutil_parse_sockaddr_port()
2239 memcpy(out, &sin, sizeof(sin)); in evutil_parse_sockaddr_port()
2256 evutil_snprintf(out, outlen, "%s:%d", b, port); in evutil_format_sockaddr_port_()
2257 return out; in evutil_format_sockaddr_port_()
2265 return out; in evutil_format_sockaddr_port_()
[all …]
H A Dwin32select.c262 fd_set_copy(struct win_fd_set *out, const struct win_fd_set *in) in fd_set_copy() argument
264 out->fd_count = in->fd_count; in fd_set_copy()
265 memcpy(out->fd_array, in->fd_array, in->fd_count * (sizeof(SOCKET))); in fd_set_copy()
H A Devent.c241 goto out; in HT_PROTOTYPE()
259 out: in HT_PROTOTYPE()
268 goto out; in event_debug_note_teardown_()
277 out: in event_debug_note_teardown_()
286 goto out; in event_debug_note_add_()
303 out: in event_debug_note_add_()
312 goto out; in event_debug_note_del_()
329 out: in event_debug_note_del_()
3156 goto out; in timeout_next()
3161 goto out; in timeout_next()
[all …]
H A DChangeLog-1.433 …event queue and fd array for the epoll backend at startup. Instead, start out accepting 32 events…
35 o Do not drop data from evbuffer when out of memory; reported by Jacek Masiulaniec
108 o Fix use of freed memory in event_reinit; pointed out by Peter Postma
109 o Constify struct timeval * where possible; pointed out by Forest Wilkinson
172 …o pull setters/getters out of RPC structures into a base class to which we just need to store a po…
174 o move EV_PERSIST handling out of the event backends
H A Dhttp.c3117 goto out; in evhttp_uriencode()
3122 goto out; in evhttp_uriencode()
3131 goto out; in evhttp_uriencode()
3135 goto out; in evhttp_uriencode()
3157 out: in evhttp_uriencode()
4408 goto out; in create_bind_socket_nonblock()
4411 goto out; in create_bind_socket_nonblock()
4417 goto out; in create_bind_socket_nonblock()
4422 out: in create_bind_socket_nonblock()
H A Dbufferevent_openssl.c133 bio_bufferevent_read(BIO *b, char *out, int outlen) in bio_bufferevent_read() argument
140 if (!out) in bio_bufferevent_read()
151 r = evbuffer_remove(input, out, outlen); in bio_bufferevent_read()
H A Dutil-internal.h445 const char *evutil_format_sockaddr_port_(const struct sockaddr *sa, char *out, size_t outlen);
H A Dwhatsnew-2.0.txt18 http and rpc code. Check out the latest draft at
338 Previously, each evbuffer was a huge chunk of memory. When we ran out of
362 EVBUFFER_DATA() function still works. Watch out, though: it needs to copy
497 currently optimized at all. To try it out, call the
H A Devdns.c3396 evdns_strtotimeval(const char *const str, struct timeval *out) in evdns_strtotimeval() argument
3403 out->tv_sec = (int) d; in evdns_strtotimeval()
3404 out->tv_usec = (int) ((d - (int) d)*1000000); in evdns_strtotimeval()
3405 if (out->tv_sec == 0 && out->tv_usec < 1000) /* less than 1 msec */ in evdns_strtotimeval()
4681 goto out; in evdns_getaddrinfo_fromhosts()
4687 out: in evdns_getaddrinfo_fromhosts()
H A Dbuffer.c1775 goto out; in evbuffer_add()
1785 goto out; in evbuffer_add()
1818 out: in evbuffer_add()
1873 goto out; in evbuffer_prepend()
1904 out: in evbuffer_prepend()
H A DChangeLog136 trivial fixes pruned out from it - to make it a little bit more informative).
638 o bufferevent: move conn_address out from http into bufferevent (8bb3842 Azat Khuzhin)
748 o Commented out a WIN32 threading / timing test for now (e84e269 Mark Ellzey)
1240 o a program to print out the error strings for winsock errors (7296512
1324 o Split out time-related evutil functions into a new evutil_time.c (c419485)
1325 o Split out time-related prototypes into time-internal.h (71bca50)
1495 o When retransmitting a timed-out DNS request, pick a fresh nameserver. (3d9e52a)
1656 o Try to fix 'make distcheck' errors when building out-of-tree (04656ea Dave Hart)
1765 o Avoid a free(NULL) if out-of-memory in evdns_getaddrinfo. Found by Dave Hart (3417f68)
1897 o In the 2.1 branch, let's try out lazy gettimeofday/clock_gettime
[all …]
H A DChangeLog-2.066 o When retransmitting a timed-out DNS request, pick a fresh nameserver. (3d9e52a)
227 o Try to fix 'make distcheck' errors when building out-of-tree (04656ea Dave Hart)
336 o Avoid a free(NULL) if out-of-memory in evdns_getaddrinfo. Found by Dave Hart (3417f68)
1006 o Remove some commented-out code in evutil (26e1b6f)
1043 …o Do not allocate the maximum event queue for the epoll backend at startup. Instead, start out ac…
1046 o Do not drop data from evbuffer when out of memory; reported by Jacek Masiulaniec
1147 o move EV_PERSIST handling out of the event backends
1155 …o pull setters/getters out of RPC structures into a base class to which we just need to store a po…
1233 o Fix use of freed memory in event_reinit; pointed out by Peter Postma
H A DDoxyfile228 # patterns (like *.h and *.hpp) to filter out the header-files in the
/libevent-2.1.12/test/
H A Dregress_http.c268 goto out; in http_readcb()
272 goto out; in http_readcb()
279 out: in http_readcb()
657 goto out; in http_badreq_readcb()
661 goto out; in http_badreq_readcb()
668 out: in http_badreq_readcb()
3185 goto out; in http_chunked_errorcb()
3197 goto out; in http_chunked_errorcb()
3201 goto out; in http_chunked_errorcb()
3205 goto out; in http_chunked_errorcb()
[all …]
H A Dregress_dns.c98 goto out; in dns_gethostbyname_cb()
103 goto out; in dns_gethostbyname_cb()
116 goto out; in dns_gethostbyname_cb()
132 goto out; in dns_gethostbyname_cb()
140 goto out; in dns_gethostbyname_cb()
145 goto out; in dns_gethostbyname_cb()
150 out: in dns_gethostbyname_cb()
307 goto out; in dns_server_gethostbyname_cb()
312 goto out; in dns_server_gethostbyname_cb()
317 goto out; in dns_server_gethostbyname_cb()
[all …]
H A Dregress_ssl.c641 bio_rwcount_read(BIO *b, char *out, int outlen) in bio_rwcount_read() argument
644 ev_ssize_t ret = recv(rw->fd, out, outlen, 0); in bio_rwcount_read()
816 struct evbuffer *out = bufferevent_get_output(bev); in wm_transfer() local
839 evbuffer_get_length(out), in wm_transfer()
842 evbuffer_add_buffer_reference(out, ctx->data); in wm_transfer()
H A Dinclude.am169 echo "No Python installed; stubbing out RPC test." >&2; \
/libevent-2.1.12/include/event2/
H A Dutil.h647 int evutil_parse_sockaddr_port(const char *str, struct sockaddr *out, int *outlen);
/libevent-2.1.12/m4/
H A Dax_prog_doxygen.m4463 rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \\
494 rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \\
H A Dacx_pthread.m49 # This macro figures out how to build C programs using POSIX threads.

12