te 119 lib/async_req/async_req.c static void async_trigger(struct tevent_context *ev, struct tevent_timer *te, te 124 lib/async_req/async_req.c TALLOC_FREE(te); te 227 lib/async_req/async_req.c struct tevent_timer *te, te 234 lib/async_req/async_req.c TALLOC_FREE(te); te 260 lib/async_req/async_req.c struct tevent_timer *te; te 262 lib/async_req/async_req.c te = tevent_add_timer(ev, e, tevent_timeval_zero(), te 265 lib/async_req/async_req.c if (te == NULL) { te 575 lib/popt/popt.c char *t, *te; te 579 lib/popt/popt.c te = t = (char *)malloc(tn);; te 600 lib/popt/popt.c *te = '\0'; te 602 lib/popt/popt.c te = t + strlen(t); te 603 lib/popt/popt.c strncpy(te, a, alen); te += alen; te 609 lib/popt/popt.c *te++ = c; te 611 lib/popt/popt.c *te = '\0'; te 248 lib/popt/popthelp.c char * te = t; te 249 lib/popt/popthelp.c *te = '\0'; te 251 lib/popt/popthelp.c strcpy(te, help); te += strlen(te); te 253 lib/popt/popthelp.c *te++ = ' '; te 254 lib/popt/popthelp.c strcpy(te, defs); te 47 lib/tevent/testsuite.c static void finished_handler(struct tevent_context *ev_ctx, struct tevent_timer *te, te 54 lib/tevent/testsuite.c static void count_handler(struct tevent_context *ev_ctx, struct signal_event *te, te 145 lib/tevent/tevent.c struct tevent_timer *te, *tn; te 162 lib/tevent/tevent.c for (te = ev->timer_events; te; te = tn) { te 163 lib/tevent/tevent.c tn = te->next; te 164 lib/tevent/tevent.c te->event_ctx = NULL; te 165 lib/tevent/tevent.c DLIST_REMOVE(ev->timer_events, te); te 53 lib/tevent/tevent.h struct tevent_timer *te, te 182 lib/tevent/tevent_liboop.c static int oop_event_timed_destructor(struct tevent_timer *te); te 184 lib/tevent/tevent_liboop.c static int oop_event_timed_deny_destructor(struct tevent_timer *te) te 191 lib/tevent/tevent_liboop.c struct tevent_timer *te = ptr; te 194 lib/tevent/tevent_liboop.c talloc_set_destructor(te, oop_event_timed_deny_destructor); te 195 lib/tevent/tevent_liboop.c te->handler(te->event_ctx, te, t, te->private_data); te 197 lib/tevent/tevent_liboop.c talloc_set_destructor(te, oop_event_timed_destructor); te 198 lib/tevent/tevent_liboop.c talloc_free(te); te 206 lib/tevent/tevent_liboop.c static int oop_event_timed_destructor(struct tevent_timer *te) te 208 lib/tevent/tevent_liboop.c struct tevent_context *ev = te->event_ctx; te 212 lib/tevent/tevent_liboop.c oop->cancel_time(oop, te->next_event, oop_event_timed_handler, te); te 228 lib/tevent/tevent_liboop.c struct tevent_timer *te; te 230 lib/tevent/tevent_liboop.c te = talloc(mem_ctx?mem_ctx:ev, struct tevent_timer); te 231 lib/tevent/tevent_liboop.c if (te == NULL) return NULL; te 233 lib/tevent/tevent_liboop.c te->event_ctx = ev; te 234 lib/tevent/tevent_liboop.c te->next_event = next_event; te 235 lib/tevent/tevent_liboop.c te->handler = handler; te 236 lib/tevent/tevent_liboop.c te->private_data = private_data; te 237 lib/tevent/tevent_liboop.c te->additional_data = NULL; te 239 lib/tevent/tevent_liboop.c oop->on_time(oop, te->next_event, oop_event_timed_handler, te); te 241 lib/tevent/tevent_liboop.c talloc_set_destructor(te, oop_event_timed_destructor); te 243 lib/tevent/tevent_liboop.c return te; te 342 lib/tevent/tevent_req.c struct tevent_timer *te, te 134 lib/tevent/tevent_timed.c static int tevent_common_timed_destructor(struct tevent_timer *te) te 136 lib/tevent/tevent_timed.c tevent_debug(te->event_ctx, TEVENT_DEBUG_TRACE, te 138 lib/tevent/tevent_timed.c te, te->handler_name); te 140 lib/tevent/tevent_timed.c if (te->event_ctx) { te 141 lib/tevent/tevent_timed.c DLIST_REMOVE(te->event_ctx->timer_events, te); te 147 lib/tevent/tevent_timed.c static int tevent_common_timed_deny_destructor(struct tevent_timer *te) te 163 lib/tevent/tevent_timed.c struct tevent_timer *te, *last_te, *cur_te; te 165 lib/tevent/tevent_timed.c te = talloc(mem_ctx?mem_ctx:ev, struct tevent_timer); te 166 lib/tevent/tevent_timed.c if (te == NULL) return NULL; te 168 lib/tevent/tevent_timed.c te->event_ctx = ev; te 169 lib/tevent/tevent_timed.c te->next_event = next_event; te 170 lib/tevent/tevent_timed.c te->handler = handler; te 171 lib/tevent/tevent_timed.c te->private_data = private_data; te 172 lib/tevent/tevent_timed.c te->handler_name = handler_name; te 173 lib/tevent/tevent_timed.c te->location = location; te 174 lib/tevent/tevent_timed.c te->additional_data = NULL; te 180 lib/tevent/tevent_timed.c if (tevent_timeval_compare(&te->next_event, &cur_te->next_event) < 0) { te 187 lib/tevent/tevent_timed.c DLIST_ADD_AFTER(ev->timer_events, te, last_te); te 189 lib/tevent/tevent_timed.c talloc_set_destructor(te, tevent_common_timed_destructor); te 193 lib/tevent/tevent_timed.c handler_name, te); te 194 lib/tevent/tevent_timed.c return te; te 206 lib/tevent/tevent_timed.c struct tevent_timer *te = ev->timer_events; te 208 lib/tevent/tevent_timed.c if (!te) { te 224 lib/tevent/tevent_timed.c if (!tevent_timeval_is_zero(&te->next_event)) { te 229 lib/tevent/tevent_timed.c delay = tevent_timeval_until(¤t_time, &te->next_event); te 240 lib/tevent/tevent_timed.c talloc_set_destructor(te, tevent_common_timed_deny_destructor); te 245 lib/tevent/tevent_timed.c DLIST_REMOVE(ev->timer_events, te); te 254 lib/tevent/tevent_timed.c te->handler(ev, te, current_time, te->private_data); te 258 lib/tevent/tevent_timed.c talloc_set_destructor(te, NULL); te 260 lib/tevent/tevent_timed.c tevent_debug(te->event_ctx, TEVENT_DEBUG_TRACE, te 262 lib/tevent/tevent_timed.c te, te->handler_name); te 264 lib/tevent/tevent_timed.c talloc_free(te); te 63 libcli/nbt/libnbt.h struct tevent_timer *te; te 48 libcli/nbt/nbtsocket.c if (req->te) { te 49 libcli/nbt/nbtsocket.c talloc_free(req->te); te 50 libcli/nbt/nbtsocket.c req->te = NULL; te 117 libcli/nbt/nbtsocket.c static void nbt_name_socket_timeout(struct tevent_context *ev, struct tevent_timer *te, te 125 libcli/nbt/nbtsocket.c req->te = event_add_timed(req->nbtsock->event_ctx, req, te 254 libcli/nbt/nbtsocket.c talloc_free(req->te); te 276 libcli/nbt/nbtsocket.c req->te = event_add_timed(req->nbtsock->event_ctx, req, te 412 libcli/nbt/nbtsocket.c req->te = event_add_timed(nbtsock->event_ctx, req, te 729 source3/include/smb.h struct timed_event *te; te 41 source3/lib/avahi.c struct tevent_timer *te; te 145 source3/lib/avahi.c struct tevent_timer *te, te 174 source3/lib/avahi.c timeout_ctx->te = NULL; te 176 source3/lib/avahi.c timeout_ctx->te = tevent_add_timer(ctx->ev, timeout_ctx, te 179 source3/lib/avahi.c if (timeout_ctx->te == NULL) { te 195 source3/lib/avahi.c struct tevent_timer *te, te 202 source3/lib/avahi.c TALLOC_FREE(timeout_ctx->te); te 208 source3/lib/avahi.c TALLOC_FREE(t->te); te 217 source3/lib/avahi.c t->te = tevent_add_timer(t->ctx->ev, t, *tv, avahi_timeout_handler, t); te 221 source3/lib/avahi.c SMB_ASSERT(t->te != NULL); te 202 source3/lib/ctdbd_conn.c struct timed_event *te, te 211 source3/lib/ctdbd_conn.c TALLOC_FREE(te); te 202 source3/lib/events.c struct tevent_timer *te; te 214 source3/lib/events.c for (te = ev->timer_events; te; te = te->next) { te 216 source3/lib/events.c evt = timeval_until(&now, &te->next_event); te 219 source3/lib/events.c te->handler_name, te 220 source3/lib/events.c te, te 222 source3/lib/events.c http_timestring(talloc_tos(), te->next_event.tv_sec))); te 134 source3/lib/ldb/ldb_ildap/ldb_ildap.c static void ildb_request_timeout(struct event_context *ev, struct timed_event *te, te 1074 source3/lib/smbldap.c struct timed_event *te, te 1632 source3/lib/smbldap.c struct timed_event *te, te 437 source3/libsmb/async_smb.c struct timed_event *te, te 218 source3/modules/vfs_aio_fork.c struct timed_event *te, te 54 source3/nmbd/nmbd_processlogon.c struct timed_event *te, te 61 source3/nmbd/nmbd_processlogon.c (unsigned long)te)); te 65 source3/nmbd/nmbd_processlogon.c TALLOC_FREE(te); te 226 source3/printing/notify.c struct tevent_timer *te, te 448 source3/rpc_server/srv_samr_nt.c struct timed_event *te, te 37 source3/smbd/blocking.c struct timed_event *te, te 41 source3/smbd/blocking.c SMB_ASSERT(brl_timeout == te); te 41 source3/smbd/dnsregister.c struct tevent_timer *te; te 55 source3/smbd/dnsregister.c TALLOC_FREE(dns_state->te); te 63 source3/smbd/dnsregister.c struct tevent_timer *te, te 76 source3/smbd/dnsregister.c dns_state->te = tevent_add_timer(dns_state->event_ctx, te 81 source3/smbd/dnsregister.c if (!dns_state->te) { te 89 source3/smbd/dnsregister.c struct tevent_timer *te, te 173 source3/smbd/fileio.c struct timed_event *te, te 309 source3/smbd/oplock.c struct timed_event *te, te 408 source3/smbd/process.c struct timed_event *te, te 487 source3/smbd/process.c msg->te = event_add_timed(smbd_event_context(), te 492 source3/smbd/process.c if (!msg->te) { te 544 source3/smbd/process.c struct timed_event *te; te 558 source3/smbd/process.c te = event_add_timed(smbd_event_context(), te 563 source3/smbd/process.c if (!te) { te 569 source3/smbd/process.c TALLOC_FREE(pml->te); te 570 source3/smbd/process.c pml->te = te; te 645 source3/smbd/process.c struct timed_event *te; te 653 source3/smbd/process.c struct timed_event *te, te 660 source3/smbd/process.c TALLOC_FREE(event->te); te 663 source3/smbd/process.c event->name, event->te)); te 667 source3/smbd/process.c event->name, event->te)); te 674 source3/smbd/process.c event->name, event->te)); te 676 source3/smbd/process.c event->te = event_add_timed(ctx, event, te 681 source3/smbd/process.c SMB_ASSERT(event->te != NULL); te 711 source3/smbd/process.c result->te = event_add_timed(event_ctx, result, te 714 source3/smbd/process.c if (result->te == NULL) { te 720 source3/smbd/process.c DEBUG(10,("event_add_idle: %s %p\n", result->name, result->te)); te 250 source3/utils/net_lua.c struct timed_event *te, te 266 source3/utils/net_lua.c struct timed_event *te; te 281 source3/utils/net_lua.c te = event_add_timed(p->ev, ref, timeval_current_ofs(0, usecs), te 285 source3/utils/net_lua.c if (te == NULL) { te 69 source3/utils/smbcontrol.c struct tevent_timer *te, te 74 source3/utils/smbcontrol.c TALLOC_FREE(te); te 83 source3/utils/smbcontrol.c struct tevent_timer *te; te 86 source3/utils/smbcontrol.c if (!(te = tevent_add_timer(messaging_event_context(msg_ctx), NULL, te 270 source3/winbindd/winbindd_cm.c struct timed_event *te, te 99 source3/winbindd/winbindd_cred_cache.c struct timed_event *te, te 292 source3/winbindd/winbindd_cred_cache.c struct timed_event *te, te 177 source3/winbindd/winbindd_dual.c struct timed_event *te, te 828 source3/winbindd/winbindd_dual.c struct timed_event *te, te 919 source3/winbindd/winbindd_dual.c struct timed_event *te, te 984 source4/auth/gensec/gensec.c static void gensec_update_async_timed_handler(struct tevent_context *ev, struct tevent_timer *te, te 1007 source4/auth/gensec/gensec.c struct tevent_timer *te = NULL; te 1017 source4/auth/gensec/gensec.c te = event_add_timed(gensec_security->event_ctx, req, te 1020 source4/auth/gensec/gensec.c if (!te) goto failed; te 201 source4/auth/gensec/socket.c struct tevent_timer *te, te 134 source4/auth/kerberos/krb5_init_context.c struct tevent_timer *te, struct timeval t, te 218 source4/auth/ntlm/auth.c static void auth_check_password_async_timed_handler(struct tevent_context *ev, struct tevent_timer *te, te 304 source4/auth/ntlm/auth.c struct tevent_timer *te = NULL; te 318 source4/auth/ntlm/auth.c te = event_add_timed(auth_ctx->event_ctx, req, te 321 source4/auth/ntlm/auth.c if (!te) { te 37 source4/dsdb/repl/drepl_periodic.c static void dreplsrv_periodic_handler_te(struct tevent_context *ev, struct tevent_timer *te, te 43 source4/dsdb/repl/drepl_periodic.c service->periodic.te = NULL; te 65 source4/dsdb/repl/drepl_periodic.c if (service->periodic.te) { te 86 source4/dsdb/repl/drepl_periodic.c (service->periodic.te?"re":""), te 90 source4/dsdb/repl/drepl_periodic.c talloc_free(service->periodic.te); te 91 source4/dsdb/repl/drepl_periodic.c service->periodic.te = new_te; te 150 source4/dsdb/repl/drepl_service.h struct tevent_timer *te; te 171 source4/ldap_server/ldap_server.c struct tevent_timer *te, te 193 source4/ldap_server/ldap_server.c if (conn->limits.te) { /* clean idle timeout if any */ te 194 source4/ldap_server/ldap_server.c talloc_free(conn->limits.te); te 195 source4/ldap_server/ldap_server.c conn->limits.te = NULL; te 201 source4/ldap_server/ldap_server.c conn->limits.te = event_add_timed(c->event.ctx, conn, te 218 source4/ldap_server/ldap_server.c struct tevent_timer *te, te 51 source4/ldap_server/ldap_server.h struct tevent_timer *te; te 98 source4/lib/ldb/ldb_ildap/ldb_ildap.c struct tevent_timer *te, te 193 source4/lib/ldb/ldb_ildap/ldb_ildap.c static void ildb_request_timeout(struct tevent_context *ev, struct tevent_timer *te, te 681 source4/lib/ldb/ldb_ildap/ldb_ildap.c struct tevent_timer *te; te 704 source4/lib/ldb/ldb_ildap/ldb_ildap.c te = tevent_add_timer(ac->ildb->event_ctx, te 707 source4/lib/ldb/ldb_ildap/ldb_ildap.c if (NULL == te) { te 645 source4/lib/ldb/ldb_ldap/ldb_ldap.c struct tevent_timer *te, te 656 source4/lib/ldb/ldb_ldap/ldb_ldap.c struct tevent_timer *te, te 727 source4/lib/ldb/ldb_ldap/ldb_ldap.c struct tevent_timer *te, te 743 source4/lib/ldb/ldb_ldap/ldb_ldap.c struct tevent_timer *te; te 774 source4/lib/ldb/ldb_ldap/ldb_ldap.c te = tevent_add_timer(ev, ac, tv, te 776 source4/lib/ldb/ldb_ldap/ldb_ldap.c if (NULL == te) { te 812 source4/lib/ldb/ldb_ldap/ldb_ldap.c te = tevent_add_timer(ev, ac, tv, lldb_callback, ac); te 813 source4/lib/ldb/ldb_ldap/ldb_ldap.c if (NULL == te) { te 820 source4/lib/ldb/ldb_ldap/ldb_ldap.c te = tevent_add_timer(ev, ac, tv, lldb_timeout, ac); te 821 source4/lib/ldb/ldb_ldap/ldb_ldap.c if (NULL == te) { te 1450 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c struct tevent_timer *te, te 1461 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c struct tevent_timer *te, te 1508 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c struct tevent_timer *te; te 1534 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c te = tevent_add_timer(ev, ac, tv, lsql_callback, ac); te 1535 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (NULL == te) { te 1015 source4/lib/ldb/ldb_tdb/ldb_tdb.c struct tevent_timer *te, te 1081 source4/lib/ldb/ldb_tdb/ldb_tdb.c struct tevent_timer *te, te 1148 source4/lib/ldb/ldb_tdb/ldb_tdb.c struct tevent_timer *te; te 1175 source4/lib/ldb/ldb_tdb/ldb_tdb.c te = tevent_add_timer(ev, ac, tv, ltdb_callback, ac); te 1176 source4/lib/ldb/ldb_tdb/ldb_tdb.c if (NULL == te) { te 219 source4/lib/messaging/messaging.c static void msg_retry_timer(struct tevent_context *ev, struct tevent_timer *te, te 846 source4/lib/messaging/messaging.c static void irpc_timeout(struct tevent_context *ev, struct tevent_timer *te, te 56 source4/lib/messaging/tests/irpc.c static void deferred_echodata(struct tevent_context *ev, struct tevent_timer *te, te 57 source4/lib/socket/connect_multi.c struct tevent_timer *te, te 183 source4/lib/socket/connect_multi.c struct tevent_timer *te, te 229 source4/lib/stream/packet.c static void packet_next_event(struct tevent_context *ev, struct tevent_timer *te, te 369 source4/lib/wmi/wmi_wrap.c const char* te = tb + strlen(tb); te 375 source4/lib/wmi/wmi_wrap.c equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; te 388 source4/lib/wmi/wmi_wrap.c const char* te = tb + strlen(tb); te 394 source4/lib/wmi/wmi_wrap.c equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; te 135 source4/libcli/cldap/cldap.c talloc_free(req->te); te 148 source4/libcli/cldap/cldap.c struct tevent_timer *te, struct timeval t, te 162 source4/libcli/cldap/cldap.c req->te = event_add_timed(req->cldap->event_ctx, req, te 210 source4/libcli/cldap/cldap.c req->te = event_add_timed(cldap->event_ctx, req, te 55 source4/libcli/cldap/cldap.h struct tevent_timer *te; te 96 source4/libcli/composite/composite.c static void composite_trigger(struct tevent_context *ev, struct tevent_timer *te, te 552 source4/libcli/ldap/ldap_client.c static void ldap_request_timeout(struct tevent_context *ev, struct tevent_timer *te, te 570 source4/libcli/ldap/ldap_client.c static void ldap_request_complete(struct tevent_context *ev, struct tevent_timer *te, te 311 source4/libcli/raw/clitransport.c struct tevent_timer *te, struct timeval t, void *private_data) te 316 source4/libcli/raw/clitransport.c transport->socket->event.te = event_add_timed(transport->socket->event.ctx, te 336 source4/libcli/raw/clitransport.c if (transport->socket->event.te != NULL) { te 337 source4/libcli/raw/clitransport.c talloc_free(transport->socket->event.te); te 340 source4/libcli/raw/clitransport.c transport->socket->event.te = event_add_timed(transport->socket->event.ctx, te 544 source4/libcli/raw/clitransport.c static void smbcli_timeout_handler(struct tevent_context *ev, struct tevent_timer *te, te 86 source4/libcli/raw/libcliraw.h struct tevent_timer *te; te 304 source4/libcli/smb2/transport.c static void smb2_timeout_handler(struct tevent_context *ev, struct tevent_timer *te, te 384 source4/libcli/smb2/transport.c struct tevent_timer *te, struct timeval t, void *private_data) te 389 source4/libcli/smb2/transport.c transport->socket->event.te = event_add_timed(transport->socket->event.ctx, te 409 source4/libcli/smb2/transport.c if (transport->socket->event.te != NULL) { te 410 source4/libcli/smb2/transport.c talloc_free(transport->socket->event.te); te 413 source4/libcli/smb2/transport.c transport->socket->event.te = event_add_timed(transport->socket->event.ctx, te 74 source4/libcli/wrepl/winsrepl.c static void wrepl_request_timeout_handler(struct tevent_context *ev, struct tevent_timer *te, te 384 source4/libcli/wrepl/winsrepl.c static void wrepl_request_trigger_handler(struct tevent_context *ev, struct tevent_timer *te, te 400 source4/libcli/wrepl/winsrepl.c struct tevent_timer *te; te 417 source4/libcli/wrepl/winsrepl.c te = event_add_timed(req->wrepl_socket->event.ctx, te 420 source4/libcli/wrepl/winsrepl.c if (!te) { te 508 source4/libcli/wrepl/winsrepl.c req->te = event_add_timed(wrepl_socket->event.ctx, req, te 511 source4/libcli/wrepl/winsrepl.c if (!req->te) return wrepl_request_finished(req, NT_STATUS_NO_MEMORY); te 79 source4/libcli/wrepl/winsrepl.h struct tevent_timer *te; te 655 source4/librpc/rpc/dcerpc.c static void dcerpc_timeout_handler(struct tevent_context *ev, struct tevent_timer *te, te 711 source4/librpc/rpc/dcerpc_connect.c static void dcerpc_connect_timeout_handler(struct tevent_context *ev, struct tevent_timer *te, te 80 source4/nbt_server/register.c static void name_refresh_handler(struct tevent_context *ev, struct tevent_timer *te, te 42 source4/nbt_server/wins/winsclient.c static void nbtd_wins_refresh(struct tevent_context *ev, struct tevent_timer *te, te 48 source4/nbt_server/wins/winsclient.c static void nbtd_wins_register_retry(struct tevent_context *ev, struct tevent_timer *te, te 132 source4/nbt_server/wins/winsclient.c static void nbtd_wins_refresh(struct tevent_context *ev, struct tevent_timer *te, te 49 source4/ntvfs/posix/pvfs_notify.c static void pvfs_notify_send_next(struct tevent_context *ev, struct tevent_timer *te, te 49 source4/ntvfs/posix/pvfs_search.c static void pvfs_search_timer(struct tevent_context *ev, struct tevent_timer *te, te 63 source4/ntvfs/posix/pvfs_search.c talloc_free(search->te); te 64 source4/ntvfs/posix/pvfs_search.c search->te = event_add_timed(ev, search, te 383 source4/ntvfs/posix/pvfs_search.c search->te = NULL; te 524 source4/ntvfs/posix/pvfs_search.c search->te = NULL; te 705 source4/ntvfs/posix/pvfs_search.c search->te = NULL; te 96 source4/ntvfs/posix/pvfs_wait.c struct tevent_timer *te, struct timeval t, te 28 source4/ntvfs/posix/pvfs_write.c struct tevent_timer *te, te 228 source4/ntvfs/posix/vfs_posix.h struct tevent_timer *te; te 159 source4/rpc_server/echo/rpc_echo.c static void echo_TestSleep_handler(struct tevent_context *ev, struct tevent_timer *te, te 171 source4/smbd/server.c struct tevent_timer *te, te 60 source4/torture/raw/lockbench.c struct tevent_timer *te; te 119 source4/torture/raw/lockbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te, te 123 source4/torture/raw/lockbench.c static void reopen_file(struct tevent_context *ev, struct tevent_timer *te, te 155 source4/torture/raw/lockbench.c talloc_free(state->te); te 156 source4/torture/raw/lockbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 174 source4/torture/raw/lockbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te, te 182 source4/torture/raw/lockbench.c state->te = NULL; te 235 source4/torture/raw/lockbench.c talloc_free(state->te); te 236 source4/torture/raw/lockbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 273 source4/torture/raw/lockbench.c talloc_free(state->te); te 274 source4/torture/raw/lockbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 280 source4/torture/raw/lockbench.c static void report_rate(struct tevent_context *ev, struct tevent_timer *te, te 333 source4/torture/raw/offline.c static void report_rate(struct tevent_context *ev, struct tevent_timer *te, te 67 source4/torture/raw/openbench.c struct tevent_timer *te; te 77 source4/torture/raw/openbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te, te 92 source4/torture/raw/openbench.c talloc_free(state->te); te 93 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 116 source4/torture/raw/openbench.c static void reopen_connection(struct tevent_context *ev, struct tevent_timer *te, te 124 source4/torture/raw/openbench.c state->te = NULL; te 233 source4/torture/raw/openbench.c talloc_free(state->te); te 234 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 292 source4/torture/raw/openbench.c talloc_free(state->te); te 293 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 324 source4/torture/raw/openbench.c talloc_free(state->te); te 325 source4/torture/raw/openbench.c state->te = event_add_timed(state->ev, state->mem_ctx, te 331 source4/torture/raw/openbench.c static void report_rate(struct tevent_context *ev, struct tevent_timer *te, te 2543 source4/torture/raw/oplock.c int te; te 2594 source4/torture/raw/oplock.c te = (int)timeval_elapsed(&tv); te 2595 source4/torture/raw/oplock.c CHECK_RANGE(te, timeout - 1, timeout + 15); te 2609 source4/torture/raw/oplock.c te = (int)timeval_elapsed(&tv); te 2611 source4/torture/raw/oplock.c CHECK_RANGE(te+1, 0, timeout); te 52 source4/web_server/web_server.c struct tevent_timer *te, te 48 source4/wrepl_server/wrepl_periodic.c static void wreplsrv_periodic_handler_te(struct tevent_context *ev, struct tevent_timer *te, te 54 source4/wrepl_server/wrepl_periodic.c service->periodic.te = NULL; te 79 source4/wrepl_server/wrepl_periodic.c if (service->periodic.te) { te 100 source4/wrepl_server/wrepl_periodic.c (service->periodic.te?"re":""), te 104 source4/wrepl_server/wrepl_periodic.c talloc_free(service->periodic.te); te 105 source4/wrepl_server/wrepl_periodic.c service->periodic.te = new_te; te 158 source4/wrepl_server/wrepl_server.h struct tevent_timer *te; te 293 source4/wrepl_server/wrepl_server.h struct tevent_timer *te;