ev 284 examples/VFS/skel_opaque.c void (*callback)(struct sys_notify_context *ctx, void *private_data, struct notify_event *ev),
ev 276 examples/VFS/skel_transparent.c void (*callback)(struct sys_notify_context *ctx, void *private_data, struct notify_event *ev),
ev 119 lib/async_req/async_req.c static void async_trigger(struct tevent_context *ev, struct tevent_timer *te,
ev 172 lib/async_req/async_req.c bool async_post_error(struct async_req *req, struct tevent_context *ev,
ev 177 lib/async_req/async_req.c if (tevent_add_timer(ev, req, tevent_timeval_zero(),
ev 226 lib/async_req/async_req.c static void async_req_immediate_trigger(struct tevent_context *ev,
ev 238 lib/async_req/async_req.c bool async_req_enqueue(struct async_req_queue *queue, struct tevent_context *ev,
ev 262 lib/async_req/async_req.c te = tevent_add_timer(ev, e, tevent_timeval_zero(),
ev 136 lib/async_req/async_req.h bool async_post_error(struct async_req *req, struct tevent_context *ev,
ev 147 lib/async_req/async_req.h struct tevent_context *ev,
ev 31 lib/async_req/async_req_ntstatus.c bool async_post_ntstatus(struct async_req *req, struct tevent_context *ev,
ev 34 lib/async_req/async_req_ntstatus.c return async_post_error(req, ev, NT_STATUS_V(status));
ev 28 lib/async_req/async_req_ntstatus.h bool async_post_ntstatus(struct async_req *req, struct tevent_context *ev,
ev 89 lib/async_req/async_sock.c static void async_send_handler(struct tevent_context *ev,
ev 94 lib/async_req/async_sock.c struct tevent_context *ev,
ev 111 lib/async_req/async_sock.c fde = tevent_add_fd(ev, state, fd, TEVENT_FD_WRITE, async_send_handler,
ev 120 lib/async_req/async_sock.c static void async_send_handler(struct tevent_context *ev,
ev 156 lib/async_req/async_sock.c static void async_recv_handler(struct tevent_context *ev,
ev 161 lib/async_req/async_sock.c struct tevent_context *ev,
ev 177 lib/async_req/async_sock.c fde = tevent_add_fd(ev, state, fd, TEVENT_FD_READ, async_recv_handler,
ev 186 lib/async_req/async_sock.c static void async_recv_handler(struct tevent_context *ev,
ev 222 lib/async_req/async_sock.c static void async_connect_connected(struct tevent_context *ev,
ev 240 lib/async_req/async_sock.c struct tevent_context *ev,
ev 291 lib/async_req/async_sock.c fde = tevent_add_fd(ev, state, fd, TEVENT_FD_READ | TEVENT_FD_WRITE,
ev 303 lib/async_req/async_sock.c return tevent_req_post(result, ev);
ev 314 lib/async_req/async_sock.c static void async_connect_connected(struct tevent_context *ev,
ev 375 lib/async_req/async_sock.c struct tevent_context *ev;
ev 383 lib/async_req/async_sock.c static void writev_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 386 lib/async_req/async_sock.c struct tevent_req *writev_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
ev 397 lib/async_req/async_sock.c state->ev = ev;
ev 407 lib/async_req/async_sock.c if (!tevent_queue_add(queue, ev, result, writev_trigger, NULL)) {
ev 421 lib/async_req/async_sock.c fde = tevent_add_fd(state->ev, state, state->fd, TEVENT_FD_WRITE,
ev 428 lib/async_req/async_sock.c static void writev_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 497 lib/async_req/async_sock.c static void read_packet_handler(struct tevent_context *ev,
ev 502 lib/async_req/async_sock.c struct tevent_context *ev,
ev 527 lib/async_req/async_sock.c fde = tevent_add_fd(ev, state, fd, TEVENT_FD_READ, read_packet_handler,
ev 538 lib/async_req/async_sock.c static void read_packet_handler(struct tevent_context *ev,
ev 29 lib/async_req/async_sock.h struct tevent_context *ev,
ev 35 lib/async_req/async_sock.h struct tevent_context *ev,
ev 40 lib/async_req/async_sock.h struct tevent_context *ev,
ev 45 lib/async_req/async_sock.h struct tevent_req *writev_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
ev 51 lib/async_req/async_sock.h struct tevent_context *ev,
ev 142 lib/tevent/tevent.c int tevent_common_context_destructor(struct tevent_context *ev)
ev 149 lib/tevent/tevent.c if (ev->pipe_fde) {
ev 150 lib/tevent/tevent.c talloc_free(ev->pipe_fde);
ev 151 lib/tevent/tevent.c close(ev->pipe_fds[0]);
ev 152 lib/tevent/tevent.c close(ev->pipe_fds[1]);
ev 153 lib/tevent/tevent.c ev->pipe_fde = NULL;
ev 156 lib/tevent/tevent.c for (fd = ev->fd_events; fd; fd = fn) {
ev 159 lib/tevent/tevent.c DLIST_REMOVE(ev->fd_events, fd);
ev 162 lib/tevent/tevent.c for (te = ev->timer_events; te; te = tn) {
ev 165 lib/tevent/tevent.c DLIST_REMOVE(ev->timer_events, te);
ev 168 lib/tevent/tevent.c for (ie = ev->immediate_events; ie; ie = in) {
ev 172 lib/tevent/tevent.c DLIST_REMOVE(ev->immediate_events, ie);
ev 175 lib/tevent/tevent.c for (se = ev->signal_events; se; se = sn) {
ev 178 lib/tevent/tevent.c DLIST_REMOVE(ev->signal_events, se);
ev 205 lib/tevent/tevent.c struct tevent_context *ev;
ev 208 lib/tevent/tevent.c ev = talloc_zero(mem_ctx, struct tevent_context);
ev 209 lib/tevent/tevent.c if (!ev) return NULL;
ev 211 lib/tevent/tevent.c talloc_set_destructor(ev, tevent_common_context_destructor);
ev 213 lib/tevent/tevent.c ev->ops = ops;
ev 215 lib/tevent/tevent.c ret = ev->ops->context_init(ev);
ev 217 lib/tevent/tevent.c talloc_free(ev);
ev 221 lib/tevent/tevent.c return ev;
ev 269 lib/tevent/tevent.c struct tevent_fd *_tevent_add_fd(struct tevent_context *ev,
ev 278 lib/tevent/tevent.c return ev->ops->add_fd(ev, mem_ctx, fd, flags, handler, private_data,
ev 293 lib/tevent/tevent.c static void tevent_fd_auto_close_fn(struct tevent_context *ev,
ev 326 lib/tevent/tevent.c bool tevent_signal_support(struct tevent_context *ev)
ev 328 lib/tevent/tevent.c if (ev->ops->add_signal) {
ev 341 lib/tevent/tevent.c static void tevent_abort(struct tevent_context *ev, const char *reason)
ev 343 lib/tevent/tevent.c tevent_debug(ev, TEVENT_DEBUG_FATAL,
ev 357 lib/tevent/tevent.c struct tevent_timer *_tevent_add_timer(struct tevent_context *ev,
ev 365 lib/tevent/tevent.c return ev->ops->add_timer(ev, mem_ctx, next_event, handler, private_data,
ev 400 lib/tevent/tevent.c struct tevent_context *ev,
ev 406 lib/tevent/tevent.c ev->ops->schedule_immediate(im, ev, handler, private_data,
ev 417 lib/tevent/tevent.c struct tevent_signal *_tevent_add_signal(struct tevent_context *ev,
ev 426 lib/tevent/tevent.c return ev->ops->add_signal(ev, mem_ctx, signum, sa_flags, handler, private_data,
ev 430 lib/tevent/tevent.c void tevent_loop_allow_nesting(struct tevent_context *ev)
ev 432 lib/tevent/tevent.c ev->nesting.allowed = true;
ev 435 lib/tevent/tevent.c void tevent_loop_set_nesting_hook(struct tevent_context *ev,
ev 439 lib/tevent/tevent.c if (ev->nesting.hook_fn &&
ev 440 lib/tevent/tevent.c (ev->nesting.hook_fn != hook ||
ev 441 lib/tevent/tevent.c ev->nesting.hook_private != private_data)) {
ev 445 lib/tevent/tevent.c tevent_abort(ev, "tevent: Violation of nesting hook rules\n");
ev 447 lib/tevent/tevent.c ev->nesting.hook_fn = hook;
ev 448 lib/tevent/tevent.c ev->nesting.hook_private = private_data;
ev 451 lib/tevent/tevent.c static void tevent_abort_nesting(struct tevent_context *ev, const char *location)
ev 461 lib/tevent/tevent.c tevent_abort(ev, reason);
ev 467 lib/tevent/tevent.c int _tevent_loop_once(struct tevent_context *ev, const char *location)
ev 472 lib/tevent/tevent.c ev->nesting.level++;
ev 474 lib/tevent/tevent.c if (ev->nesting.level > 1) {
ev 475 lib/tevent/tevent.c if (!ev->nesting.allowed) {
ev 476 lib/tevent/tevent.c tevent_abort_nesting(ev, location);
ev 481 lib/tevent/tevent.c if (ev->nesting.level > 0) {
ev 482 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
ev 484 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
ev 485 lib/tevent/tevent.c ev->nesting.hook_private,
ev 486 lib/tevent/tevent.c ev->nesting.level,
ev 497 lib/tevent/tevent.c ret = ev->ops->loop_once(ev, location);
ev 499 lib/tevent/tevent.c if (ev->nesting.level > 0) {
ev 500 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
ev 502 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
ev 503 lib/tevent/tevent.c ev->nesting.hook_private,
ev 504 lib/tevent/tevent.c ev->nesting.level,
ev 516 lib/tevent/tevent.c ev->nesting.level--;
ev 523 lib/tevent/tevent.c int _tevent_loop_until(struct tevent_context *ev,
ev 531 lib/tevent/tevent.c ev->nesting.level++;
ev 533 lib/tevent/tevent.c if (ev->nesting.level > 1) {
ev 534 lib/tevent/tevent.c if (!ev->nesting.allowed) {
ev 535 lib/tevent/tevent.c tevent_abort_nesting(ev, location);
ev 540 lib/tevent/tevent.c if (ev->nesting.level > 0) {
ev 541 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
ev 543 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
ev 544 lib/tevent/tevent.c ev->nesting.hook_private,
ev 545 lib/tevent/tevent.c ev->nesting.level,
ev 557 lib/tevent/tevent.c ret = ev->ops->loop_once(ev, location);
ev 563 lib/tevent/tevent.c if (ev->nesting.level > 0) {
ev 564 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
ev 566 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
ev 567 lib/tevent/tevent.c ev->nesting.hook_private,
ev 568 lib/tevent/tevent.c ev->nesting.level,
ev 580 lib/tevent/tevent.c ev->nesting.level--;
ev 587 lib/tevent/tevent.c int tevent_common_loop_wait(struct tevent_context *ev,
ev 593 lib/tevent/tevent.c while (ev->fd_events ||
ev 594 lib/tevent/tevent.c ev->timer_events ||
ev 595 lib/tevent/tevent.c ev->immediate_events ||
ev 596 lib/tevent/tevent.c ev->signal_events) {
ev 598 lib/tevent/tevent.c ret = _tevent_loop_once(ev, location);
ev 600 lib/tevent/tevent.c tevent_debug(ev, TEVENT_DEBUG_FATAL,
ev 607 lib/tevent/tevent.c tevent_debug(ev, TEVENT_DEBUG_WARNING,
ev 615 lib/tevent/tevent.c int _tevent_loop_wait(struct tevent_context *ev, const char *location)
ev 617 lib/tevent/tevent.c return ev->ops->loop_wait(ev, location);
ev 44 lib/tevent/tevent.h typedef void (*tevent_fd_handler_t)(struct tevent_context *ev,
ev 48 lib/tevent/tevent.h typedef void (*tevent_fd_close_fn_t)(struct tevent_context *ev,
ev 52 lib/tevent/tevent.h typedef void (*tevent_timer_handler_t)(struct tevent_context *ev,
ev 59 lib/tevent/tevent.h typedef void (*tevent_signal_handler_t)(struct tevent_context *ev,
ev 71 lib/tevent/tevent.h struct tevent_fd *_tevent_add_fd(struct tevent_context *ev,
ev 79 lib/tevent/tevent.h #define tevent_add_fd(ev, mem_ctx, fd, flags, handler, private_data) \
ev 80 lib/tevent/tevent.h _tevent_add_fd(ev, mem_ctx, fd, flags, handler, private_data, \
ev 83 lib/tevent/tevent.h struct tevent_timer *_tevent_add_timer(struct tevent_context *ev,
ev 90 lib/tevent/tevent.h #define tevent_add_timer(ev, mem_ctx, next_event, handler, private_data) \
ev 91 lib/tevent/tevent.h _tevent_add_timer(ev, mem_ctx, next_event, handler, private_data, \
ev 109 lib/tevent/tevent.h struct tevent_signal *_tevent_add_signal(struct tevent_context *ev,
ev 117 lib/tevent/tevent.h #define tevent_add_signal(ev, mem_ctx, signum, sa_flags, handler, private_data) \
ev 118 lib/tevent/tevent.h _tevent_add_signal(ev, mem_ctx, signum, sa_flags, handler, private_data, \
ev 121 lib/tevent/tevent.h int _tevent_loop_once(struct tevent_context *ev, const char *location);
ev 122 lib/tevent/tevent.h #define tevent_loop_once(ev) \
ev 123 lib/tevent/tevent.h _tevent_loop_once(ev, __location__) \
ev 125 lib/tevent/tevent.h int _tevent_loop_wait(struct tevent_context *ev, const char *location);
ev 126 lib/tevent/tevent.h #define tevent_loop_wait(ev) \
ev 127 lib/tevent/tevent.h _tevent_loop_wait(ev, __location__) \
ev 135 lib/tevent/tevent.h bool tevent_signal_support(struct tevent_context *ev);
ev 161 lib/tevent/tevent.h int tevent_set_debug(struct tevent_context *ev,
ev 167 lib/tevent/tevent.h int tevent_set_debug_stderr(struct tevent_context *ev);
ev 260 lib/tevent/tevent.h struct tevent_context *ev,
ev 285 lib/tevent/tevent.h struct tevent_context *ev);
ev 290 lib/tevent/tevent.h struct tevent_context *ev);
ev 299 lib/tevent/tevent.h struct tevent_context *ev,
ev 334 lib/tevent/tevent.h struct tevent_context *ev,
ev 343 lib/tevent/tevent.h typedef int (*tevent_nesting_hook)(struct tevent_context *ev,
ev 357 lib/tevent/tevent.h void tevent_loop_allow_nesting(struct tevent_context *ev) _DEPRECATED_;
ev 358 lib/tevent/tevent.h void tevent_loop_set_nesting_hook(struct tevent_context *ev,
ev 361 lib/tevent/tevent.h int _tevent_loop_until(struct tevent_context *ev,
ev 365 lib/tevent/tevent.h #define tevent_loop_until(ev, finished, private_data) \
ev 366 lib/tevent/tevent.h _tevent_loop_until(ev, finished, private_data, __location__)
ev 378 lib/tevent/tevent.h int (*context_init)(struct tevent_context *ev);
ev 381 lib/tevent/tevent.h struct tevent_fd *(*add_fd)(struct tevent_context *ev,
ev 394 lib/tevent/tevent.h struct tevent_timer *(*add_timer)(struct tevent_context *ev,
ev 404 lib/tevent/tevent.h struct tevent_context *ev,
ev 411 lib/tevent/tevent.h struct tevent_signal *(*add_signal)(struct tevent_context *ev,
ev 420 lib/tevent/tevent.h int (*loop_once)(struct tevent_context *ev, const char *location);
ev 421 lib/tevent/tevent.h int (*loop_wait)(struct tevent_context *ev, const char *location);
ev 457 lib/tevent/tevent.h #define event_add_fd(ev, mem_ctx, fd, flags, handler, private_data) \
ev 458 lib/tevent/tevent.h tevent_add_fd(ev, mem_ctx, fd, flags, handler, private_data)
ev 460 lib/tevent/tevent.h #define event_add_timed(ev, mem_ctx, next_event, handler, private_data) \
ev 461 lib/tevent/tevent.h tevent_add_timer(ev, mem_ctx, next_event, handler, private_data)
ev 463 lib/tevent/tevent.h #define event_add_signal(ev, mem_ctx, signum, sa_flags, handler, private_data) \
ev 464 lib/tevent/tevent.h tevent_add_signal(ev, mem_ctx, signum, sa_flags, handler, private_data)
ev 466 lib/tevent/tevent.h #define event_loop_once(ev) \
ev 467 lib/tevent/tevent.h tevent_loop_once(ev)
ev 469 lib/tevent/tevent.h #define event_loop_wait(ev) \
ev 470 lib/tevent/tevent.h tevent_loop_wait(ev)
ev 500 lib/tevent/tevent.h #define ev_set_debug(ev, debug, context) \
ev 501 lib/tevent/tevent.h tevent_set_debug(ev, debug, context)
ev 503 lib/tevent/tevent.h #define ev_set_debug_stderr(_ev) tevent_set_debug_stderr(ev)
ev 37 lib/tevent/tevent_debug.c int tevent_set_debug(struct tevent_context *ev,
ev 44 lib/tevent/tevent_debug.c ev->debug_ops.debug = debug;
ev 45 lib/tevent/tevent_debug.c ev->debug_ops.context = context;
ev 69 lib/tevent/tevent_debug.c int tevent_set_debug_stderr(struct tevent_context *ev)
ev 71 lib/tevent/tevent_debug.c return tevent_set_debug(ev, tevent_debug_stderr, ev);
ev 82 lib/tevent/tevent_debug.c void tevent_debug(struct tevent_context *ev, enum tevent_debug_level level,
ev 86 lib/tevent/tevent_debug.c if (!ev) {
ev 89 lib/tevent/tevent_debug.c if (ev->debug_ops.debug == NULL) {
ev 93 lib/tevent/tevent_debug.c ev->debug_ops.debug(ev->debug_ops.context, level, fmt, ap);
ev 36 lib/tevent/tevent_epoll.c struct tevent_context *ev;
ev 50 lib/tevent/tevent_epoll.c tevent_debug(epoll_ev->ev, TEVENT_DEBUG_FATAL,
ev 108 lib/tevent/tevent_epoll.c tevent_debug(epoll_ev->ev, TEVENT_DEBUG_FATAL,
ev 113 lib/tevent/tevent_epoll.c for (fde=epoll_ev->ev->fd_events;fde;fde=fde->next) {
ev 168 lib/tevent/tevent_epoll.c tevent_debug(epoll_ev->ev, TEVENT_DEBUG_FATAL,
ev 248 lib/tevent/tevent_epoll.c if (epoll_ev->ev->signal_events &&
ev 249 lib/tevent/tevent_epoll.c tevent_common_check_signal(epoll_ev->ev)) {
ev 255 lib/tevent/tevent_epoll.c if (ret == -1 && errno == EINTR && epoll_ev->ev->signal_events) {
ev 256 lib/tevent/tevent_epoll.c if (tevent_common_check_signal(epoll_ev->ev)) {
ev 268 lib/tevent/tevent_epoll.c tevent_common_loop_timer_delay(epoll_ev->ev);
ev 298 lib/tevent/tevent_epoll.c fde->handler(epoll_ev->ev, fde, flags, fde->private_data);
ev 309 lib/tevent/tevent_epoll.c static int epoll_event_context_init(struct tevent_context *ev)
ev 314 lib/tevent/tevent_epoll.c epoll_ev = talloc_zero(ev, struct epoll_event_context);
ev 316 lib/tevent/tevent_epoll.c epoll_ev->ev = ev;
ev 325 lib/tevent/tevent_epoll.c ev->additional_data = epoll_ev;
ev 334 lib/tevent/tevent_epoll.c struct tevent_context *ev = fde->event_ctx;
ev 337 lib/tevent/tevent_epoll.c if (ev) {
ev 338 lib/tevent/tevent_epoll.c epoll_ev = talloc_get_type(ev->additional_data,
ev 353 lib/tevent/tevent_epoll.c static struct tevent_fd *epoll_event_add_fd(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 360 lib/tevent/tevent_epoll.c struct epoll_event_context *epoll_ev = talloc_get_type(ev->additional_data,
ev 366 lib/tevent/tevent_epoll.c fde = tevent_common_add_fd(ev, mem_ctx, fd, flags,
ev 383 lib/tevent/tevent_epoll.c struct tevent_context *ev;
ev 388 lib/tevent/tevent_epoll.c ev = fde->event_ctx;
ev 389 lib/tevent/tevent_epoll.c epoll_ev = talloc_get_type(ev->additional_data, struct epoll_event_context);
ev 401 lib/tevent/tevent_epoll.c static int epoll_event_loop_once(struct tevent_context *ev, const char *location)
ev 403 lib/tevent/tevent_epoll.c struct epoll_event_context *epoll_ev = talloc_get_type(ev->additional_data,
ev 407 lib/tevent/tevent_epoll.c if (ev->signal_events &&
ev 408 lib/tevent/tevent_epoll.c tevent_common_check_signal(ev)) {
ev 412 lib/tevent/tevent_epoll.c if (ev->immediate_events &&
ev 413 lib/tevent/tevent_epoll.c tevent_common_loop_immediate(ev)) {
ev 417 lib/tevent/tevent_epoll.c tval = tevent_common_loop_timer_delay(ev);
ev 45 lib/tevent/tevent_fd.c struct tevent_fd *tevent_common_add_fd(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 54 lib/tevent/tevent_fd.c fde = talloc(mem_ctx?mem_ctx:ev, struct tevent_fd);
ev 57 lib/tevent/tevent_fd.c fde->event_ctx = ev;
ev 68 lib/tevent/tevent_fd.c DLIST_ADD(ev->fd_events, fde);
ev 71 lib/tevent/tevent_immediate.c struct tevent_context *ev,
ev 83 lib/tevent/tevent_immediate.c im->event_ctx = ev;
ev 91 lib/tevent/tevent_immediate.c DLIST_ADD_END(ev->immediate_events, im, struct tevent_immediate *);
ev 94 lib/tevent/tevent_immediate.c tevent_debug(ev, TEVENT_DEBUG_TRACE,
ev 103 lib/tevent/tevent_immediate.c bool tevent_common_loop_immediate(struct tevent_context *ev)
ev 105 lib/tevent/tevent_immediate.c struct tevent_immediate *im = ev->immediate_events;
ev 113 lib/tevent/tevent_immediate.c tevent_debug(ev, TEVENT_DEBUG_TRACE,
ev 135 lib/tevent/tevent_immediate.c handler(ev, im, private_data);
ev 219 lib/tevent/tevent_internal.h void tevent_debug(struct tevent_context *ev, enum tevent_debug_level level,
ev 258 lib/tevent/tevent_internal.h int tevent_common_context_destructor(struct tevent_context *ev);
ev 259 lib/tevent/tevent_internal.h int tevent_common_loop_wait(struct tevent_context *ev,
ev 263 lib/tevent/tevent_internal.h struct tevent_fd *tevent_common_add_fd(struct tevent_context *ev,
ev 276 lib/tevent/tevent_internal.h struct tevent_timer *tevent_common_add_timer(struct tevent_context *ev,
ev 286 lib/tevent/tevent_internal.h struct tevent_context *ev,
ev 291 lib/tevent/tevent_internal.h bool tevent_common_loop_immediate(struct tevent_context *ev);
ev 293 lib/tevent/tevent_internal.h struct tevent_signal *tevent_common_add_signal(struct tevent_context *ev,
ev 301 lib/tevent/tevent_internal.h int tevent_common_check_signal(struct tevent_context *ev);
ev 40 lib/tevent/tevent_liboop.c static int oop_event_context_destructor(struct tevent_context *ev)
ev 42 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 52 lib/tevent/tevent_liboop.c static int oop_event_context_init(struct tevent_context *ev, void *private_data)
ev 62 lib/tevent/tevent_liboop.c talloc_set_destructor(ev, oop_event_context_destructor);
ev 65 lib/tevent/tevent_liboop.c ev->additional_data = oop_sys;
ev 97 lib/tevent/tevent_liboop.c struct tevent_context *ev = fde->event_ctx;
ev 98 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 118 lib/tevent/tevent_liboop.c static struct tevent_fd *oop_event_add_fd(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 124 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 127 lib/tevent/tevent_liboop.c fde = talloc(mem_ctx?mem_ctx:ev, struct tevent_fd);
ev 130 lib/tevent/tevent_liboop.c fde->event_ctx = ev;
ev 208 lib/tevent/tevent_liboop.c struct tevent_context *ev = te->event_ctx;
ev 209 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 221 lib/tevent/tevent_liboop.c static struct tevent_timer *oop_event_add_timed(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 226 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 230 lib/tevent/tevent_liboop.c te = talloc(mem_ctx?mem_ctx:ev, struct tevent_timer);
ev 233 lib/tevent/tevent_liboop.c te->event_ctx = ev;
ev 249 lib/tevent/tevent_liboop.c static int oop_event_loop_once(struct tevent_context *ev)
ev 252 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 265 lib/tevent/tevent_liboop.c static int oop_event_loop_wait(struct tevent_context *ev)
ev 268 lib/tevent/tevent_liboop.c oop_source_sys *oop_sys = ev->additional_data;
ev 37 lib/tevent/tevent_queue.c struct tevent_context *ev;
ev 54 lib/tevent/tevent_queue.c static void tevent_queue_immediate_trigger(struct tevent_context *ev,
ev 82 lib/tevent/tevent_queue.c q->list->ev,
ev 132 lib/tevent/tevent_queue.c static void tevent_queue_immediate_trigger(struct tevent_context *ev,
ev 148 lib/tevent/tevent_queue.c struct tevent_context *ev,
ev 162 lib/tevent/tevent_queue.c e->ev = ev;
ev 179 lib/tevent/tevent_queue.c queue->list->ev,
ev 204 lib/tevent/tevent_queue.c queue->list->ev,
ev 226 lib/tevent/tevent_req.c static void tevent_req_trigger(struct tevent_context *ev,
ev 252 lib/tevent/tevent_req.c struct tevent_context *ev)
ev 255 lib/tevent/tevent_req.c ev, tevent_req_trigger, req);
ev 314 lib/tevent/tevent_req.c struct tevent_context *ev)
ev 319 lib/tevent/tevent_req.c ret = tevent_loop_once(ev);
ev 341 lib/tevent/tevent_req.c static void tevent_req_timedout(struct tevent_context *ev,
ev 355 lib/tevent/tevent_req.c struct tevent_context *ev,
ev 360 lib/tevent/tevent_req.c req->internal.timer = tevent_add_timer(ev, req, endtime,
ev 34 lib/tevent/tevent_select.c struct tevent_context *ev;
ev 46 lib/tevent/tevent_select.c static int select_event_context_init(struct tevent_context *ev)
ev 50 lib/tevent/tevent_select.c select_ev = talloc_zero(ev, struct select_event_context);
ev 52 lib/tevent/tevent_select.c select_ev->ev = ev;
ev 54 lib/tevent/tevent_select.c ev->additional_data = select_ev;
ev 66 lib/tevent/tevent_select.c for (fde = select_ev->ev->fd_events; fde; fde = fde->next) {
ev 84 lib/tevent/tevent_select.c struct tevent_context *ev = fde->event_ctx;
ev 87 lib/tevent/tevent_select.c if (ev) {
ev 88 lib/tevent/tevent_select.c select_ev = talloc_get_type(ev->additional_data,
ev 103 lib/tevent/tevent_select.c static struct tevent_fd *select_event_add_fd(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 110 lib/tevent/tevent_select.c struct select_event_context *select_ev = talloc_get_type(ev->additional_data,
ev 114 lib/tevent/tevent_select.c fde = tevent_common_add_fd(ev, mem_ctx, fd, flags,
ev 145 lib/tevent/tevent_select.c for (fde = select_ev->ev->fd_events; fde; fde = fde->next) {
ev 154 lib/tevent/tevent_select.c if (select_ev->ev->signal_events &&
ev 155 lib/tevent/tevent_select.c tevent_common_check_signal(select_ev->ev)) {
ev 162 lib/tevent/tevent_select.c select_ev->ev->signal_events) {
ev 163 lib/tevent/tevent_select.c tevent_common_check_signal(select_ev->ev);
ev 173 lib/tevent/tevent_select.c tevent_debug(select_ev->ev, TEVENT_DEBUG_FATAL,
ev 181 lib/tevent/tevent_select.c tevent_common_loop_timer_delay(select_ev->ev);
ev 189 lib/tevent/tevent_select.c for (fde = select_ev->ev->fd_events; fde; fde = fde->next) {
ev 195 lib/tevent/tevent_select.c fde->handler(select_ev->ev, fde, flags, fde->private_data);
ev 207 lib/tevent/tevent_select.c static int select_event_loop_once(struct tevent_context *ev, const char *location)
ev 209 lib/tevent/tevent_select.c struct select_event_context *select_ev = talloc_get_type(ev->additional_data,
ev 213 lib/tevent/tevent_select.c if (ev->signal_events &&
ev 214 lib/tevent/tevent_select.c tevent_common_check_signal(ev)) {
ev 218 lib/tevent/tevent_select.c if (ev->immediate_events &&
ev 219 lib/tevent/tevent_select.c tevent_common_loop_immediate(ev)) {
ev 223 lib/tevent/tevent_select.c tval = tevent_common_loop_timer_delay(ev);
ev 87 lib/tevent/tevent_signal.c struct tevent_context *ev = NULL;
ev 95 lib/tevent/tevent_signal.c if (sl->se->event_ctx && sl->se->event_ctx != ev) {
ev 96 lib/tevent/tevent_signal.c ev = sl->se->event_ctx;
ev 98 lib/tevent/tevent_signal.c res = write(ev->pipe_fds[1], &c, 1);
ev 179 lib/tevent/tevent_signal.c static void signal_pipe_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 192 lib/tevent/tevent_signal.c struct tevent_signal *tevent_common_add_signal(struct tevent_context *ev,
ev 219 lib/tevent/tevent_signal.c se = talloc(mem_ctx?mem_ctx:ev, struct tevent_signal);
ev 222 lib/tevent/tevent_signal.c se->event_ctx = ev;
ev 247 lib/tevent/tevent_signal.c if (ev->pipe_fde == NULL) {
ev 248 lib/tevent/tevent_signal.c if (pipe(ev->pipe_fds) == -1) {
ev 252 lib/tevent/tevent_signal.c ev_set_blocking(ev->pipe_fds[0], false);
ev 253 lib/tevent/tevent_signal.c ev_set_blocking(ev->pipe_fds[1], false);
ev 254 lib/tevent/tevent_signal.c ev->pipe_fde = tevent_add_fd(ev, ev, ev->pipe_fds[0],
ev 257 lib/tevent/tevent_signal.c if (!ev->pipe_fde) {
ev 258 lib/tevent/tevent_signal.c close(ev->pipe_fds[0]);
ev 259 lib/tevent/tevent_signal.c close(ev->pipe_fds[1]);
ev 315 lib/tevent/tevent_signal.c int tevent_common_check_signal(struct tevent_context *ev)
ev 352 lib/tevent/tevent_signal.c se->handler(ev, se, i, 1,
ev 362 lib/tevent/tevent_signal.c se->handler(ev, se, i, count, NULL, se->private_data);
ev 43 lib/tevent/tevent_standard.c struct tevent_context *ev;
ev 66 lib/tevent/tevent_standard.c tevent_debug(std_ev->ev, TEVENT_DEBUG_FATAL,
ev 125 lib/tevent/tevent_standard.c tevent_debug(std_ev->ev, TEVENT_DEBUG_FATAL,
ev 130 lib/tevent/tevent_standard.c for (fde=std_ev->ev->fd_events;fde;fde=fde->next) {
ev 259 lib/tevent/tevent_standard.c if (std_ev->ev->signal_events &&
ev 260 lib/tevent/tevent_standard.c tevent_common_check_signal(std_ev->ev)) {
ev 266 lib/tevent/tevent_standard.c if (ret == -1 && errno == EINTR && std_ev->ev->signal_events) {
ev 267 lib/tevent/tevent_standard.c if (tevent_common_check_signal(std_ev->ev)) {
ev 279 lib/tevent/tevent_standard.c tevent_common_loop_timer_delay(std_ev->ev);
ev 309 lib/tevent/tevent_standard.c fde->handler(std_ev->ev, fde, flags, fde->private_data);
ev 328 lib/tevent/tevent_standard.c static int std_event_context_init(struct tevent_context *ev)
ev 332 lib/tevent/tevent_standard.c std_ev = talloc_zero(ev, struct std_event_context);
ev 334 lib/tevent/tevent_standard.c std_ev->ev = ev;
ev 339 lib/tevent/tevent_standard.c ev->additional_data = std_ev;
ev 351 lib/tevent/tevent_standard.c for (fde = std_ev->ev->fd_events; fde; fde = fde->next) {
ev 369 lib/tevent/tevent_standard.c struct tevent_context *ev = fde->event_ctx;
ev 372 lib/tevent/tevent_standard.c if (ev) {
ev 373 lib/tevent/tevent_standard.c std_ev = talloc_get_type(ev->additional_data,
ev 392 lib/tevent/tevent_standard.c static struct tevent_fd *std_event_add_fd(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 399 lib/tevent/tevent_standard.c struct std_event_context *std_ev = talloc_get_type(ev->additional_data,
ev 405 lib/tevent/tevent_standard.c fde = tevent_common_add_fd(ev, mem_ctx, fd, flags,
ev 426 lib/tevent/tevent_standard.c struct tevent_context *ev;
ev 431 lib/tevent/tevent_standard.c ev = fde->event_ctx;
ev 432 lib/tevent/tevent_standard.c std_ev = talloc_get_type(ev->additional_data, struct std_event_context);
ev 459 lib/tevent/tevent_standard.c for (fde = std_ev->ev->fd_events; fde; fde = fde->next) {
ev 468 lib/tevent/tevent_standard.c if (std_ev->ev->signal_events &&
ev 469 lib/tevent/tevent_standard.c tevent_common_check_signal(std_ev->ev)) {
ev 476 lib/tevent/tevent_standard.c std_ev->ev->signal_events) {
ev 477 lib/tevent/tevent_standard.c tevent_common_check_signal(std_ev->ev);
ev 487 lib/tevent/tevent_standard.c tevent_debug(std_ev->ev, TEVENT_DEBUG_FATAL,
ev 495 lib/tevent/tevent_standard.c tevent_common_loop_timer_delay(std_ev->ev);
ev 503 lib/tevent/tevent_standard.c for (fde = std_ev->ev->fd_events; fde; fde = fde->next) {
ev 509 lib/tevent/tevent_standard.c fde->handler(std_ev->ev, fde, flags, fde->private_data);
ev 521 lib/tevent/tevent_standard.c static int std_event_loop_once(struct tevent_context *ev, const char *location)
ev 523 lib/tevent/tevent_standard.c struct std_event_context *std_ev = talloc_get_type(ev->additional_data,
ev 527 lib/tevent/tevent_standard.c if (ev->signal_events &&
ev 528 lib/tevent/tevent_standard.c tevent_common_check_signal(ev)) {
ev 532 lib/tevent/tevent_standard.c if (ev->immediate_events &&
ev 533 lib/tevent/tevent_standard.c tevent_common_loop_immediate(ev)) {
ev 537 lib/tevent/tevent_standard.c tval = tevent_common_loop_timer_delay(ev);
ev 156 lib/tevent/tevent_timed.c struct tevent_timer *tevent_common_add_timer(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
ev 165 lib/tevent/tevent_timed.c te = talloc(mem_ctx?mem_ctx:ev, struct tevent_timer);
ev 168 lib/tevent/tevent_timed.c te->event_ctx = ev;
ev 178 lib/tevent/tevent_timed.c for (cur_te = ev->timer_events; cur_te; cur_te = cur_te->next) {
ev 187 lib/tevent/tevent_timed.c DLIST_ADD_AFTER(ev->timer_events, te, last_te);
ev 191 lib/tevent/tevent_timed.c tevent_debug(ev, TEVENT_DEBUG_TRACE,
ev 203 lib/tevent/tevent_timed.c struct timeval tevent_common_loop_timer_delay(struct tevent_context *ev)
ev 206 lib/tevent/tevent_timed.c struct tevent_timer *te = ev->timer_events;
ev 245 lib/tevent/tevent_timed.c DLIST_REMOVE(ev->timer_events, te);
ev 254 lib/tevent/tevent_timed.c te->handler(ev, te, current_time, te->private_data);
ev 35 lib/tevent/tevent_wakeup.c struct tevent_context *ev,
ev 48 lib/tevent/tevent_wakeup.c if (!tevent_req_set_endtime(req, ev, wakeup_time)) {
ev 54 lib/tevent/tevent_wakeup.c return tevent_req_post(req, ev);
ev 52 lib/torture/torture.c torture->ev = event_ctx;
ev 69 lib/torture/torture.c subtorture->ev = talloc_reference(subtorture, parent->ev);
ev 93 lib/torture/torture.h struct tevent_context *ev;
ev 117 libcli/nbt/nbtsocket.c static void nbt_name_socket_timeout(struct tevent_context *ev, struct tevent_timer *te,
ev 316 libcli/nbt/nbtsocket.c static void nbt_name_socket_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 47 libcli/nbt/pynbt.c struct tevent_context *ev;
ev 54 libcli/nbt/pynbt.c ev = s4_event_context_init(ret->mem_ctx);
ev 55 libcli/nbt/pynbt.c ret->socket = nbt_name_socket_init(ret->mem_ctx, ev, py_iconv_convenience(ret->mem_ctx));
ev 184 libcli/nbt/tools/nmblookup.c static bool process_one(struct loadparm_context *lp_ctx, struct tevent_context *ev,
ev 215 libcli/nbt/tools/nmblookup.c nbtsock = nbt_name_socket_init(tmp_ctx, ev, lp_iconv_convenience(lp_ctx));
ev 275 libcli/nbt/tools/nmblookup.c struct tevent_context *ev;
ev 362 libcli/nbt/tools/nmblookup.c ev = s4_event_context_init(talloc_autofree_context());
ev 367 libcli/nbt/tools/nmblookup.c ret &= process_one(cmdline_lp_ctx, ev, ifaces, name, lp_nbt_port(cmdline_lp_ctx));
ev 370 libcli/nbt/tools/nmblookup.c talloc_free(ev);
ev 121 source3/include/async_smb.h struct event_context *ev,
ev 131 source3/include/async_smb.h bool cli_chain_cork(struct cli_state *cli, struct event_context *ev,
ev 77 source3/include/client.h struct event_context *ev,
ev 89 source3/include/client.h struct event_context *ev,
ev 104 source3/include/client.h struct event_context *ev,
ev 41 source3/include/event.h void event_context_reinit(struct event_context *ev);
ev 125 source3/include/messages.h struct event_context *ev);
ev 1406 source3/include/proto.h struct event_context *ev,
ev 1412 source3/include/proto.h struct event_context *ev,
ev 2284 source3/include/proto.h struct cli_credentials *credentials, struct event_context *ev,
ev 2299 source3/include/proto.h struct event_context *ev,
ev 2304 source3/include/proto.h struct event_context *ev,
ev 2315 source3/include/proto.h struct event_context *ev,
ev 2435 source3/include/proto.h struct async_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 2480 source3/include/proto.h struct event_context *ev,
ev 2504 source3/include/proto.h struct async_req *cli_open_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 2509 source3/include/proto.h struct async_req *cli_close_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 2753 source3/include/proto.h struct event_context *ev,
ev 2759 source3/include/proto.h struct event_context *ev,
ev 2780 source3/include/proto.h struct event_context *ev,
ev 2786 source3/include/proto.h struct async_req *cli_push_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 2881 source3/include/proto.h TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 5257 source3/include/proto.h struct event_context *ev,
ev 5268 source3/include/proto.h struct event_context *ev,
ev 5372 source3/include/proto.h struct event_context *ev,
ev 5387 source3/include/proto.h struct event_context *ev,
ev 5403 source3/include/proto.h struct event_context *ev,
ev 5911 source3/include/proto.h struct tevent_req *np_write_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 5915 source3/include/proto.h struct tevent_req *np_read_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 6308 source3/include/proto.h bool smbd_setup_mdns_registration(struct tevent_context *ev,
ev 6545 source3/include/proto.h struct event_context *ev);
ev 6550 source3/include/proto.h struct notify_event *ev),
ev 6559 source3/include/proto.h struct notify_event *ev),
ev 6567 source3/include/proto.h struct event_context *ev,
ev 7272 source3/include/proto.h struct tevent_context *ev);
ev 7276 source3/include/proto.h void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
ev 391 source3/include/smb.h struct event_context *ev;
ev 386 source3/include/vfs.h struct notify_event *ev),
ev 28 source3/include/wbc_async.h struct tevent_context *ev,
ev 42 source3/include/wbc_async.h struct tevent_context *ev,
ev 48 source3/include/wbc_async.h struct tevent_context *ev,
ev 54 source3/include/wbc_async.h struct tevent_context *ev, int fd);
ev 59 source3/include/wbc_async.h struct tevent_context *ev,
ev 25 source3/lib/avahi.c struct tevent_context *ev;
ev 52 source3/lib/avahi.c static void avahi_fd_handler(struct tevent_context *ev,
ev 79 source3/lib/avahi.c watch_ctx->fde = tevent_add_fd(ctx->ev, watch_ctx, fd,
ev 96 source3/lib/avahi.c static void avahi_fd_handler(struct tevent_context *ev,
ev 144 source3/lib/avahi.c static void avahi_timeout_handler(struct tevent_context *ev,
ev 176 source3/lib/avahi.c timeout_ctx->te = tevent_add_timer(ctx->ev, timeout_ctx,
ev 194 source3/lib/avahi.c static void avahi_timeout_handler(struct tevent_context *ev,
ev 217 source3/lib/avahi.c t->te = tevent_add_timer(t->ctx->ev, t, *tv, avahi_timeout_handler, t);
ev 249 source3/lib/avahi.c struct tevent_context *ev)
ev 263 source3/lib/avahi.c ctx->ev = ev;
ev 48 source3/lib/events.c bool event_add_to_select_args(struct tevent_context *ev,
ev 57 source3/lib/events.c for (fde = ev->fd_events; fde; fde = fde->next) {
ev 73 source3/lib/events.c if (ev->timer_events == NULL) {
ev 77 source3/lib/events.c diff = timeval_until(now, &ev->timer_events->next_event);
ev 83 source3/lib/events.c bool run_events(struct tevent_context *ev,
ev 89 source3/lib/events.c if (ev->signal_events &&
ev 90 source3/lib/events.c tevent_common_check_signal(ev)) {
ev 94 source3/lib/events.c if (ev->immediate_events &&
ev 95 source3/lib/events.c tevent_common_loop_immediate(ev)) {
ev 101 source3/lib/events.c if ((ev->timer_events != NULL)
ev 102 source3/lib/events.c && (timeval_compare(&now, &ev->timer_events->next_event) >= 0)) {
ev 105 source3/lib/events.c ev->timer_events->handler_name, ev->timer_events));
ev 107 source3/lib/events.c ev->timer_events->handler(ev, ev->timer_events, now,
ev 108 source3/lib/events.c ev->timer_events->private_data);
ev 119 source3/lib/events.c for (fde = ev->fd_events; fde; fde = fde->next) {
ev 126 source3/lib/events.c fde->handler(ev, fde, flags, fde->private_data);
ev 135 source3/lib/events.c struct timeval *get_timed_events_timeout(struct tevent_context *ev,
ev 140 source3/lib/events.c if (ev->timer_events == NULL) {
ev 145 source3/lib/events.c *to_ret = timeval_until(&now, &ev->timer_events->next_event);
ev 153 source3/lib/events.c static int s3_event_loop_once(struct tevent_context *ev, const char *location)
ev 166 source3/lib/events.c if (run_events(ev, 0, NULL, NULL)) {
ev 172 source3/lib/events.c if (!event_add_to_select_args(ev, &now, &r_fds, &w_fds, &to, &maxfd)) {
ev 179 source3/lib/events.c tevent_debug(ev, TEVENT_DEBUG_FATAL,
ev 185 source3/lib/events.c run_events(ev, ret, &r_fds, &w_fds);
ev 189 source3/lib/events.c void event_context_reinit(struct tevent_context *ev)
ev 191 source3/lib/events.c tevent_common_context_destructor(ev);
ev 195 source3/lib/events.c static int s3_event_context_init(struct tevent_context *ev)
ev 200 source3/lib/events.c void dump_event_list(struct tevent_context *ev)
ev 206 source3/lib/events.c if (!ev) {
ev 214 source3/lib/events.c for (te = ev->timer_events; te; te = te->next) {
ev 225 source3/lib/events.c for (fe = ev->fd_events; fe; fe = fe->next) {
ev 293 source3/lib/events.c struct tevent_context *ev;
ev 297 source3/lib/events.c ev = tevent_context_init_byname(mem_ctx, "s3");
ev 298 source3/lib/events.c if (ev) {
ev 299 source3/lib/events.c tevent_set_debug(ev, s3_event_debug, NULL);
ev 302 source3/lib/events.c return ev;
ev 134 source3/lib/ldb/ldb_ildap/ldb_ildap.c static void ildb_request_timeout(struct event_context *ev, struct timed_event *te,
ev 188 source3/lib/messages.c struct event_context *ev)
ev 198 source3/lib/messages.c ctx->event_ctx = ev;
ev 45 source3/lib/messages_ctdbd.c struct event_context *ev;
ev 48 source3/lib/messages_ctdbd.c ev = event_context_init(NULL);
ev 49 source3/lib/messages_ctdbd.c if (!ev) {
ev 53 source3/lib/messages_ctdbd.c msg = messaging_init(NULL, procid_self(), ev);
ev 957 source3/lib/util_sock.c struct event_context *ev;
ev 979 source3/lib/util_sock.c struct event_context *ev,
ev 994 source3/lib/util_sock.c state->ev = ev;
ev 1008 source3/lib/util_sock.c result, ev, timeval_current_ofs(0, timeout*1000))) {
ev 1035 source3/lib/util_sock.c subreq = async_connect_send(state, state->ev, state->fd,
ev 1040 source3/lib/util_sock.c subreq, state->ev,
ev 1049 source3/lib/util_sock.c return tevent_req_post(result, ev);
ev 1087 source3/lib/util_sock.c subreq = async_connect_send(state, state->ev, state->fd,
ev 1094 source3/lib/util_sock.c subreq, state->ev,
ev 1132 source3/lib/util_sock.c struct event_context *ev;
ev 1136 source3/lib/util_sock.c ev = event_context_init(frame);
ev 1137 source3/lib/util_sock.c if (ev == NULL) {
ev 1141 source3/lib/util_sock.c req = open_socket_out_send(frame, ev, pss, port, timeout);
ev 1145 source3/lib/util_sock.c if (!tevent_req_poll(req, ev)) {
ev 1156 source3/lib/util_sock.c struct event_context *ev;
ev 1167 source3/lib/util_sock.c struct event_context *ev,
ev 1181 source3/lib/util_sock.c state->ev = ev;
ev 1187 source3/lib/util_sock.c state, ev,
ev 1214 source3/lib/util_sock.c subreq = open_socket_out_send(state, state->ev, &state->ss,
ev 88 source3/lib/wb_reqtrans.c struct tevent_context *ev,
ev 100 source3/lib/wb_reqtrans.c subreq = read_packet_send(state, ev, fd, 4, wb_req_more, state);
ev 188 source3/lib/wb_reqtrans.c struct tevent_context *ev,
ev 210 source3/lib/wb_reqtrans.c subreq = writev_send(state, ev, queue, fd, state->iov, count);
ev 251 source3/lib/wb_reqtrans.c struct tevent_context *ev, int fd)
ev 261 source3/lib/wb_reqtrans.c subreq = read_packet_send(state, ev, fd, 4, wb_resp_more, state);
ev 338 source3/lib/wb_reqtrans.c struct tevent_context *ev,
ev 361 source3/lib/wb_reqtrans.c subreq = writev_send(state, ev, queue, fd, state->iov, count);
ev 163 source3/lib/wbclient.c struct tevent_context *ev,
ev 226 source3/lib/wbclient.c subreq = async_connect_send(mem_ctx, ev, wb_ctx->fd,
ev 234 source3/lib/wbclient.c if (!tevent_req_set_endtime(subreq, ev, timeval_current_ofs(30, 0))) {
ev 242 source3/lib/wbclient.c return tevent_req_post(result, ev);
ev 269 source3/lib/wbclient.c struct tevent_context *ev;
ev 279 source3/lib/wbclient.c struct tevent_context *ev,
ev 294 source3/lib/wbclient.c return tevent_req_post(result, ev);
ev 297 source3/lib/wbclient.c state->ev = ev;
ev 303 source3/lib/wbclient.c subreq = wb_req_write_send(state, state->ev, queue, state->fd,
ev 332 source3/lib/wbclient.c subreq = wb_resp_read_send(state, state->ev, state->fd);
ev 389 source3/lib/wbclient.c struct tevent_context *ev;
ev 400 source3/lib/wbclient.c struct tevent_context *ev,
ev 412 source3/lib/wbclient.c state->ev = ev;
ev 420 source3/lib/wbclient.c subreq = wb_connect_send(state, ev, wb_ctx, winbindd_socket_dir());
ev 452 source3/lib/wbclient.c subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
ev 483 source3/lib/wbclient.c subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
ev 510 source3/lib/wbclient.c subreq = wb_connect_send(state, state->ev, state->wb_ctx,
ev 545 source3/lib/wbclient.c struct tevent_context *ev;
ev 557 source3/lib/wbclient.c struct tevent_context *ev,
ev 569 source3/lib/wbclient.c state->ev = ev;
ev 575 source3/lib/wbclient.c subreq = wb_open_pipe_send(state, ev, wb_ctx, need_priv);
ev 583 source3/lib/wbclient.c subreq = wb_int_trans_send(state, ev, wb_ctx->queue, wb_ctx->fd,
ev 629 source3/lib/wbclient.c subreq = tevent_wakeup_send(state, state->ev,
ev 653 source3/lib/wbclient.c subreq = wb_open_pipe_send(state, state->ev, state->wb_ctx,
ev 676 source3/lib/wbclient.c subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
ev 133 source3/librpc/rpc/dcerpc.c struct cli_credentials *credentials, struct event_context *ev,
ev 389 source3/libsmb/async_smb.c struct event_context *ev,
ev 477 source3/libsmb/async_smb.c bool cli_chain_cork(struct cli_state *cli, struct event_context *ev,
ev 492 source3/libsmb/async_smb.c cli->fd_event = event_add_fd(ev, cli, cli->fd,
ev 522 source3/libsmb/async_smb.c req->timer = event_add_timed(ev, req, endtime, request_timeout_handler, req);
ev 617 source3/libsmb/async_smb.c struct event_context *ev,
ev 629 source3/libsmb/async_smb.c if (!cli_chain_cork(cli, ev,
ev 637 source3/libsmb/async_smb.c result = cli_request_chain(mem_ctx, ev, cli, smb_command,
ev 169 source3/libsmb/cliconnect.c struct event_context *ev,
ev 202 source3/libsmb/cliconnect.c result = cli_request_send(mem_ctx, ev, cli, SMBsesssetupX, 0,
ev 255 source3/libsmb/cliconnect.c struct event_context *ev;
ev 267 source3/libsmb/cliconnect.c ev = event_context_init(frame);
ev 268 source3/libsmb/cliconnect.c if (ev == NULL) {
ev 273 source3/libsmb/cliconnect.c req = cli_session_setup_guest_send(frame, ev, cli);
ev 280 source3/libsmb/cliconnect.c event_loop_once(ev);
ev 1228 source3/libsmb/cliconnect.c struct event_context *ev,
ev 1334 source3/libsmb/cliconnect.c result = cli_request_send(mem_ctx, ev, cli, SMBtconX, 0,
ev 1346 source3/libsmb/cliconnect.c if (async_post_ntstatus(result, ev, NT_STATUS_ACCESS_DENIED)) {
ev 1402 source3/libsmb/cliconnect.c struct event_context *ev;
ev 1414 source3/libsmb/cliconnect.c ev = event_context_init(frame);
ev 1415 source3/libsmb/cliconnect.c if (ev == NULL) {
ev 1420 source3/libsmb/cliconnect.c req = cli_tcon_andx_send(frame, ev, cli, share, dev, pass, passlen);
ev 1427 source3/libsmb/cliconnect.c event_loop_once(ev);
ev 1500 source3/libsmb/cliconnect.c struct event_context *ev,
ev 1530 source3/libsmb/cliconnect.c result = cli_request_send(mem_ctx, ev, cli, SMBnegprot, 0, 0, NULL, 0,
ev 1664 source3/libsmb/cliconnect.c struct event_context *ev;
ev 1676 source3/libsmb/cliconnect.c ev = event_context_init(frame);
ev 1677 source3/libsmb/cliconnect.c if (ev == NULL) {
ev 1681 source3/libsmb/cliconnect.c req = cli_negprot_send(frame, ev, cli);
ev 1687 source3/libsmb/cliconnect.c event_loop_once(ev);
ev 1831 source3/libsmb/cliconnect.c struct event_context *ev;
ev 1840 source3/libsmb/cliconnect.c ev = event_context_init(talloc_tos());
ev 1841 source3/libsmb/cliconnect.c if (ev == NULL) {
ev 1845 source3/libsmb/cliconnect.c fd139 = talloc(ev, struct fd_struct);
ev 1851 source3/libsmb/cliconnect.c fd445 = talloc(ev, struct fd_struct);
ev 1857 source3/libsmb/cliconnect.c r445 = open_socket_out_defer_send(ev, ev, timeval_set(0, 0),
ev 1859 source3/libsmb/cliconnect.c r139 = open_socket_out_defer_send(ev, ev, timeval_set(0, 3000),
ev 1870 source3/libsmb/cliconnect.c event_loop_once(ev);
ev 1893 source3/libsmb/cliconnect.c TALLOC_FREE(ev);
ev 761 source3/libsmb/clientgen.c struct async_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 777 source3/libsmb/clientgen.c result = cli_request_send(mem_ctx, ev, cli, SMBecho, 0, 1, vwv, 0,
ev 820 source3/libsmb/clientgen.c struct event_context *ev;
ev 832 source3/libsmb/clientgen.c ev = event_context_init(frame);
ev 833 source3/libsmb/clientgen.c if (ev == NULL) {
ev 837 source3/libsmb/clientgen.c req = cli_echo_send(frame, ev, cli, num_echos, data);
ev 843 source3/libsmb/clientgen.c event_loop_once(ev);
ev 775 source3/libsmb/clifile.c struct event_context *ev,
ev 825 source3/libsmb/clifile.c result = cli_request_send(mem_ctx, ev, cli, SMBntcreateX, 0,
ev 869 source3/libsmb/clifile.c struct event_context *ev;
ev 881 source3/libsmb/clifile.c ev = event_context_init(frame);
ev 882 source3/libsmb/clifile.c if (ev == NULL) {
ev 887 source3/libsmb/clifile.c req = cli_ntcreate_send(frame, ev, cli, fname, CreatFlags,
ev 897 source3/libsmb/clifile.c event_loop_once(ev);
ev 971 source3/libsmb/clifile.c struct async_req *cli_open_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 1038 source3/libsmb/clifile.c result = cli_request_send(mem_ctx, ev, cli, SMBopenX, additional_flags,
ev 1074 source3/libsmb/clifile.c struct event_context *ev;
ev 1086 source3/libsmb/clifile.c ev = event_context_init(frame);
ev 1087 source3/libsmb/clifile.c if (ev == NULL) {
ev 1091 source3/libsmb/clifile.c req = cli_open_send(frame, ev, cli, fname, flags, share_mode);
ev 1097 source3/libsmb/clifile.c event_loop_once(ev);
ev 1110 source3/libsmb/clifile.c struct async_req *cli_close_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 1118 source3/libsmb/clifile.c return cli_request_send(mem_ctx, ev, cli, SMBclose, 0, 3, vwv, 0,
ev 1140 source3/libsmb/clifile.c struct event_context *ev;
ev 1152 source3/libsmb/clifile.c ev = event_context_init(frame);
ev 1153 source3/libsmb/clifile.c if (ev == NULL) {
ev 1157 source3/libsmb/clifile.c req = cli_close_send(frame, ev, cli, fnum);
ev 1163 source3/libsmb/clifile.c event_loop_once(ev);
ev 79 source3/libsmb/clireadwrite.c struct event_context *ev,
ev 115 source3/libsmb/clireadwrite.c result = cli_request_send(mem_ctx, ev, cli, SMBreadX, 0, wct, vwv, 0,
ev 199 source3/libsmb/clireadwrite.c struct tevent_context *ev;
ev 211 source3/libsmb/clireadwrite.c struct event_context *ev,
ev 223 source3/libsmb/clireadwrite.c state->ev = ev;
ev 231 source3/libsmb/clireadwrite.c subreq = cli_read_andx_send(state, ev, cli, fnum, offset, size);
ev 296 source3/libsmb/clireadwrite.c subreq = cli_read_andx_send(state, state->ev, state->cli, state->fnum,
ev 338 source3/libsmb/clireadwrite.c struct event_context *ev;
ev 398 source3/libsmb/clireadwrite.c struct event_context *ev,
ev 418 source3/libsmb/clireadwrite.c state->ev = ev;
ev 429 source3/libsmb/clireadwrite.c if (!async_post_ntstatus(result, ev, NT_STATUS_OK)) {
ev 462 source3/libsmb/clireadwrite.c state->reqs, ev, cli, fnum,
ev 569 source3/libsmb/clireadwrite.c state->reqs, state->ev, state->cli,
ev 610 source3/libsmb/clireadwrite.c struct event_context *ev;
ev 621 source3/libsmb/clireadwrite.c ev = event_context_init(frame);
ev 622 source3/libsmb/clireadwrite.c if (ev == NULL) {
ev 626 source3/libsmb/clireadwrite.c req = cli_pull_send(frame, ev, cli, fnum, start_offset, size,
ev 633 source3/libsmb/clireadwrite.c event_loop_once(ev);
ev 887 source3/libsmb/clireadwrite.c struct event_context *ev,
ev 921 source3/libsmb/clireadwrite.c return cli_request_send(mem_ctx, ev, cli, SMBwriteX, 0, wct, vwv,
ev 956 source3/libsmb/clireadwrite.c struct event_context *ev;
ev 969 source3/libsmb/clireadwrite.c struct event_context *ev,
ev 984 source3/libsmb/clireadwrite.c state->ev = ev;
ev 993 source3/libsmb/clireadwrite.c subreq = cli_write_andx_send(state, state->ev, state->cli, state->fnum,
ev 1039 source3/libsmb/clireadwrite.c subreq = cli_write_andx_send(state, state->ev, state->cli, state->fnum,
ev 1066 source3/libsmb/clireadwrite.c struct event_context *ev;
ev 1121 source3/libsmb/clireadwrite.c state->ev, state->cli,
ev 1140 source3/libsmb/clireadwrite.c struct async_req *cli_push_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 1157 source3/libsmb/clireadwrite.c state->ev = ev;
ev 1196 source3/libsmb/clireadwrite.c if (!async_post_ntstatus(req, ev, NT_STATUS_OK)) {
ev 1254 source3/libsmb/clireadwrite.c struct event_context *ev;
ev 1265 source3/libsmb/clireadwrite.c ev = event_context_init(frame);
ev 1266 source3/libsmb/clireadwrite.c if (ev == NULL) {
ev 1270 source3/libsmb/clireadwrite.c req = cli_push_send(frame, ev, cli, fnum, mode, start_offset,
ev 1277 source3/libsmb/clireadwrite.c event_loop_once(ev);
ev 696 source3/libsmb/clitrans.c struct event_context *ev;
ev 913 source3/libsmb/clitrans.c result = cli_request_send(mem_ctx, state->ev, state->cli,
ev 928 source3/libsmb/clitrans.c if (!cli_chain_cork(state->cli, state->ev,
ev 932 source3/libsmb/clitrans.c result = cli_request_send(mem_ctx, state->ev, state->cli, cmd,
ev 1183 source3/libsmb/clitrans.c TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 1221 source3/libsmb/clitrans.c state->ev = ev;
ev 1354 source3/libsmb/clitrans.c struct event_context *ev;
ev 1366 source3/libsmb/clitrans.c ev = event_context_init(frame);
ev 1367 source3/libsmb/clitrans.c if (ev == NULL) {
ev 1371 source3/libsmb/clitrans.c req = cli_trans_send(frame, ev, cli, trans_cmd,
ev 1381 source3/libsmb/clitrans.c event_loop_once(ev);
ev 122 source3/modules/onefs.h struct notify_event *ev),
ev 189 source3/modules/onefs_cbrl.c static void onefs_cbrl_events_handler(struct event_context *ev,
ev 59 source3/modules/onefs_notify.c struct notify_event *ev);
ev 463 source3/modules/onefs_notify.c onefs_notify_handler(struct event_context *ev,
ev 545 source3/modules/onefs_notify.c struct notify_event *ev),
ev 665 source3/modules/onefs_notify.c event_add_fd(ctx->ev, wc, wc->ifs_event_fd, EVENT_FD_READ,
ev 1062 source3/modules/vfs_default.c struct notify_event *ev),
ev 207 source3/modules/vfs_full_audit.c struct notify_event *ev),
ev 1654 source3/modules/vfs_full_audit.c struct notify_event *ev),
ev 53 source3/modules/vfs_notify_fam.c struct notify_event *ev);
ev 210 source3/modules/vfs_notify_fam.c struct notify_event *ev),
ev 226 source3/modules/vfs_notify_fam.c ctx->ev))) {
ev 276 source3/modules/vfs_notify_fam.c fam_reopen(watch->fam_connection, ctx->ev, fam_notify_list);
ev 107 source3/modules/vfs_preopen.c static void preopen_helper_readable(struct event_context *ev,
ev 90 source3/nmbd/nmbd.c static void nmbd_sig_term_handler(struct tevent_context *ev,
ev 123 source3/nmbd/nmbd.c static void nmbd_sig_hup_handler(struct tevent_context *ev,
ev 1390 source3/printing/printing.c static void printing_pause_fd_handler(struct tevent_context *ev,
ev 203 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 213 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 224 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 232 source3/rpc_client/cli_pipe.c subreq = transport->read_send(state, ev, (uint8_t *)data, size,
ev 268 source3/rpc_client/cli_pipe.c subreq = state->transport->read_send(state, state->ev,
ev 285 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 295 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 306 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 314 source3/rpc_client/cli_pipe.c subreq = transport->write_send(state, ev, data, size, transport->priv);
ev 349 source3/rpc_client/cli_pipe.c subreq = state->transport->write_send(state, state->ev,
ev 396 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 406 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 420 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 432 source3/rpc_client/cli_pipe.c state, state->ev,
ev 458 source3/rpc_client/cli_pipe.c subreq = rpc_read_send(state, state->ev,
ev 473 source3/rpc_client/cli_pipe.c if (async_post_ntstatus(result, ev, status)) {
ev 512 source3/rpc_client/cli_pipe.c state, state->ev, state->cli->transport,
ev 1034 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 1045 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 1058 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 1072 source3/rpc_client/cli_pipe.c subreq = transport->trans_send(state, ev, data, data_len,
ev 1088 source3/rpc_client/cli_pipe.c subreq = rpc_write_send(state, ev, transport, data, data_len);
ev 1099 source3/rpc_client/cli_pipe.c if (async_post_ntstatus(result, ev, status)) {
ev 1150 source3/rpc_client/cli_pipe.c subreq = state->transport->read_send(state, state->ev, state->rdata,
ev 1222 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 1244 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 1258 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 1287 source3/rpc_client/cli_pipe.c subreq = cli_api_pipe_send(state, ev, cli->transport,
ev 1299 source3/rpc_client/cli_pipe.c if (async_post_ntstatus(result, ev, status)) {
ev 1345 source3/rpc_client/cli_pipe.c subreq = get_complete_frag_send(state, state->ev, state->cli,
ev 1437 source3/rpc_client/cli_pipe.c subreq = get_complete_frag_send(state, state->ev, state->cli,
ev 2029 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 2052 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 2066 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 2096 source3/rpc_client/cli_pipe.c subreq = rpc_api_pipe_send(state, ev, state->cli,
ev 2107 source3/rpc_client/cli_pipe.c state, ev, cli->transport,
ev 2120 source3/rpc_client/cli_pipe.c if (async_post_ntstatus(result, ev, status)) {
ev 2235 source3/rpc_client/cli_pipe.c subreq = rpc_api_pipe_send(state, state->ev, state->cli,
ev 2245 source3/rpc_client/cli_pipe.c state, state->ev,
ev 2308 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 2312 source3/rpc_client/cli_pipe.c ev = event_context_init(frame);
ev 2313 source3/rpc_client/cli_pipe.c if (ev == NULL) {
ev 2317 source3/rpc_client/cli_pipe.c req = rpc_api_pipe_req_send(frame, ev, cli, op_num, in_data);
ev 2323 source3/rpc_client/cli_pipe.c event_loop_once(ev);
ev 2528 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 2553 source3/rpc_client/cli_pipe.c struct event_context *ev,
ev 2571 source3/rpc_client/cli_pipe.c state->ev = ev;
ev 2592 source3/rpc_client/cli_pipe.c subreq = rpc_api_pipe_send(state, ev, cli, &state->rpc_out,
ev 2603 source3/rpc_client/cli_pipe.c if (async_post_ntstatus(result, ev, status)) {
ev 2754 source3/rpc_client/cli_pipe.c subreq = rpc_write_send(state, state->ev, state->cli->transport,
ev 2863 source3/rpc_client/cli_pipe.c subreq = rpc_api_pipe_send(state, state->ev, state->cli,
ev 2943 source3/rpc_client/cli_pipe.c struct event_context *ev;
ev 2947 source3/rpc_client/cli_pipe.c ev = event_context_init(frame);
ev 2948 source3/rpc_client/cli_pipe.c if (ev == NULL) {
ev 2952 source3/rpc_client/cli_pipe.c req = rpc_pipe_bind_send(frame, ev, cli, auth);
ev 2958 source3/rpc_client/cli_pipe.c event_loop_once(ev);
ev 55 source3/rpc_client/rpc_transport_np.c struct event_context *ev,
ev 70 source3/rpc_client/rpc_transport_np.c subreq = cli_write_andx_send(mem_ctx, ev, np_transport->cli,
ev 124 source3/rpc_client/rpc_transport_np.c struct event_context *ev,
ev 140 source3/rpc_client/rpc_transport_np.c subreq = cli_read_andx_send(mem_ctx, ev, np_transport->cli,
ev 208 source3/rpc_client/rpc_transport_np.c struct event_context *ev,
ev 227 source3/rpc_client/rpc_transport_np.c state, ev, np_transport->cli, SMBtrans,
ev 283 source3/rpc_client/rpc_transport_np.c struct event_context *ev,
ev 311 source3/rpc_client/rpc_transport_np.c state, ev, cli, state->transport_np->pipe_name, 0,
ev 374 source3/rpc_client/rpc_transport_np.c struct event_context *ev;
ev 378 source3/rpc_client/rpc_transport_np.c ev = event_context_init(frame);
ev 379 source3/rpc_client/rpc_transport_np.c if (ev == NULL) {
ev 384 source3/rpc_client/rpc_transport_np.c req = rpc_transport_np_init_send(frame, ev, cli, abstract_syntax);
ev 391 source3/rpc_client/rpc_transport_np.c event_loop_once(ev);
ev 66 source3/rpc_client/rpc_transport_smbd.c static void rpc_cli_smbd_stdout_reader(struct event_context *ev,
ev 127 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev;
ev 136 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev,
ev 147 source3/rpc_client/rpc_transport_smbd.c state->ev = ev;
ev 150 source3/rpc_client/rpc_transport_smbd.c subreq = cli_negprot_send(state, ev, cli);
ev 177 source3/rpc_client/rpc_transport_smbd.c subreq = cli_session_setup_guest_send(state, state->ev, state->cli);
ev 200 source3/rpc_client/rpc_transport_smbd.c subreq = cli_tcon_andx_send(state, state->ev, state->cli,
ev 230 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev;
ev 237 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev,
ev 257 source3/rpc_client/rpc_transport_smbd.c state->ev = ev;
ev 332 source3/rpc_client/rpc_transport_smbd.c subreq = get_anon_ipc_send(state, ev, state->conn->cli);
ev 337 source3/rpc_client/rpc_transport_smbd.c if (event_add_fd(ev, state, state->conn->stdout_fd, EVENT_FD_READ,
ev 361 source3/rpc_client/rpc_transport_smbd.c if (async_post_ntstatus(result, ev, status)) {
ev 406 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev;
ev 410 source3/rpc_client/rpc_transport_smbd.c ev = event_context_init(frame);
ev 411 source3/rpc_client/rpc_transport_smbd.c if (ev == NULL) {
ev 416 source3/rpc_client/rpc_transport_smbd.c req = rpc_cli_smbd_conn_init_send(frame, ev, stdout_callback, priv);
ev 423 source3/rpc_client/rpc_transport_smbd.c event_loop_once(ev);
ev 440 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev,
ev 455 source3/rpc_client/rpc_transport_smbd.c subreq = transp->sub_transp->write_send(state, ev, data, size,
ev 461 source3/rpc_client/rpc_transport_smbd.c if (event_add_fd(ev, state, transp->conn->stdout_fd, EVENT_FD_READ,
ev 513 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev,
ev 528 source3/rpc_client/rpc_transport_smbd.c subreq = transp->sub_transp->read_send(state, ev, data, size,
ev 534 source3/rpc_client/rpc_transport_smbd.c if (event_add_fd(ev, state, transp->conn->stdout_fd, EVENT_FD_READ,
ev 586 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev,
ev 610 source3/rpc_client/rpc_transport_smbd.c if (event_add_fd(ev, state, conn->stdout_fd, EVENT_FD_READ,
ev 615 source3/rpc_client/rpc_transport_smbd.c subreq = rpc_transport_np_init_send(state, ev, conn->cli,
ev 677 source3/rpc_client/rpc_transport_smbd.c struct event_context *ev;
ev 681 source3/rpc_client/rpc_transport_smbd.c ev = event_context_init(frame);
ev 682 source3/rpc_client/rpc_transport_smbd.c if (ev == NULL) {
ev 687 source3/rpc_client/rpc_transport_smbd.c req = rpc_transport_smbd_init_send(frame, ev, conn, abstract_syntax);
ev 694 source3/rpc_client/rpc_transport_smbd.c event_loop_once(ev);
ev 46 source3/rpc_client/rpc_transport_sock.c struct event_context *ev,
ev 63 source3/rpc_client/rpc_transport_sock.c subreq = async_recv_send(state, ev, sock_transp->fd, data, size, 0);
ev 68 source3/rpc_client/rpc_transport_sock.c if (!tevent_req_set_endtime(subreq, ev, endtime)) {
ev 115 source3/rpc_client/rpc_transport_sock.c struct event_context *ev,
ev 131 source3/rpc_client/rpc_transport_sock.c subreq = async_send_send(state, ev, sock_transp->fd, data, size, 0);
ev 136 source3/rpc_client/rpc_transport_sock.c if (!tevent_req_set_endtime(subreq, ev, endtime)) {
ev 1179 source3/rpc_server/srv_pipe_hnd.c struct event_context *ev;
ev 1187 source3/rpc_server/srv_pipe_hnd.c struct tevent_req *np_write_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 1225 source3/rpc_server/srv_pipe_hnd.c state->ev = ev;
ev 1230 source3/rpc_server/srv_pipe_hnd.c subreq = writev_send(state, ev, p->write_queue, p->fd,
ev 1246 source3/rpc_server/srv_pipe_hnd.c return tevent_req_post(req, ev);
ev 1305 source3/rpc_server/srv_pipe_hnd.c struct event_context *ev;
ev 1317 source3/rpc_server/srv_pipe_hnd.c struct tevent_req *np_read_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
ev 1366 source3/rpc_server/srv_pipe_hnd.c state->ev = ev;
ev 1371 source3/rpc_server/srv_pipe_hnd.c if (!tevent_queue_add(p->read_queue, ev, req, np_read_trigger,
ev 1385 source3/rpc_server/srv_pipe_hnd.c return tevent_req_post(req, ev);
ev 1397 source3/rpc_server/srv_pipe_hnd.c subreq = read_packet_send(state, state->ev, state->p->fd,
ev 142 source3/smbd/avahi_register.c void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
ev 153 source3/smbd/avahi_register.c state->poll = tevent_avahi_poll(state, ev);
ev 66 source3/smbd/dnsregister.c static void dns_register_smbd_fde_handler(struct tevent_context *ev,
ev 147 source3/smbd/dnsregister.c static void dns_register_smbd_fde_handler(struct tevent_context *ev,
ev 171 source3/smbd/dnsregister.c bool smbd_setup_mdns_registration(struct tevent_context *ev,
ev 181 source3/smbd/dnsregister.c dns_state->event_ctx = ev;
ev 192 source3/smbd/dnsregister.c bool smbd_setup_mdns_registration(struct tevent_context *ev,
ev 491 source3/smbd/notify.c struct event_context *ev)
ev 500 source3/smbd/notify.c ctx->ev = ev;
ev 510 source3/smbd/notify.c struct notify_event *ev),
ev 86 source3/smbd/notify_inotify.c struct notify_event *ev);
ev 227 source3/smbd/notify_inotify.c static void inotify_handler(struct event_context *ev, struct fd_event *fde,
ev 304 source3/smbd/notify_inotify.c event_add_fd(ctx->ev, in, in->fd, EVENT_FD_READ, inotify_handler, in);
ev 373 source3/smbd/notify_inotify.c struct notify_event *ev),
ev 80 source3/smbd/notify_internal.c struct event_context *ev,
ev 116 source3/smbd/notify_internal.c notify->sys_notify_ctx = sys_notify_context_create(conn, notify, ev);
ev 253 source3/smbd/notify_internal.c struct notify_event ev;
ev 261 source3/smbd/notify_internal.c ndr_err = ndr_pull_struct_blob(data, tmp_ctx, NULL, &ev,
ev 269 source3/smbd/notify_internal.c if (listel->private_data == ev.private_data) {
ev 270 source3/smbd/notify_internal.c listel->callback(listel->private_data, &ev);
ev 282 source3/smbd/notify_internal.c void *ptr, struct notify_event *ev)
ev 285 source3/smbd/notify_internal.c ev->private_data = listel;
ev 287 source3/smbd/notify_internal.c ev->action, ev->path));
ev 288 source3/smbd/notify_internal.c listel->callback(listel->private_data, ev);
ev 552 source3/smbd/notify_internal.c struct notify_event ev;
ev 558 source3/smbd/notify_internal.c ev.action = action;
ev 559 source3/smbd/notify_internal.c ev.path = path;
ev 560 source3/smbd/notify_internal.c ev.private_data = e->private_data;
ev 564 source3/smbd/notify_internal.c ndr_err = ndr_push_struct_blob(&data, tmp_ctx, NULL, &ev,
ev 273 source3/smbd/oplock_irix.c static void irix_oplocks_read_fde_handler(struct event_context *ev,
ev 633 source3/smbd/oplock_onefs.c static void onefs_oplocks_read_fde_handler(struct event_context *ev,
ev 407 source3/smbd/process.c static void smbd_deferred_open_timer(struct event_context *ev,
ev 724 source3/smbd/process.c static void smbd_sig_term_handler(struct tevent_context *ev,
ev 748 source3/smbd/process.c static void smbd_sig_hup_handler(struct tevent_context *ev,
ev 1890 source3/smbd/process.c static void smbd_server_connection_handler(struct event_context *ev,
ev 255 source3/smbd/server.c static void smbd_sig_chld_handler(struct tevent_context *ev,
ev 315 source3/smbd/server.c static void smbd_open_socket_close_fn(struct tevent_context *ev,
ev 324 source3/smbd/server.c static void smbd_accept_connection(struct tevent_context *ev,
ev 5214 source3/torture/torture.c struct event_context *ev = event_context_init(NULL);
ev 5224 source3/torture/torture.c req = cli_echo_send(ev, ev, cli, 5, data_blob_const("hello", 5));
ev 5231 source3/torture/torture.c event_loop_once(ev);
ev 5816 source3/torture/torture.c struct event_context *ev;
ev 5824 source3/torture/torture.c ev = event_context_init(talloc_tos());
ev 5825 source3/torture/torture.c if (ev == NULL) {
ev 5829 source3/torture/torture.c wb_ctx = TALLOC_ARRAY(ev, struct wb_context *, torture_numops);
ev 5838 source3/torture/torture.c wb_ctx[i] = wb_context_init(ev);
ev 5844 source3/torture/torture.c req = wb_trans_send(ev, ev, wb_ctx[i],
ev 5856 source3/torture/torture.c event_loop_once(ev);
ev 5861 source3/torture/torture.c TALLOC_FREE(ev);
ev 187 source3/utils/net_lua.c struct event_context *ev;
ev 240 source3/utils/net_lua.c TALLOC_FREE(p->ev);
ev 276 source3/utils/net_lua.c ref = evt_reference_thread(p->ev, L);
ev 281 source3/utils/net_lua.c te = event_add_timed(p->ev, ref, timeval_current_ofs(0, usecs),
ev 302 source3/utils/net_lua.c lua_pushinteger(L, event_loop_once(p->ev));
ev 320 source3/utils/net_lua.c result->ev = event_context_init(NULL);
ev 321 source3/utils/net_lua.c if (result->ev == NULL) {
ev 203 source3/winbindd/winbindd.c static void winbindd_sig_term_handler(struct tevent_context *ev,
ev 265 source3/winbindd/winbindd.c static void winbindd_sig_hup_handler(struct tevent_context *ev,
ev 304 source3/winbindd/winbindd.c static void winbindd_sig_chld_handler(struct tevent_context *ev,
ev 334 source3/winbindd/winbindd.c static void winbindd_sig_usr2_handler(struct tevent_context *ev,
ev 580 source3/winbindd/winbindd.c void add_fd_event(struct winbindd_fd_event *ev)
ev 588 source3/winbindd/winbindd.c SMB_ASSERT( match != ev );
ev 590 source3/winbindd/winbindd.c if ( match == ev )
ev 595 source3/winbindd/winbindd.c DLIST_ADD(fd_events, ev);
ev 598 source3/winbindd/winbindd.c void remove_fd_event(struct winbindd_fd_event *ev)
ev 600 source3/winbindd/winbindd.c DLIST_REMOVE(fd_events, ev);
ev 966 source3/winbindd/winbindd.c static void winbindd_listen_fde_handler(struct tevent_context *ev,
ev 1058 source3/winbindd/winbindd.c struct winbindd_fd_event *ev;
ev 1087 source3/winbindd/winbindd.c for (ev = fd_events; ev; ev = ev->next) {
ev 1088 source3/winbindd/winbindd.c if (ev->flags & EVENT_FD_READ) {
ev 1089 source3/winbindd/winbindd.c FD_SET(ev->fd, &r_fds);
ev 1090 source3/winbindd/winbindd.c maxfd = MAX(ev->fd, maxfd);
ev 1092 source3/winbindd/winbindd.c if (ev->flags & EVENT_FD_WRITE) {
ev 1093 source3/winbindd/winbindd.c FD_SET(ev->fd, &w_fds);
ev 1094 source3/winbindd/winbindd.c maxfd = MAX(ev->fd, maxfd);
ev 1123 source3/winbindd/winbindd.c ev = fd_events;
ev 1124 source3/winbindd/winbindd.c while (ev != NULL) {
ev 1125 source3/winbindd/winbindd.c struct winbindd_fd_event *next = ev->next;
ev 1127 source3/winbindd/winbindd.c if (FD_ISSET(ev->fd, &r_fds))
ev 1129 source3/winbindd/winbindd.c if (FD_ISSET(ev->fd, &w_fds))
ev 1132 source3/winbindd/winbindd.c ev->handler(ev, flags);
ev 1135 source3/winbindd/winbindd.c ev = next;
ev 56 source3/winbindd/winbindd_proto.h void add_fd_event(struct winbindd_fd_event *ev);
ev 57 source3/winbindd/winbindd_proto.h void remove_fd_event(struct winbindd_fd_event *ev);
ev 248 source4/auth/auth.h struct tevent_context *ev,
ev 254 source4/auth/auth.h struct tevent_context *ev,
ev 266 source4/auth/auth.h struct tevent_context *ev,
ev 509 source4/auth/gensec/gensec.c struct tevent_context *ev,
ev 514 source4/auth/gensec/gensec.c if (ev == NULL) {
ev 532 source4/auth/gensec/gensec.c (*gensec_security)->event_ctx = ev;
ev 577 source4/auth/gensec/gensec.c struct tevent_context *ev,
ev 587 source4/auth/gensec/gensec.c status = gensec_start(mem_ctx, ev, settings, NULL, gensec_security);
ev 603 source4/auth/gensec/gensec.c struct tevent_context *ev,
ev 610 source4/auth/gensec/gensec.c if (!ev) {
ev 620 source4/auth/gensec/gensec.c status = gensec_start(mem_ctx, ev, settings, auth_context, gensec_security);
ev 984 source4/auth/gensec/gensec.c static void gensec_update_async_timed_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 197 source4/auth/gensec/gensec.h struct tevent_context *ev,
ev 228 source4/auth/gensec/gensec.h struct tevent_context *ev,
ev 280 source4/auth/gensec/gensec.h struct tevent_context *ev,
ev 34 source4/auth/gensec/socket.c struct tevent_context *ev;
ev 200 source4/auth/gensec/socket.c static void gensec_socket_trigger_read(struct tevent_context *ev,
ev 215 source4/auth/gensec/socket.c event_add_timed(gensec_socket->ev, gensec_socket, timeval_zero(),
ev 278 source4/auth/gensec/socket.c event_add_timed(gensec_socket->ev, gensec_socket, timeval_zero(),
ev 416 source4/auth/gensec/socket.c struct tevent_context *ev,
ev 466 source4/auth/gensec/socket.c gensec_socket->ev = ev;
ev 172 source4/auth/kerberos/krb5_init_context.c static void smb_krb5_socket_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 220 source4/auth/kerberos/krb5_init_context.c struct tevent_context *ev = talloc_get_type(data, struct tevent_context);
ev 275 source4/auth/kerberos/krb5_init_context.c status = socket_connect_ev(smb_krb5->sock, NULL, remote_addr, 0, ev);
ev 287 source4/auth/kerberos/krb5_init_context.c smb_krb5->fde = tevent_add_fd(ev, smb_krb5->sock,
ev 295 source4/auth/kerberos/krb5_init_context.c tevent_add_timer(ev, smb_krb5,
ev 319 source4/auth/kerberos/krb5_init_context.c packet_set_event_context(smb_krb5->packet, ev);
ev 332 source4/auth/kerberos/krb5_init_context.c if (tevent_loop_once(ev) != 0) {
ev 364 source4/auth/kerberos/krb5_init_context.c struct tevent_context *ev,
ev 459 source4/auth/kerberos/krb5_init_context.c ev);
ev 27 source4/auth/kerberos/krb5_init_context.h krb5_error_code smb_krb5_init_context(void *parent_ctx, struct tevent_context *ev,
ev 218 source4/auth/ntlm/auth.c static void auth_check_password_async_timed_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 384 source4/auth/ntlm/auth.c struct tevent_context *ev,
ev 399 source4/auth/ntlm/auth.c if (!ev) {
ev 415 source4/auth/ntlm/auth.c ctx->event_ctx = ev;
ev 455 source4/auth/ntlm/auth.c struct tevent_context *ev,
ev 472 source4/auth/ntlm/auth.c return auth_context_create_methods(mem_ctx, auth_methods, ev, msg, lp_ctx, auth_ctx);
ev 35 source4/auth/ntlm/auth_simple.c struct tevent_context *ev,
ev 54 source4/auth/ntlm/auth_simple.c ev, msg,
ev 93 source4/auth/ntlm/auth_simple.c nt_status = auth_generate_session_info(tmp_ctx, ev, lp_ctx, server_info, session_info);
ev 358 source4/client/cifsdd.c struct tevent_context *ev,
ev 384 source4/client/cifsdd.c handle = dd_open_path(resolve_ctx, ev, path, ports,
ev 393 source4/client/cifsdd.c handle = dd_open_path(resolve_ctx, ev, path, ports,
ev 411 source4/client/cifsdd.c static int copy_files(struct tevent_context *ev, struct loadparm_context *lp_ctx)
ev 450 source4/client/cifsdd.c if (!(ifile = open_file(lp_resolve_context(lp_ctx), ev, "if",
ev 458 source4/client/cifsdd.c if (!(ofile = open_file(lp_resolve_context(lp_ctx), ev, "of",
ev 552 source4/client/cifsdd.c struct tevent_context *ev;
ev 603 source4/client/cifsdd.c ev = s4_event_context_init(talloc_autofree_context());
ev 626 source4/client/cifsdd.c return(copy_files(ev, cmdline_lp_ctx));
ev 96 source4/client/cifsdd.h struct tevent_context *ev,
ev 224 source4/client/cifsddio.c struct tevent_context *ev,
ev 244 source4/client/cifsddio.c ev, options,
ev 306 source4/client/cifsddio.c struct tevent_context *ev,
ev 337 source4/client/cifsddio.c if ((smbh->cli = init_smb_session(resolve_ctx, ev, host, ports, share,
ev 357 source4/client/cifsddio.c struct tevent_context *ev,
ev 381 source4/client/cifsddio.c return(open_cifs_handle(resolve_ctx, ev, host, ports,
ev 37 source4/dsdb/repl/drepl_periodic.c static void dreplsrv_periodic_handler_te(struct tevent_context *ev, struct tevent_timer *te,
ev 203 source4/dsdb/samdb/ldb_modules/samldb.c struct tevent_context *ev;
ev 236 source4/dsdb/samdb/ldb_modules/samldb.c ev = ldb_get_event_context(ldb);
ev 238 source4/dsdb/samdb/ldb_modules/samldb.c templates_ldb = ldb_wrap_connect(ldb, ev,
ev 247 source4/dsdb/samdb/ldb_modules/samldb.c if (!talloc_reference(templates_ldb, ev)) {
ev 202 source4/kdc/kdc.c static void kdc_socket_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 170 source4/ldap_server/ldap_server.c static void ldapsrv_conn_idle_timeout(struct tevent_context *ev,
ev 217 source4/ldap_server/ldap_server.c static void ldapsrv_conn_init_timeout(struct tevent_context *ev,
ev 64 source4/lib/events/tevent_s4.c struct tevent_context *ev;
ev 66 source4/lib/events/tevent_s4.c ev = tevent_context_init_byname(mem_ctx, NULL);
ev 67 source4/lib/events/tevent_s4.c if (ev) {
ev 68 source4/lib/events/tevent_s4.c tevent_set_debug(ev, ev_wrap_debug, NULL);
ev 69 source4/lib/events/tevent_s4.c tevent_loop_allow_nesting(ev);
ev 71 source4/lib/events/tevent_s4.c return ev;
ev 85 source4/lib/events/tevent_s4.c struct tevent_context *ev = talloc_find_parent_bytype(mem_ctx, struct tevent_context);
ev 86 source4/lib/events/tevent_s4.c if (ev == NULL) {
ev 87 source4/lib/events/tevent_s4.c ev = tevent_context_init(mem_ctx);
ev 89 source4/lib/events/tevent_s4.c return ev;
ev 447 source4/lib/ldb/common/ldb.c struct tevent_context *ev;
ev 458 source4/lib/ldb/common/ldb.c ev = ldb_get_event_context(handle->ldb);
ev 459 source4/lib/ldb/common/ldb.c if (NULL == ev) {
ev 465 source4/lib/ldb/common/ldb.c ret = tevent_loop_once(ev);
ev 477 source4/lib/ldb/common/ldb.c ret = tevent_loop_once(ev);
ev 540 source4/lib/ldb/common/ldb.c void ldb_set_event_context(struct ldb_context *ldb, struct tevent_context *ev)
ev 542 source4/lib/ldb/common/ldb.c ldb->ev_ctx = ev;
ev 805 source4/lib/ldb/include/ldb.h void ldb_set_event_context(struct ldb_context *ldb, struct tevent_context *ev);
ev 97 source4/lib/ldb/ldb_ildap/ldb_ildap.c static void ildb_auto_done_callback(struct tevent_context *ev,
ev 193 source4/lib/ldb/ldb_ildap/ldb_ildap.c static void ildb_request_timeout(struct tevent_context *ev, struct tevent_timer *te,
ev 644 source4/lib/ldb/ldb_ldap/ldb_ldap.c static void lldb_timeout(struct tevent_context *ev,
ev 655 source4/lib/ldb/ldb_ldap/ldb_ldap.c static void lldb_callback(struct tevent_context *ev,
ev 693 source4/lib/ldb/ldb_ldap/ldb_ldap.c lte = tevent_add_timer(ev, ac, tv, lldb_callback, ac);
ev 726 source4/lib/ldb/ldb_ldap/ldb_ldap.c static void lldb_auto_done_callback(struct tevent_context *ev,
ev 742 source4/lib/ldb/ldb_ldap/ldb_ldap.c struct tevent_context *ev;
ev 755 source4/lib/ldb/ldb_ldap/ldb_ldap.c ev = ldb_get_event_context(ldb);
ev 756 source4/lib/ldb/ldb_ldap/ldb_ldap.c if (NULL == ev) {
ev 774 source4/lib/ldb/ldb_ldap/ldb_ldap.c te = tevent_add_timer(ev, ac, tv,
ev 812 source4/lib/ldb/ldb_ldap/ldb_ldap.c te = tevent_add_timer(ev, ac, tv, lldb_callback, ac);
ev 820 source4/lib/ldb/ldb_ldap/ldb_ldap.c te = tevent_add_timer(ev, ac, tv, lldb_timeout, ac);
ev 1449 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c static void lsql_timeout(struct tevent_context *ev,
ev 1460 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c static void lsql_callback(struct tevent_context *ev,
ev 1506 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c struct tevent_context *ev;
ev 1521 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c ev = ldb_get_event_context(ldb);
ev 1534 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c te = tevent_add_timer(ev, ac, tv, lsql_callback, ac);
ev 1540 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c ac->timeout_event = tevent_add_timer(ev, ac, tv, lsql_timeout, ac);
ev 1014 source4/lib/ldb/ldb_tdb/ldb_tdb.c static void ltdb_timeout(struct tevent_context *ev,
ev 1080 source4/lib/ldb/ldb_tdb/ldb_tdb.c static void ltdb_callback(struct tevent_context *ev,
ev 1146 source4/lib/ldb/ldb_tdb/ldb_tdb.c struct tevent_context *ev;
ev 1162 source4/lib/ldb/ldb_tdb/ldb_tdb.c ev = ldb_get_event_context(ldb);
ev 1175 source4/lib/ldb/ldb_tdb/ldb_tdb.c te = tevent_add_timer(ev, ac, tv, ltdb_callback, ac);
ev 1182 source4/lib/ldb/ldb_tdb/ldb_tdb.c ac->timeout_event = tevent_add_timer(ev, ac, tv, ltdb_timeout, ac);
ev 98 source4/lib/ldb_wrap.c struct tevent_context *ev,
ev 114 source4/lib/ldb_wrap.c if (ev == NULL) {
ev 118 source4/lib/ldb_wrap.c ldb = ldb_init(mem_ctx, ev);
ev 35 source4/lib/ldb_wrap.h struct tevent_context *ev,
ev 40 source4/lib/messaging/irpc.h struct tevent_context *ev;
ev 100 source4/lib/messaging/irpc.h struct tevent_context *ev);
ev 104 source4/lib/messaging/irpc.h struct tevent_context *ev);
ev 57 source4/lib/messaging/messaging.c struct tevent_context *ev;
ev 219 source4/lib/messaging/messaging.c static void msg_retry_timer(struct tevent_context *ev, struct tevent_timer *te,
ev 255 source4/lib/messaging/messaging.c event_add_timed(msg->event.ev, msg,
ev 341 source4/lib/messaging/messaging.c static void messaging_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 539 source4/lib/messaging/messaging.c struct tevent_context *ev)
ev 545 source4/lib/messaging/messaging.c if (ev == NULL) {
ev 599 source4/lib/messaging/messaging.c msg->event.ev = talloc_reference(msg, ev);
ev 600 source4/lib/messaging/messaging.c msg->event.fde = event_add_fd(ev, msg, socket_get_fd(msg->sock),
ev 618 source4/lib/messaging/messaging.c struct tevent_context *ev)
ev 623 source4/lib/messaging/messaging.c return messaging_init(mem_ctx, dir, id, iconv_convenience, ev);
ev 776 source4/lib/messaging/messaging.c m->ev = msg_ctx->event.ev;
ev 846 source4/lib/messaging/messaging.c static void irpc_timeout(struct tevent_context *ev, struct tevent_timer *te,
ev 913 source4/lib/messaging/messaging.c event_add_timed(msg_ctx->event.ev, irpc,
ev 937 source4/lib/messaging/messaging.c if (event_loop_once(irpc->msg_ctx->event.ev) != 0) {
ev 72 source4/lib/messaging/pymessaging.c struct tevent_context *ev;
ev 89 source4/lib/messaging/pymessaging.c ev = s4_event_context_init(ret->mem_ctx);
ev 108 source4/lib/messaging/pymessaging.c ev);
ev 113 source4/lib/messaging/pymessaging.c ev);
ev 324 source4/lib/messaging/pymessaging.c struct tevent_context *ev;
ev 344 source4/lib/messaging/pymessaging.c ev = s4_event_context_init(ret->mem_ctx);
ev 363 source4/lib/messaging/pymessaging.c ev);
ev 368 source4/lib/messaging/pymessaging.c ev);
ev 37 source4/lib/messaging/tests/irpc.c struct tevent_context *ev;
ev 56 source4/lib/messaging/tests/irpc.c static void deferred_echodata(struct tevent_context *ev, struct tevent_timer *te,
ev 76 source4/lib/messaging/tests/irpc.c event_add_timed(irpc->ev, irpc, timeval_zero(), deferred_echodata, irpc);
ev 194 source4/lib/messaging/tests/irpc.c event_loop_once(data->ev);
ev 201 source4/lib/messaging/tests/irpc.c event_loop_once(data->ev);
ev 220 source4/lib/messaging/tests/irpc.c data->ev = tctx->ev;
ev 226 source4/lib/messaging/tests/irpc.c data->ev),
ev 234 source4/lib/messaging/tests/irpc.c data->ev),
ev 61 source4/lib/messaging/tests/messaging.c struct tevent_context *ev;
ev 72 source4/lib/messaging/tests/messaging.c ev = tctx->ev;
ev 78 source4/lib/messaging/tests/messaging.c ev);
ev 89 source4/lib/messaging/tests/messaging.c ev);
ev 116 source4/lib/messaging/tests/messaging.c event_loop_once(ev);
ev 123 source4/lib/messaging/tests/messaging.c event_loop_once(ev);
ev 383 source4/lib/registry/registry.h const char *location, struct tevent_context *ev);
ev 483 source4/lib/registry/rpc.c const char *location, struct tevent_context *ev)
ev 501 source4/lib/registry/rpc.c credentials, ev, lp_ctx);
ev 180 source4/lib/registry/tests/diff.c error = reg_open_ldb_file(tctx, filename, NULL, NULL, tctx->ev, tctx->lp_ctx, &r1_hklm);
ev 187 source4/lib/registry/tests/diff.c error = reg_open_ldb_file(tctx, filename, NULL, NULL, tctx->ev, tctx->lp_ctx, &r1_hkcu);
ev 195 source4/lib/registry/tests/diff.c error = reg_open_ldb_file(tctx, filename, NULL, NULL, tctx->ev, tctx->lp_ctx, &r2_hklm);
ev 202 source4/lib/registry/tests/diff.c error = reg_open_ldb_file(tctx, filename, NULL, NULL, tctx->ev, tctx->lp_ctx, &r2_hkcu);
ev 428 source4/lib/registry/tests/hive.c error = reg_open_ldb_file(tctx, dirname, NULL, NULL, tctx->ev, tctx->lp_ctx, &key);
ev 533 source4/lib/registry/tests/registry.c error = reg_open_ldb_file(tctx, filename, NULL, NULL, tctx->ev, tctx->lp_ctx, &hive_key);
ev 37 source4/lib/socket/connect.c static void socket_connect_handler(struct tevent_context *ev,
ev 119 source4/lib/socket/connect.c static void socket_connect_handler(struct tevent_context *ev,
ev 152 source4/lib/socket/connect.c struct tevent_context *ev)
ev 156 source4/lib/socket/connect.c server_address, flags, ev);
ev 56 source4/lib/socket/connect_multi.c static void connect_multi_timer(struct tevent_context *ev,
ev 182 source4/lib/socket/connect_multi.c static void connect_multi_timer(struct tevent_context *ev,
ev 40 source4/lib/socket/socket.c _PUBLIC_ void socket_tevent_fd_close_fn(struct tevent_context *ev,
ev 190 source4/lib/socket/socket.h struct tevent_context *ev);
ev 211 source4/lib/socket/socket.h void socket_tevent_fd_close_fn(struct tevent_context *ev,
ev 127 source4/lib/socket/testsuite.c struct tevent_context *ev = tctx->ev;
ev 155 source4/lib/socket/testsuite.c status = socket_connect_ev(sock2, NULL, srv_addr, 0, ev);
ev 38 source4/lib/stream/packet.c struct tevent_context *ev;
ev 141 source4/lib/stream/packet.c _PUBLIC_ void packet_set_event_context(struct packet_context *pc, struct tevent_context *ev)
ev 143 source4/lib/stream/packet.c pc->ev = ev;
ev 229 source4/lib/stream/packet.c static void packet_next_event(struct tevent_context *ev, struct tevent_timer *te,
ev 441 source4/lib/stream/packet.c if (pc->ev == NULL) {
ev 458 source4/lib/stream/packet.c event_add_timed(pc->ev, pc, timeval_zero(), packet_next_event, pc);
ev 479 source4/lib/stream/packet.c event_add_timed(pc->ev, pc, timeval_zero(), packet_next_event, pc);
ev 43 source4/lib/stream/packet.h void packet_set_event_context(struct packet_context *pc, struct tevent_context *ev);
ev 226 source4/libcli/cldap/cldap.c static void cldap_socket_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 154 source4/libcli/cliconnect.c struct tevent_context *ev,
ev 169 source4/libcli/cliconnect.c credentials, resolve_ctx, ev,
ev 38 source4/libcli/composite/composite.c struct tevent_context *ev)
ev 45 source4/libcli/composite/composite.c c->event_ctx = talloc_reference(c, ev);
ev 96 source4/libcli/composite/composite.c static void composite_trigger(struct tevent_context *ev, struct tevent_timer *te,
ev 76 source4/libcli/composite/composite.h struct composite_context *composite_create(TALLOC_CTX *mem_ctx, struct tevent_context *ev);
ev 142 source4/libcli/dgram/dgramsocket.c static void dgm_socket_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 46 source4/libcli/ldap/ldap_client.c struct tevent_context *ev)
ev 50 source4/libcli/ldap/ldap_client.c if (ev == NULL) {
ev 60 source4/libcli/ldap/ldap_client.c conn->event.event_ctx = ev;
ev 227 source4/libcli/ldap/ldap_client.c static void ldap_io_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 552 source4/libcli/ldap/ldap_client.c static void ldap_request_timeout(struct tevent_context *ev, struct tevent_timer *te,
ev 570 source4/libcli/ldap/ldap_client.c static void ldap_request_complete(struct tevent_context *ev, struct tevent_timer *te,
ev 100 source4/libcli/ldap/ldap_client.h struct tevent_context *ev);
ev 36 source4/libcli/raw/clitransport.c static void smbcli_transport_event_handler(struct tevent_context *ev,
ev 310 source4/libcli/raw/clitransport.c static void idle_handler(struct tevent_context *ev,
ev 544 source4/libcli/raw/clitransport.c static void smbcli_timeout_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 179 source4/libcli/raw/clitree.c struct tevent_context *ev,
ev 210 source4/libcli/raw/clitree.c status = smb_composite_connect(&io, parent_ctx, resolve_ctx, ev);
ev 336 source4/libcli/resolve/dns_ex.c static void pipe_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 254 source4/libcli/resolve/resolve.c struct tevent_context *ev)
ev 256 source4/libcli/resolve/resolve.c struct composite_context *c = resolve_name_send(ctx, name, ev);
ev 31 source4/libcli/resolve/testsuite.c struct tevent_context *ev;
ev 38 source4/libcli/resolve/testsuite.c ev = tctx->ev;
ev 47 source4/libcli/resolve/testsuite.c struct composite_context *c = resolve_name_host_send(mem_ctx, ev, NULL, 0, 0, &n);
ev 238 source4/libcli/smb2/connect.c struct tevent_context *ev,
ev 248 source4/libcli/smb2/connect.c c = composite_create(mem_ctx, ev);
ev 300 source4/libcli/smb2/connect.c struct tevent_context *ev,
ev 307 source4/libcli/smb2/connect.c credentials, ev, options,
ev 36 source4/libcli/smb2/transport.c static void smb2_transport_event_handler(struct tevent_context *ev,
ev 304 source4/libcli/smb2/transport.c static void smb2_timeout_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 383 source4/libcli/smb2/transport.c static void idle_handler(struct tevent_context *ev,
ev 516 source4/libcli/smb_composite/connect.c struct tevent_context *ev)
ev 518 source4/libcli/smb_composite/connect.c struct composite_context *c = smb_composite_connect_send(io, mem_ctx, resolve_ctx, ev);
ev 74 source4/libcli/wrepl/winsrepl.c static void wrepl_request_timeout_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 125 source4/libcli/wrepl/winsrepl.c static void wrepl_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 384 source4/libcli/wrepl/winsrepl.c static void wrepl_request_trigger_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 26 source4/libnet/libnet.c struct libnet_context *libnet_context_init(struct tevent_context *ev,
ev 32 source4/libnet/libnet.c if (!ev) {
ev 37 source4/libnet/libnet.c ctx = talloc(ev, struct libnet_context);
ev 42 source4/libnet/libnet.c ctx->event_ctx = ev;
ev 30 source4/libnet/py_net.c static struct libnet_context *py_net_ctx(PyObject *obj, struct tevent_context *ev)
ev 33 source4/libnet/py_net.c return libnet_context_init(ev, py_default_loadparm_context(NULL));
ev 42 source4/libnet/py_net.c struct tevent_context *ev;
ev 53 source4/libnet/py_net.c ev = s4_event_context_init(NULL);
ev 54 source4/libnet/py_net.c mem_ctx = talloc_new(ev);
ev 56 source4/libnet/py_net.c libnet_ctx = py_net_ctx(cls, ev);
ev 58 source4/librpc/rpc/dcerpc.c struct tevent_context *ev,
ev 70 source4/librpc/rpc/dcerpc.c c->event_ctx = talloc_reference(c, ev);
ev 93 source4/librpc/rpc/dcerpc.c _PUBLIC_ struct dcerpc_pipe *dcerpc_pipe_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
ev 103 source4/librpc/rpc/dcerpc.c p->conn = dcerpc_connection_init(p, ev, ic);
ev 655 source4/librpc/rpc/dcerpc.c static void dcerpc_timeout_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 252 source4/librpc/rpc/dcerpc.h struct tevent_context *ev,
ev 262 source4/librpc/rpc/dcerpc.h struct dcerpc_pipe *dcerpc_pipe_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
ev 280 source4/librpc/rpc/dcerpc.h struct tevent_context *ev,
ev 291 source4/librpc/rpc/dcerpc.h struct tevent_context *ev,
ev 333 source4/librpc/rpc/dcerpc.h struct tevent_context *ev, struct loadparm_context *lp_ctx);
ev 339 source4/librpc/rpc/dcerpc.h const struct ndr_interface_table *table, struct tevent_context *ev,
ev 711 source4/librpc/rpc/dcerpc_connect.c static void dcerpc_connect_timeout_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 726 source4/librpc/rpc/dcerpc_connect.c struct tevent_context *ev,
ev 734 source4/librpc/rpc/dcerpc_connect.c c = composite_create(parent_ctx, ev);
ev 746 source4/librpc/rpc/dcerpc_connect.c s->pipe = dcerpc_pipe_init(c, ev, lp_iconv_convenience(lp_ctx));
ev 823 source4/librpc/rpc/dcerpc_connect.c struct tevent_context *ev,
ev 829 source4/librpc/rpc/dcerpc_connect.c credentials, ev, lp_ctx);
ev 851 source4/librpc/rpc/dcerpc_connect.c struct tevent_context *ev, struct loadparm_context *lp_ctx)
ev 859 source4/librpc/rpc/dcerpc_connect.c c = composite_create(parent_ctx, ev);
ev 883 source4/librpc/rpc/dcerpc_connect.c credentials, ev, lp_ctx);
ev 938 source4/librpc/rpc/dcerpc_connect.c struct tevent_context *ev,
ev 943 source4/librpc/rpc/dcerpc_connect.c table, credentials, ev, lp_ctx);
ev 129 source4/librpc/rpc/dcerpc_sock.c static void sock_io_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 205 source4/librpc/rpc/dcerpc_util.c struct tevent_context *ev,
ev 217 source4/librpc/rpc/dcerpc_util.c if (ev == NULL) {
ev 222 source4/librpc/rpc/dcerpc_util.c c = composite_create(mem_ctx, ev);
ev 306 source4/librpc/rpc/dcerpc_util.c const struct ndr_interface_table *table, struct tevent_context *ev,
ev 311 source4/librpc/rpc/dcerpc_util.c c = dcerpc_epm_map_binding_send(mem_ctx, binding, table, ev, lp_ctx);
ev 80 source4/nbt_server/register.c static void name_refresh_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 42 source4/nbt_server/wins/winsclient.c static void nbtd_wins_refresh(struct tevent_context *ev, struct tevent_timer *te,
ev 48 source4/nbt_server/wins/winsclient.c static void nbtd_wins_register_retry(struct tevent_context *ev, struct tevent_timer *te,
ev 132 source4/nbt_server/wins/winsclient.c static void nbtd_wins_refresh(struct tevent_context *ev, struct tevent_timer *te,
ev 310 source4/nbt_server/wins/winswack.c s->io.in.event_ctx = msg->ev;
ev 369 source4/nbt_server/wins/winswack.c s->io.in.event_ctx = msg->ev;
ev 87 source4/ntvfs/common/notify.c struct tevent_context *ev,
ev 96 source4/ntvfs/common/notify.c if (ev == NULL) {
ev 125 source4/ntvfs/common/notify.c notify->sys_notify_ctx = sys_notify_context_create(scfg, notify, ev);
ev 257 source4/ntvfs/common/notify.c struct notify_event ev;
ev 265 source4/ntvfs/common/notify.c ndr_err = ndr_pull_struct_blob(data, tmp_ctx, notify->iconv_convenience, &ev,
ev 273 source4/ntvfs/common/notify.c if (listel->private_data == ev.private_data) {
ev 274 source4/ntvfs/common/notify.c listel->callback(listel->private_data, &ev);
ev 286 source4/ntvfs/common/notify.c void *ptr, struct notify_event *ev)
ev 289 source4/ntvfs/common/notify.c ev->private_data = listel;
ev 290 source4/ntvfs/common/notify.c listel->callback(listel->private_data, ev);
ev 552 source4/ntvfs/common/notify.c struct notify_event ev;
ev 558 source4/ntvfs/common/notify.c ev.action = action;
ev 559 source4/ntvfs/common/notify.c ev.path = path;
ev 560 source4/ntvfs/common/notify.c ev.private_data = e->private_data;
ev 564 source4/ntvfs/common/notify.c ndr_err = ndr_push_struct_blob(&data, tmp_ctx, notify->iconv_convenience, &ev, (ndr_push_flags_fn_t)ndr_push_notify_event);
ev 156 source4/ntvfs/ntvfs_base.c struct tevent_context *ev, struct messaging_context *msg,
ev 174 source4/ntvfs/ntvfs_base.c ctx->event_ctx = ev;
ev 44 source4/ntvfs/posix/pvfs_aio.c static void pvfs_aio_read_handler(struct tevent_context *ev, struct tevent_aio *ae,
ev 65 source4/ntvfs/posix/pvfs_aio.c talloc_steal(ev, state->ae);
ev 109 source4/ntvfs/posix/pvfs_aio.c static void pvfs_aio_write_handler(struct tevent_context *ev, struct tevent_aio *ae,
ev 129 source4/ntvfs/posix/pvfs_aio.c talloc_steal(ev, state->ae);
ev 49 source4/ntvfs/posix/pvfs_notify.c static void pvfs_notify_send_next(struct tevent_context *ev, struct tevent_timer *te,
ev 129 source4/ntvfs/posix/pvfs_notify.c static void pvfs_notify_callback(void *private_data, const struct notify_event *ev)
ev 143 source4/ntvfs/posix/pvfs_notify.c new_path = talloc_strdup(n->changes, ev->path);
ev 149 source4/ntvfs/posix/pvfs_notify.c n->changes[n->num_changes].action = ev->action;
ev 156 source4/ntvfs/posix/pvfs_notify.c len = 12 + strlen_m(ev->path)*2;
ev 163 source4/ntvfs/posix/pvfs_notify.c if (ev->action != NOTIFY_ACTION_OLD_NAME) {
ev 49 source4/ntvfs/posix/pvfs_search.c static void pvfs_search_timer(struct tevent_context *ev, struct tevent_timer *te,
ev 61 source4/ntvfs/posix/pvfs_search.c struct tevent_context *ev = search->pvfs->ntvfs->ctx->event_ctx;
ev 64 source4/ntvfs/posix/pvfs_search.c search->te = event_add_timed(ev, search,
ev 37 source4/ntvfs/posix/pvfs_wait.c struct tevent_context *ev;
ev 95 source4/ntvfs/posix/pvfs_wait.c static void pvfs_wait_timeout(struct tevent_context *ev,
ev 150 source4/ntvfs/posix/pvfs_wait.c pwait->ev = pvfs->ntvfs->ctx->event_ctx;
ev 157 source4/ntvfs/posix/pvfs_wait.c event_add_timed(pwait->ev, pwait, end_time, pvfs_wait_timeout, pwait);
ev 27 source4/ntvfs/posix/pvfs_write.c static void pvfs_write_time_update_handler(struct tevent_context *ev,
ev 201 source4/ntvfs/sysdep/inotify.c static void inotify_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 269 source4/ntvfs/sysdep/inotify.c fde = tevent_add_fd(ctx->ev, in, in->fd,
ev 42 source4/ntvfs/sysdep/sys_lease.c struct tevent_context *ev,
ev 55 source4/ntvfs/sysdep/sys_lease.c if (ev == NULL) {
ev 64 source4/ntvfs/sysdep/sys_lease.c ctx->event_ctx = ev;
ev 55 source4/ntvfs/sysdep/sys_lease.h struct tevent_context *ev,
ev 43 source4/ntvfs/sysdep/sys_notify.c struct tevent_context *ev)
ev 53 source4/ntvfs/sysdep/sys_notify.c if (ev == NULL) {
ev 62 source4/ntvfs/sysdep/sys_notify.c ctx->ev = ev;
ev 26 source4/ntvfs/sysdep/sys_notify.h void *, struct notify_event *ev);
ev 35 source4/ntvfs/sysdep/sys_notify.h struct tevent_context *ev;
ev 49 source4/ntvfs/sysdep/sys_notify.h struct tevent_context *ev);
ev 185 source4/param/tests/share.c return NT_STATUS_IS_OK(share_get_context_by_name(tctx, "ldb", tctx->ev, tctx->lp_ctx, (struct share_context **)data));
ev 190 source4/param/tests/share.c return NT_STATUS_IS_OK(share_get_context_by_name(tctx, "classic", tctx->ev, tctx->lp_ctx, (struct share_context **)data));
ev 159 source4/rpc_server/echo/rpc_echo.c static void echo_TestSleep_handler(struct tevent_context *ev, struct tevent_timer *te,
ev 31 source4/smbd/process_model.c _PUBLIC_ const struct model_ops *process_model_startup(struct tevent_context *ev, const char *model)
ev 41 source4/smbd/process_model.c ops->model_init(ev);
ev 81 source4/smbd/process_model.h const struct model_ops *process_model_startup(struct tevent_context *ev, const char *model);
ev 52 source4/smbd/process_prefork.c static void prefork_model_init(struct tevent_context *ev)
ev 71 source4/smbd/process_prefork.c static void prefork_accept_connection(struct tevent_context *ev,
ev 91 source4/smbd/process_prefork.c new_conn(ev, lp_ctx, connected_socket, cluster_id(pid, socket_get_fd(connected_socket)), private_data);
ev 97 source4/smbd/process_prefork.c static void prefork_new_task(struct tevent_context *ev,
ev 127 source4/smbd/process_prefork.c talloc_free(ev);
ev 192 source4/smbd/process_prefork.c _NORETURN_ static void prefork_terminate(struct tevent_context *ev, struct loadparm_context *lp_ctx, const char *reason)
ev 198 source4/smbd/process_prefork.c static void prefork_set_title(struct tevent_context *ev, const char *title)
ev 32 source4/smbd/process_single.c static void single_model_init(struct tevent_context *ev)
ev 39 source4/smbd/process_single.c static void single_accept_connection(struct tevent_context *ev,
ev 74 source4/smbd/process_single.c new_conn(ev, lp_ctx, connected_socket,
ev 81 source4/smbd/process_single.c static void single_new_task(struct tevent_context *ev,
ev 93 source4/smbd/process_single.c new_task(ev, lp_ctx, cluster_id(1, taskid++), private_data);
ev 98 source4/smbd/process_single.c static void single_terminate(struct tevent_context *ev, struct loadparm_context *lp_ctx, const char *reason)
ev 104 source4/smbd/process_single.c static void single_set_title(struct tevent_context *ev, const char *title)
ev 50 source4/smbd/process_standard.c static void standard_model_init(struct tevent_context *ev)
ev 58 source4/smbd/process_standard.c static void standard_accept_connection(struct tevent_context *ev,
ev 106 source4/smbd/process_standard.c talloc_free(ev);
ev 145 source4/smbd/process_standard.c static void standard_new_task(struct tevent_context *ev,
ev 173 source4/smbd/process_standard.c talloc_free(ev);
ev 199 source4/smbd/process_standard.c _NORETURN_ static void standard_terminate(struct tevent_context *ev, struct loadparm_context *lp_ctx,
ev 208 source4/smbd/process_standard.c talloc_free(ev);
ev 215 source4/smbd/process_standard.c static void standard_set_title(struct tevent_context *ev, const char *title)
ev 40 source4/smbd/process_thread.c struct tevent_context *ev;
ev 51 source4/smbd/process_thread.c new_conn->new_conn(new_conn->ev, new_conn->lp_ctx, new_conn->sock, pthread_self(), new_conn->private_data);
ev 54 source4/smbd/process_thread.c event_loop_wait(new_conn->ev);
ev 64 source4/smbd/process_thread.c static void thread_accept_connection(struct tevent_context *ev,
ev 80 source4/smbd/process_thread.c ev2 = s4_event_context_init(ev);
ev 92 source4/smbd/process_thread.c state->ev = ev2;
ev 124 source4/smbd/process_thread.c struct tevent_context *ev;
ev 135 source4/smbd/process_thread.c new_task->new_task(new_task->ev, new_task->lp_ctx, pthread_self(),
ev 139 source4/smbd/process_thread.c event_loop_wait(new_task->ev);
ev 149 source4/smbd/process_thread.c static void thread_new_task(struct tevent_context *ev,
ev 163 source4/smbd/process_thread.c ev2 = s4_event_context_init(ev);
ev 175 source4/smbd/process_thread.c state->ev = ev2;
ev 202 source4/smbd/process_thread.c static void thread_set_title(struct tevent_context *ev, const char *title)
ev 210 source4/smbd/process_thread.c new_title = talloc_strdup(ev, title);
ev 170 source4/smbd/server.c _NORETURN_ static void max_runtime_handler(struct tevent_context *ev,
ev 103 source4/smbd/service_stream.c static void stream_io_handler_fde(struct tevent_context *ev, struct tevent_fd *fde,
ev 123 source4/smbd/service_stream.c NTSTATUS stream_new_connection_merge(struct tevent_context *ev,
ev 134 source4/smbd/service_stream.c srv_conn = talloc_zero(ev, struct stream_connection);
ev 145 source4/smbd/service_stream.c srv_conn->event.ctx = ev;
ev 147 source4/smbd/service_stream.c srv_conn->event.fde = tevent_add_fd(ev, srv_conn, socket_get_fd(sock),
ev 163 source4/smbd/service_stream.c static void stream_new_connection(struct tevent_context *ev,
ev 172 source4/smbd/service_stream.c srv_conn = talloc_zero(ev, struct stream_connection);
ev 185 source4/smbd/service_stream.c srv_conn->event.ctx = ev;
ev 193 source4/smbd/service_stream.c srv_conn->event.fde = tevent_add_fd(ev, srv_conn, socket_get_fd(sock),
ev 205 source4/smbd/service_stream.c ev);
ev 211 source4/smbd/service_stream.c c = socket_get_peer_addr(sock, ev);
ev 212 source4/smbd/service_stream.c s = socket_get_my_addr(sock, ev);
ev 237 source4/smbd/service_stream.c static void stream_accept_handler(struct tevent_context *ev, struct tevent_fd *fde,
ev 245 source4/smbd/service_stream.c stream_socket->model_ops->accept_connection(ev, stream_socket->lp_ctx,
ev 38 source4/torture/auth/ntlmssp.c tctx->ev, lp_gensec_settings(tctx, tctx->lp_ctx)),
ev 93 source4/torture/auth/ntlmssp.c tctx->ev, lp_gensec_settings(tctx, tctx->lp_ctx)),
ev 58 source4/torture/basic/base.c if (!smbcli_socket_connect(cli, host, lp_smb_ports(tctx->lp_ctx), tctx->ev,
ev 811 source4/torture/basic/misc.c struct tevent_context *ev,
ev 832 source4/torture/basic/misc.c lp_resolve_context(tctx->lp_ctx),ev);
ev 842 source4/torture/basic/misc.c struct tevent_context *ev ;
ev 855 source4/torture/basic/misc.c ev = tctx->ev;
ev 888 source4/torture/basic/misc.c tctx, smb_con, tctx,ev,
ev 941 source4/torture/basic/misc.c event_loop_once(ev);
ev 186 source4/torture/gentest.c static bool connect_servers(struct tevent_context *ev,
ev 235 source4/torture/gentest.c ev, &smb_options,
ev 247 source4/torture/gentest.c lp_resolve_context(lp_ctx), ev,
ev 2892 source4/torture/gentest.c static int run_test(struct tevent_context *ev, struct loadparm_context *lp_ctx)
ev 2896 source4/torture/gentest.c if (!connect_servers(ev, lp_ctx)) {
ev 2973 source4/torture/gentest.c static void backtrack_analyze(struct tevent_context *ev,
ev 2996 source4/torture/gentest.c ret = run_test(ev, lp_ctx);
ev 3032 source4/torture/gentest.c ret = run_test(ev, lp_ctx);
ev 3041 source4/torture/gentest.c static bool start_gentest(struct tevent_context *ev,
ev 3078 source4/torture/gentest.c ret = run_test(ev, lp_ctx);
ev 3082 source4/torture/gentest.c backtrack_analyze(ev, lp_ctx);
ev 3084 source4/torture/gentest.c backtrack_analyze(ev, lp_ctx);
ev 3086 source4/torture/gentest.c while (run_test(ev, lp_ctx) == options.numops) ;
ev 3133 source4/torture/gentest.c struct tevent_context *ev;
ev 3249 source4/torture/gentest.c ev = s4_event_context_init(talloc_autofree_context());
ev 3253 source4/torture/gentest.c ret = start_gentest(ev, lp_ctx);
ev 49 source4/torture/ldap/cldap.c cldap = cldap_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 243 source4/torture/ldap/cldap.c cldap = cldap_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 354 source4/torture/ldap/cldap.c cldap = cldap_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 426 source4/torture/ldap/cldap.c cldap = cldap_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 62 source4/torture/ldap/cldapbench.c cldap = cldap_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 134 source4/torture/ldap/cldapbench.c cldap = cldap_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 164 source4/torture/ldap/cldapbench.c tevent_loop_once(tctx->ev);
ev 168 source4/torture/ldap/cldapbench.c tevent_loop_once(tctx->ev);
ev 193 source4/torture/ldap/cldapbench.c status = resolve_name(lp_resolve_context(torture->lp_ctx), &name, torture, &address, torture->ev);
ev 68 source4/torture/ldap/common.c *conn = ldap4_new_connection(tctx, tctx->lp_ctx, tctx->ev);
ev 391 source4/torture/ldap/schema.c ldb = ldb_wrap_connect(torture, torture->ev, torture->lp_ctx, url,
ev 164 source4/torture/ldap/uptodatevector.c ldb = ldb_wrap_connect(torture, torture->ev, torture->lp_ctx, url,
ev 51 source4/torture/ldb/ldb.c ldb = ldb_init(mem_ctx, torture->ev),
ev 181 source4/torture/ldb/ldb.c ldb = ldb_init(mem_ctx, torture->ev),
ev 299 source4/torture/ldb/ldb.c ldb = ldb_init(mem_ctx, torture->ev),
ev 558 source4/torture/ldb/ldb.c ldb = ldb_init(mem_ctx, torture->ev),
ev 637 source4/torture/ldb/ldb.c ldb = ldb_init(mem_ctx, torture->ev),
ev 84 source4/torture/libnet/domain.c net_ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 325 source4/torture/libnet/libnet_BecomeDC.c s->ldb = ldb_wrap_connect(s, s->tctx->ev, s->tctx->lp_ctx, sam_ldb_path,
ev 604 source4/torture/libnet/libnet_BecomeDC.c s->ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 607 source4/torture/libnet/libnet_BecomeDC.c s->ldb = ldb_init(s, torture->ev);
ev 668 source4/torture/libnet/libnet_BecomeDC.c s->ldb = ldb_wrap_connect(s, s->tctx->ev, s->lp_ctx, sam_ldb_path,
ev 141 source4/torture/libnet/libnet_domain.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 195 source4/torture/libnet/libnet_domain.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 206 source4/torture/libnet/libnet_domain.c cmdline_credentials, torture->ev, torture->lp_ctx);
ev 259 source4/torture/libnet/libnet_domain.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 324 source4/torture/libnet/libnet_domain.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 335 source4/torture/libnet/libnet_domain.c ctx->cred, torture->ev, torture->lp_ctx);
ev 392 source4/torture/libnet/libnet_domain.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 243 source4/torture/libnet/libnet_group.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 309 source4/torture/libnet/libnet_group.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 370 source4/torture/libnet/libnet_group.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 43 source4/torture/libnet/libnet_lookup.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 87 source4/torture/libnet/libnet_lookup.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 130 source4/torture/libnet/libnet_lookup.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 174 source4/torture/libnet/libnet_lookup.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 92 source4/torture/libnet/libnet_rpc.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 134 source4/torture/libnet/libnet_share.c libnetctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 216 source4/torture/libnet/libnet_share.c libnetctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 249 source4/torture/libnet/libnet_user.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 295 source4/torture/libnet/libnet_user.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 490 source4/torture/libnet/libnet_user.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 625 source4/torture/libnet/libnet_user.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 691 source4/torture/libnet/libnet_user.c ctx = libnet_context_init(torture->ev, torture->lp_ctx);
ev 179 source4/torture/local/dbspeed.c ldb = ldb_wrap_connect(tmp_ctx, torture->ev, torture->lp_ctx, "tdb://test.ldb",
ev 110 source4/torture/locktest.c static struct smbcli_state *connect_one(struct tevent_context *ev,
ev 170 source4/torture/locktest.c ev, &options, &session_options,
ev 186 source4/torture/locktest.c static void reconnect(struct tevent_context *ev,
ev 205 source4/torture/locktest.c cli[server][conn] = connect_one(ev, lp_ctx, mem_ctx, share[server],
ev 408 source4/torture/locktest.c static int test_locks(struct tevent_context *ev,
ev 462 source4/torture/locktest.c reconnect(ev, lp_ctx, mem_ctx, cli, fnum, share);
ev 480 source4/torture/locktest.c reconnect(ev, lp_ctx, mem_ctx, cli, fnum, share);
ev 518 source4/torture/locktest.c reconnect(ev, lp_ctx, mem_ctx, cli, fnum, share);
ev 558 source4/torture/locktest.c struct tevent_context *ev;
ev 647 source4/torture/locktest.c ev = s4_event_context_init(talloc_autofree_context());
ev 655 source4/torture/locktest.c return test_locks(ev, lp_ctx, NULL, share);
ev 148 source4/torture/locktest2.c struct tevent_context *ev)
ev 176 source4/torture/locktest2.c username, lp_workgroup(), password, ev,
ev 197 source4/torture/locktest2.c struct tevent_context *ev,
ev 216 source4/torture/locktest2.c cli[server][conn] = connect_one(mem_ctx, share[server], ports, options, session_options, gensec_settings, ev);
ev 368 source4/torture/locktest2.c struct tevent_context *ev)
ev 397 source4/torture/locktest2.c reconnect(mem_ctx, cli, nfs, fnum, ports, options, session_options, gensec_settings, ev, share1, share2);
ev 408 source4/torture/locktest2.c reconnect(mem_ctx, cli, nfs, fnum, ports, options, session_options, ev, share1, share2);
ev 435 source4/torture/locktest2.c reconnect(mem_ctx, cli, nfs, fnum, ports, options, session_options, gensec_settings, ev, share1, share2);
ev 489 source4/torture/locktest2.c struct tevent_context *ev;
ev 568 source4/torture/locktest2.c ev = s4_event_context_init(mem_ctx);
ev 575 source4/torture/locktest2.c &options, &session_options, lp_gensec_settings(lp_ctx), ev);
ev 76 source4/torture/masktest.c struct tevent_context *ev,
ev 102 source4/torture/masktest.c cmdline_credentials, resolve_ctx, ev,
ev 301 source4/torture/masktest.c struct tevent_context *ev;
ev 367 source4/torture/masktest.c ev = s4_event_context_init(mem_ctx);
ev 374 source4/torture/masktest.c cli = connect_one(lp_resolve_context(lp_ctx), ev, mem_ctx, share,
ev 43 source4/torture/nbt/browse.c status = resolve_name(&name, mem_ctx, &address, torture->ev);
ev 70 source4/torture/nbt/dgram.c struct nbt_dgram_socket *dgmsock = nbt_dgram_socket_init(tctx, tctx->ev,
ev 93 source4/torture/nbt/dgram.c resolve_name(lp_resolve_context(tctx->lp_ctx), &name, tctx, &address, tctx->ev),
ev 161 source4/torture/nbt/dgram.c struct nbt_dgram_socket *dgmsock = nbt_dgram_socket_init(tctx, tctx->ev,
ev 187 source4/torture/nbt/dgram.c resolve_name(lp_resolve_context(tctx->lp_ctx), &name, tctx, &address, tctx->ev),
ev 429 source4/torture/nbt/dgram.c struct nbt_dgram_socket *dgmsock = nbt_dgram_socket_init(tctx, tctx->ev,
ev 455 source4/torture/nbt/dgram.c resolve_name(lp_resolve_context(tctx->lp_ctx), &name, tctx, &address, tctx->ev),
ev 30 source4/torture/nbt/nbt.c return nbt_name_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 42 source4/torture/nbt/nbt.c resolve_name(lp_resolve_context(tctx->lp_ctx), name, tctx, address, tctx->ev),
ev 228 source4/torture/nbt/winsbench.c struct nbt_name_socket *nbtsock = nbt_name_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 106 source4/torture/nbt/winsreplication.c wrepl_socket1 = wrepl_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 107 source4/torture/nbt/winsreplication.c wrepl_socket2 = wrepl_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 189 source4/torture/nbt/winsreplication.c wrepl_socket = wrepl_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 258 source4/torture/nbt/winsreplication.c wrepl_socket = wrepl_socket_init(tctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 556 source4/torture/nbt/winsreplication.c ctx->pull = wrepl_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 613 source4/torture/nbt/winsreplication.c ctx->nbtsock = nbt_name_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 631 source4/torture/nbt/winsreplication.c ctx->nbtsock_srv = nbt_name_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 648 source4/torture/nbt/winsreplication.c ctx->nbtsock2 = nbt_name_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 725 source4/torture/nbt/winsreplication.c wrepl_socket = wrepl_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 302 source4/torture/raw/composite.c event_ctx = tctx->ev;
ev 363 source4/torture/raw/composite.c event_ctx = tctx->ev;
ev 48 source4/torture/raw/lockbench.c struct tevent_context *ev;
ev 119 source4/torture/raw/lockbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te,
ev 123 source4/torture/raw/lockbench.c static void reopen_file(struct tevent_context *ev, struct tevent_timer *te,
ev 156 source4/torture/raw/lockbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 166 source4/torture/raw/lockbench.c event_add_timed(state->ev, state->mem_ctx, timeval_zero(), reopen_file, state);
ev 174 source4/torture/raw/lockbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te,
ev 209 source4/torture/raw/lockbench.c state->ev);
ev 236 source4/torture/raw/lockbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 274 source4/torture/raw/lockbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 280 source4/torture/raw/lockbench.c static void report_rate(struct tevent_context *ev, struct tevent_timer *te,
ev 292 source4/torture/raw/lockbench.c event_add_timed(ev, state, timeval_current_ofs(1, 0), report_rate, state);
ev 339 source4/torture/raw/lockbench.c state[i].ev = torture->ev;
ev 340 source4/torture/raw/lockbench.c if (!torture_open_connection_ev(&cli, i, torture, torture->ev)) {
ev 381 source4/torture/raw/lockbench.c event_add_timed(torture->ev, state, timeval_current_ofs(1, 0), report_rate, state);
ev 386 source4/torture/raw/lockbench.c event_loop_once(torture->ev);
ev 57 source4/torture/raw/offline.c struct tevent_context *ev;
ev 333 source4/torture/raw/offline.c static void report_rate(struct tevent_context *ev, struct tevent_timer *te,
ev 360 source4/torture/raw/offline.c event_add_timed(ev, state, timeval_current_ofs(1, 0), report_rate, state);
ev 412 source4/torture/raw/offline.c state[i].ev = torture->ev;
ev 413 source4/torture/raw/offline.c if (!torture_open_connection_ev(&cli, i, torture, torture->ev)) {
ev 426 source4/torture/raw/offline.c state[i].ev = torture->ev;
ev 476 source4/torture/raw/offline.c event_add_timed(torture->ev, state, timeval_current_ofs(1, 0), report_rate, state);
ev 481 source4/torture/raw/offline.c event_loop_once(torture->ev);
ev 495 source4/torture/raw/offline.c event_loop_once(torture->ev);
ev 1493 source4/torture/raw/open.c if ((tctx->ev == NULL) || (clients == NULL) || (requests == NULL) ||
ev 1499 source4/torture/raw/open.c if (!torture_open_connection_share(mem_ctx, &cli, tctx, host, share, tctx->ev)) {
ev 1507 source4/torture/raw/open.c tctx, host, share, tctx->ev)) {
ev 1576 source4/torture/raw/open.c if (event_loop_once(tctx->ev) != 0) {
ev 49 source4/torture/raw/openbench.c struct tevent_context *ev;
ev 77 source4/torture/raw/openbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te,
ev 93 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 116 source4/torture/raw/openbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te,
ev 152 source4/torture/raw/openbench.c state->ev);
ev 234 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 293 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 325 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx,
ev 331 source4/torture/raw/openbench.c static void report_rate(struct tevent_context *ev, struct tevent_timer *te,
ev 343 source4/torture/raw/openbench.c report_te = event_add_timed(ev, state, timeval_current_ofs(1, 0),
ev 392 source4/torture/raw/openbench.c state[i].ev = torture->ev;
ev 393 source4/torture/raw/openbench.c if (!torture_open_connection_ev(&state[i].cli, i, torture, torture->ev)) {
ev 433 source4/torture/raw/openbench.c report_te = event_add_timed(torture->ev, state, timeval_current_ofs(1, 0),
ev 439 source4/torture/raw/openbench.c event_loop_once(torture->ev);
ev 192 source4/torture/raw/oplock.c tctx->ev, &options, &session_options,
ev 2918 source4/torture/raw/oplock.c if (!torture_open_connection_ev(&cli[i], i, torture, torture->ev)) {
ev 3039 source4/torture/raw/oplock.c struct tevent_context *ev =
ev 3096 source4/torture/raw/oplock.c event_loop_wait(ev);
ev 139 source4/torture/raw/samba3hide.c torture_setting_string(torture, "share", NULL), torture->ev)) {
ev 59 source4/torture/raw/samba3misc.c torture_setting_string(torture, "share", NULL), torture->ev)) {
ev 104 source4/torture/raw/tconrate.c tctx->ev, &options, &session_options,
ev 76 source4/torture/rpc/async_bind.c table[i], creds, torture->ev, torture->lp_ctx);
ev 59 source4/torture/rpc/dfs.c if (!(libnetctx = libnet_context_init(tctx->ev, tctx->lp_ctx))) {
ev 99 source4/torture/rpc/dfs.c if (!(libnetctx = libnet_context_init(tctx->ev, tctx->lp_ctx))) {
ev 127 source4/torture/rpc/dfs.c if (!torture_open_connection_share(mem_ctx, cli, tctx, host, share, tctx->ev)) {
ev 497 source4/torture/rpc/dfs.c torture_open_connection_share(mem_ctx, &cli, tctx, host, "C$", tctx->ev);
ev 343 source4/torture/rpc/drsuapi_cracknames.c ldb = ldb_init(mem_ctx, tctx->ev);
ev 187 source4/torture/rpc/dssync.c credentials, tctx->ev, tctx->lp_ctx);
ev 276 source4/torture/rpc/dssync.c cldap = cldap_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx));
ev 326 source4/torture/rpc/dssync.c struct ldb_context *ldb = ldb_init(ctx, tctx->ev);
ev 45 source4/torture/rpc/join.c torture->ev, &options, &session_options,
ev 74 source4/torture/rpc/join.c torture->ev, &options, &session_options,
ev 86 source4/torture/rpc/remote_pac.c status = gensec_client_start(tctx, &gensec_client_context, tctx->ev,
ev 98 source4/torture/rpc/remote_pac.c status = gensec_server_start(tctx, tctx->ev,
ev 88 source4/torture/rpc/rpc.c cmdline_credentials, tctx->ev, tctx->lp_ctx);
ev 118 source4/torture/rpc/rpc.c cmdline_credentials, tctx->ev, tctx->lp_ctx);
ev 152 source4/torture/rpc/rpc.c tcase_data->credentials, tctx->ev, tctx->lp_ctx);
ev 210 source4/torture/rpc/rpc.c tcase_data->credentials, tctx->ev, tctx->lp_ctx);
ev 96 source4/torture/rpc/samba3rpc.c torture->ev, &options, &session_options,
ev 319 source4/torture/rpc/samba3rpc.c torture->ev, &options, &session_options,
ev 1277 source4/torture/rpc/samba3rpc.c torture->ev, &options, &session_options,
ev 1368 source4/torture/rpc/samba3rpc.c tctx->ev, &options, &session_options,
ev 1752 source4/torture/rpc/samba3rpc.c torture->ev, &options, &session_options,
ev 1781 source4/torture/rpc/samba3rpc.c torture->ev, &options, &session_options,
ev 2048 source4/torture/rpc/samba3rpc.c "IPC$", torture->ev))) {
ev 2110 source4/torture/rpc/samba3rpc.c "IPC$", torture->ev))) {
ev 2409 source4/torture/rpc/samba3rpc.c "IPC$", torture->ev))) {
ev 2457 source4/torture/rpc/samba3rpc.c "IPC$", torture->ev))) {
ev 2754 source4/torture/rpc/samba3rpc.c "IPC$", torture->ev))) {
ev 2940 source4/torture/rpc/samba3rpc.c "IPC$", torture->ev))) {
ev 1640 source4/torture/rpc/samlogon.c machine_credentials, torture->ev, torture->lp_ctx);
ev 304 source4/torture/rpc/samr_accessmask.c test_credentials, tctx->ev, tctx->lp_ctx);
ev 371 source4/torture/rpc/samr_accessmask.c test_credentials, tctx->ev, tctx->lp_ctx);
ev 1639 source4/torture/rpc/samsync.c credentials, torture->ev, torture->lp_ctx);
ev 1677 source4/torture/rpc/samsync.c credentials_wksta, torture->ev, torture->lp_ctx);
ev 283 source4/torture/rpc/schannel.c credentials, tctx->ev, tctx->lp_ctx);
ev 295 source4/torture/rpc/schannel.c status = dcerpc_epm_map_binding(tctx, b, &ndr_table_netlogon, tctx->ev, tctx->lp_ctx);
ev 321 source4/torture/rpc/schannel.c status = dcerpc_epm_map_binding(tctx, b, &ndr_table_lsarpc, tctx->ev, tctx->lp_ctx);
ev 353 source4/torture/rpc/schannel.c credentials, tctx->ev, tctx->lp_ctx);
ev 362 source4/torture/rpc/schannel.c status = dcerpc_epm_map_binding(tctx, b, &ndr_table_netlogon, tctx->ev, tctx->lp_ctx);
ev 395 source4/torture/rpc/schannel.c credentials, tctx->ev, tctx->lp_ctx);
ev 478 source4/torture/rpc/schannel.c credentials1, torture->ev, torture->lp_ctx);
ev 483 source4/torture/rpc/schannel.c credentials2, torture->ev, torture->lp_ctx);
ev 737 source4/torture/rpc/schannel.c torture->ev, torture->lp_ctx);
ev 751 source4/torture/rpc/schannel.c torture->ev,
ev 759 source4/torture/rpc/schannel.c int ev_ret = event_loop_once(torture->ev);
ev 782 source4/torture/rpc/schannel.c torture->ev, torture->lp_ctx);
ev 827 source4/torture/rpc/schannel.c torture->ev, torture->lp_ctx);
ev 846 source4/torture/rpc/schannel.c int ev_ret = event_loop_once(torture->ev);
ev 165 source4/torture/rpc/session_key.c torture->ev,
ev 330 source4/torture/rpc/testjoin.c libnet_ctx = libnet_context_init(tctx->ev, tctx->lp_ctx);
ev 459 source4/torture/rpc/testjoin.c ldb_ctx = ldb_init(tmp_ctx, torture->ev);
ev 211 source4/torture/smb2/scan.c credentials, &tree, torture->ev, &options,
ev 231 source4/torture/smb2/scan.c credentials, &tree, torture->ev, &options,
ev 282 source4/torture/smb2/util.c tctx->ev, &options,
ev 69 source4/torture/unix/unix_info2.c tctx->ev, &options, &session_options,
ev 89 source4/torture/unix/whoami.c tctx->ev, &options, &session_options,
ev 59 source4/torture/util.h struct tevent_context *ev);
ev 67 source4/torture/util.h struct tevent_context *ev);
ev 473 source4/torture/util_smb.c struct tevent_context *ev)
ev 492 source4/torture/util_smb.c ev, &options, &session_options,
ev 542 source4/torture/util_smb.c struct tevent_context *ev)
ev 547 source4/torture/util_smb.c if (!torture_get_conn_index(conn_index, ev, tctx, &host, &share)) {
ev 551 source4/torture/util_smb.c ret = torture_open_connection_share(NULL, c, tctx, host, share, ev);
ev 560 source4/torture/util_smb.c return torture_open_connection_ev(c, conn_index, tctx, tctx->ev);
ev 147 source4/utils/net/net.c struct tevent_context *ev;
ev 190 source4/utils/net/net.c ev = s4_event_context_init(NULL);
ev 191 source4/utils/net/net.c if (!ev) {
ev 195 source4/utils/net/net.c ctx = talloc(ev, struct net_context);
ev 204 source4/utils/net/net.c ctx->event_ctx = ev;
ev 212 source4/utils/net/net.c talloc_free(ev);
ev 40 source4/utils/net/net_machinepw.c struct tevent_context *ev;
ev 57 source4/utils/net/net_machinepw.c ev = event_context_init(mem_ctx);
ev 58 source4/utils/net/net_machinepw.c if (ev == NULL) {
ev 63 source4/utils/net/net_machinepw.c secrets = secrets_db_connect(mem_ctx, ev, ctx->lp_ctx);
ev 395 source4/utils/ntlm_auth.c struct tevent_context *ev;
ev 465 source4/utils/ntlm_auth.c ev = s4_event_context_init(state);
ev 466 source4/utils/ntlm_auth.c if (!ev) {
ev 476 source4/utils/ntlm_auth.c nt_status = gensec_client_start(NULL, &state->gensec_state, ev,
ev 490 source4/utils/ntlm_auth.c lp_iconv_convenience(lp_ctx), ev);
ev 496 source4/utils/ntlm_auth.c ev,
ev 505 source4/utils/ntlm_auth.c if (!NT_STATUS_IS_OK(gensec_server_start(state, ev,
ev 48 source4/wrepl_server/wrepl_periodic.c static void wreplsrv_periodic_handler_te(struct tevent_context *ev, struct tevent_timer *te,