Searched defs:context (Results 1 - 25 of 235) sorted by relevance

12345678910

/dovecot/src/lib-mail/
H A Dmessage-header-hash.c8 const struct hash_method *method, void *context,
17 method->loop(context, data, size);
44 method->loop(context, data + start, i-start);
51 method->loop(context, data + start, i-start);
61 method->loop(context, data + start, i-start);
62 method->loop(context, "?", 1);
71 method->loop(context, data + start, i-start);
7 message_header_hash_more(struct message_header_hash_context *ctx, const struct hash_method *method, void *context, unsigned int version, const unsigned char *data, size_t size) argument
H A Dmessage-part.h41 void *context; member in struct:message_part
/dovecot/src/imap/
H A Dmail-storage-callbacks.c9 const char *text, void *context)
11 struct client *client = context;
26 const char *text, void *context)
28 struct client *client = context;
8 notify_ok(struct mailbox *mailbox ATTR_UNUSED, const char *text, void *context) argument
25 notify_no(struct mailbox *mailbox ATTR_UNUSED, const char *text, void *context) argument
/dovecot/src/lib/
H A Dioloop-notify-fd.c10 io_callback_t *callback, void *context)
17 io->io.context = context;
9 io_notify_fd_add(struct ioloop_notify_fd_context *ctx, int fd, io_callback_t *callback, void *context) argument
H A Devent-filter.h23 /* context associated with this query. This is returned when iterating
26 void *context; member in struct:event_filter_query
43 with TABs and there are no NUL, CR or LF characters. The context pointers
68 /* Return context for the query that matched, or NULL when there are no more
H A Diostream-private.h9 void (*callback)(void *context);
10 void *context; member in struct:iostream_destroy_callback
35 void (*callback)(void *), void *context);
H A Dlog-throttle.c11 void *context; member in struct:log_throttle
22 log_throttle_callback_t *callback, void *context)
34 throttle->context = context;
50 throttle->callback(throttle->last_count, throttle->context);
21 log_throttle_init(const struct log_throttle_settings *set, log_throttle_callback_t *callback, void *context) argument
H A Dvar-expand-private.h9 /* caller provided context */
10 void *context; member in struct:var_expand_context
H A Dbacktrace-string.c49 void *context)
51 struct walk_context *ctx = context;
48 walk_callback(uintptr_t ptr, int signo ATTR_UNUSED, void *context) argument
H A Dfile-dotlock.h27 bool (*callback)(unsigned int secs_left, bool stale, void *context);
28 void *context; member in struct:dotlock_settings
H A Dhash-method.c22 static void hash_method_init_size(void *context) argument
24 uint64_t *ctx = context;
30 hash_method_loop_size(void *context, const void *data ATTR_UNUSED, size_t size) argument
32 uint64_t *ctx = context;
37 static void hash_method_result_size(void *context, unsigned char *result_r) argument
39 uint64_t *ctx = context;
H A Dmemarea.c11 void *context; member in struct:memarea
23 memarea_free_callback_t *callback, void *context)
33 area->context = context;
61 area->callback(area->context);
91 void memarea_free_callback_noop(void *context ATTR_UNUSED)
22 memarea_init(const void *data, size_t size, memarea_free_callback_t *callback, void *context) argument
H A Dtest-hash-method.c333 unsigned char context[method->context_size]; local
336 method->init(context);
338 method->loop(context, test_vectors[i].input,
340 method->result(context, result);
/dovecot/src/lib-index/
H A Dmail-cache-sync-update.c24 static struct mail_cache_sync_context *mail_cache_handler_init(void **context) argument
28 if (*context != NULL)
29 ctx = *context;
31 *context = i_new(struct mail_cache_sync_context, 1);
32 ctx = *context;
52 void **sync_context, void *context ATTR_UNUSED)
/dovecot/src/lib-storage/index/
H A Dindex-sort-private.h15 void *context; member in struct:mail_search_sort_program
/dovecot/src/lib-storage/
H A Dmailbox-list-notify.c33 void (*callback)(void *context), void *context)
35 notify->list->v.notify_wait(notify, callback, context);
32 mailbox_list_notify_wait(struct mailbox_list_notify *notify, void (*callback)(void *context), void *context) argument
/dovecot/src/auth/
H A Ddb-oauth2.h11 void *context);
28 void *context; member in struct:db_oauth2_request
38 void db_oauth2_lookup(struct db_oauth2 *db, struct db_oauth2_request *req, const char *token, struct auth_request *request, db_oauth2_lookup_callback_t *callback, void *context);
39 #define db_oauth2_lookup(db, req, token, request, callback, context) \
41 CALLBACK_TYPECHECK(callback, void(*)(struct db_oauth2_request *, enum passdb_result, const char*, typeof(context))), \
42 request, (db_oauth2_lookup_callback_t*)callback, (void*)context)
H A Dpassdb-blocking.c77 verify_plain_callback(const char *reply, void *context) argument
79 struct auth_request *request = context;
103 static bool lookup_credentials_callback(const char *reply, void *context) argument
105 struct auth_request *request = context;
144 set_credentials_callback(const char *reply, void *context) argument
146 struct auth_request *request = context;
/dovecot/src/lib-ldap/
H A Dldap-client.c54 ldap_result_callback_t *callback, void *context)
58 ldap_connection_search_start(client->list->conn, input, callback, context);
64 ldap_result_callback_t *callback, void *context)
66 ldap_connection_compare_start(client->list->conn, input, callback, context);
52 ldap_search_start(struct ldap_client *client, const struct ldap_search_input *input, ldap_result_callback_t *callback, void *context) argument
62 ldap_compare_start(struct ldap_client *client, const struct ldap_compare_input *input, ldap_result_callback_t *callback, void *context) argument
H A Dldap-compare.c91 void *context)
102 req->result_callback_ctx = context;
88 ldap_connection_compare_start(struct ldap_connection *conn, const struct ldap_compare_input *input, ldap_result_callback_t *callback, void *context) argument
H A Dldap-search.c129 void *context)
145 req->result_callback_ctx = context;
126 ldap_connection_search_start(struct ldap_connection *conn, const struct ldap_search_input *input, ldap_result_callback_t *callback, void *context) argument
/dovecot/src/lib-oauth2/
H A Doauth2-introspect.c74 void *context)
87 req->is_context = context;
71 oauth2_introspection_start(const struct oauth2_settings *set, const struct oauth2_request_input *input, oauth2_introspection_callback_t *callback, void *context) argument
/dovecot/src/login-common/
H A Daccess-lookup.c23 void *context; member in struct:access_lookup
46 lookup->callback(success, lookup->context);
57 lookup->callback(FALSE, lookup->context);
65 access_lookup_callback_t *callback, void *context)
97 lookup->context = context;
64 access_lookup(const char *path, int client_fd, const char *daemon_name, access_lookup_callback_t *callback, void *context) argument
/dovecot/src/ipc/
H A Dipc-connection.h11 void *context; member in struct:ipc_connection_cmd
44 ipc_cmd_callback_t *callback, void *context);
/dovecot/src/lib-fs/
H A Dostream-metawrap.c11 void *context; member in struct:metawrap_ostream
20 write_callback(mstream->context);
59 void (*write_callback)(void *), void *context)
67 mstream->context = context;
58 o_stream_create_metawrap(struct ostream *output, void (*write_callback)(void *), void *context) argument

Completed in 191 milliseconds

12345678910